@font-face {
    font-family: 'Akira';
    src: url('./fonts/AKIRA_EXPANDED.OTF') format('opentype');
}

@font-face {
    font-family: 'Bigerover';
    src: url('./fonts/BIGEROVER-6Y4WX.OTF') format('opentype');
}

@font-face {
    font-family: 'Gilroy';
    src: url('./fonts/Gilroy/Gilroy-Regular_0.ttf') format('truetype');
}

.akiraFont {
    font-family: 'Akira' !important;
}

.bigeroverFont {
    font-family: 'Bigerover' !important;
    /* aspect-ratio: 14/8; */
}

.gilroyFont {
    font-family: 'Gilroy' !important;
}

body {
    margin: 0;
}

::-webkit-scrollbar {
    display: none;
}

.bg-dark-input {
    background-color: #161616 !important;
}


.bg {
    color: white !important;
    /* background: linear-gradient(123.9deg, #29A5DE 24.41%, #2B3C8E 94.01%) !important; */
    background-color: #D43737 !important;
}

.border-gd {
    width: 100%;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    padding: 1.05px;
}

.border-gd::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 0.6px;
    background: linear-gradient(123.9deg, #29A5DE 24.41%, #2B3C8E 94.01%);
    ;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

p.fs-7,
ol.fs-7,
ul.fs-7,
h6.fs-7,
span.fs-7,
input.fs-7 {
    font-size: 0.875rem !important;
}

p.fs-75 {
    font-size: 0.78rem !important;
}

p.fs-8,
ol.fs-8,
ul.fs-8,
h6.fs-8,
span.fs-8 {
    font-size: 0.75rem !important;
}


p.fs-9,
ol.fs-9,
ul.fs-9,
span.fs-9 {
    font-size: 0.68rem !important;
}

p.fs-10,
ol.fs-10,
ul.fs-10 {
    font-size: 0.6rem !important;
}

p.link {
    color: #D43737 !important;
    cursor: pointer;
}

.cursor-pointer {
    cursor: pointer;
}

.lc-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lc-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.input-before-icon {
    position: absolute;
    left: 15px;
    top: 12px;
    z-index: 9999;
    font-size: larger;
    color: #8F8F8F !important;
}

.input-after-icon {
    position: absolute;
    right: 30px;
    top: 20px;
    z-index: 9999;
    font-size: larger;
    color: #8F8F8F !important;
    display: flex;
    justify-content: space-between;
    width: 60px;
}

.messageBar {
    background-color: #282831 !important;
    border: 0px solid #48556F !important;
    border-radius: 18px !important;
    color: white !important;
    font-size: 14px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    line-height: 1.4 !important;
    padding-left: 40px !important;
}

::placeholder {
    color: #8F8F8F !important;
    /* opacity: 0.3; */
}

/* hide arrow of select field */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    /* text-indent: 1px; */
    /* text-overflow: ''; */
}

.Toastify__toast {
    background-color: #0D0D1C !important;
}

.theme-spinner {
    border: 3px solid white;
    border-top: 3px solid #003568;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}