:root {
    --primary: #F57C00;
    --yellow: #ffb91d;
    --green: #0ACF83;
    --red: #DB2719;
    --textColor: #232360;
    --borderColor: #e2e8f0;
    --iconColor: #505258;
    --hoverColor: #f4f6f8;
    --bodyBgColor: #f3f4f6;
    --boxBgColor: #FFFFFF;
    --success: #03a65a;
    --error: #db3056;
    --warning: #fc8621;
    --info: #0070e0;
    --textDetailColor: #3A3A7A;
}
@font-face {
    font-family: "Estedad";
    src: url('/static-files/font/Estedad/Estedad-VariableFont_wght.ttf') format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Rubik";
    src: url("/static-files/font/Rubik/Rubik-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "Rubik";
    src: url("/static-files/font/Rubik/Rubik-Italic-VariableFont_wght.ttf") format("truetype");
    font-style: italic;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: var(--bodyBgColor);
    font-family: 'Estedad', 'Rubik';
    color: var(--textColor);
}
* {
    scrollbar-width: thin;
}
a {
    color: var(--textColor);
}
::-webkit-scrollbar {
    width: 10px !important;
}
::-webkit-scrollbar-track {
    background: #627987;
}
::-webkit-scrollbar-thumb {
    background: #627987;
}
::-webkit-scrollbar-thumb:hover {
    background: #627987;
}
.scrollable-content {
    overflow: auto;
    height: calc(100vh - 170px);
    padding-left: 10px;
}
.container {
    display: grid;
    grid-template-columns: 310px auto;
    transition: 0.3s;
}
.icon-wrapper svg {
    width: 20px;
    height: 20px;
}
.flex {
    display: flex;
}
.cursor {
    cursor: pointer;
}
.relative {
    position: relative;
}
.main {
    position: relative;
    padding: 20px 20px 0;
    max-width: 1400px;
    width: 100%;
    margin: 70px auto 0;
}
.button, .icon-button {
	font-family: rubik;
	display: flex;
	align-items: center;
    background: #fff !important;
	gap: 5px;
	border: 1px solid var(--borderColor);
	border-radius: 10px;
	padding: 10px 15px;
	outline: none;
	background: unset;
	font-weight: 500;
	cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    font-size: 14px;
}
.icon-button {
    padding: 8px;
}
.button.medium {
    padding: 10px;
}
.button:hover, .icon-button:hover {
    background-color: var(--hoverColor) !important;
}
.button.primary {
	background: var(--primary) !important;
	color: #fff;
	border-color: var(--primary);
}
.button.error {
    background: var(--red) !important;
	color: #fff;
	border-color: var(--red);
}
.button.center {
    justify-content: center;
}
.button.primary svg path, .button.error svg path {
    stroke: #fff;
}
/** page filters **/
.filters {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
}
.filter-tabs {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 10px;
}
.filter-tabs .tab {
    padding: 10px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    text-decoration: none;
    color: var(--textColor);
}
.filter-tabs .tab.active {
	color: var(--primary);
	font-weight: bold;
}
.filter-tabs .tab.active::before {
	width: 50%;
	height: 5px;
	background-color: var(--primary);
	content: '';
	position: absolute;
	right: 0;
	left: 0;
	bottom: -10px;
	margin: 0 auto;
	border-radius: 10px;
}
.errorlist {
	list-style: none;
}
.errorlist li, .errorlist .error {
    padding: 5px 10px;
    color: var(--red);
    font-size: 14px;
}
.empty-list {
    background: #fff;
    border-radius: 10px;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.empty-list .placeholder-image img {
    width: 200px;
}
.hidden {
    display: none !important;
}
p.success {
    padding: 15px;
    background: var(--green);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    line-height: 20px;
}
.self-start {
    align-self: start;
}
.w-fit {
    width: fit-content;
}
.loader {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #111;
  box-shadow: 20px 0 #111, -20px 0 #111;
  position: relative;
  animation: flash 0.5s ease-out infinite alternate;
}
.options-group .arrow {
    transition: 0.3s;
}
.rotate {
    transform: rotate(180deg);
}

.copy-text {
    font-size: 11px;
    background: #0f172a;
    color: #fff;
    padding: 2px 10px;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.copy-text.show {
    opacity: 1;
    visibility: visible;
    pointer-events: unset;
}
.api-key .copy-text {
    position: absolute;
    margin-right: 10px;
}
.checkbox-width {
    width: 20px;
}

@keyframes flash {
  0% {
    background-color: #d1d5db;
    box-shadow: 20px 0 #d1d5db, -20px 0 #111;
  }

  50% {
    background-color: #111;
    box-shadow: 20px 0 #d1d5db, -20px 0 #d1d5db;
  }

  100% {
    background-color: #d1d5db;
    box-shadow: 20px 0 #111, -20px 0 #d1d5db;
  }
}