* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent !important;
}

:root {
    --font-1: "Saira", sans-serif;
    --font-mono: "Saira Mono", monospace;
    --color-1: rgb(1,13,83);
    --color-2: rgb(26,168, 210);
    --theme-color-gradient: linear-gradient(to right, var(--color-1), var(--color-2));
    --theme-color: rgb(31,111,235);
    --color-white: #F0F0F0;
    --color-red: #ff3232;
    --color-green: #22d675;
    --color-yellow: yellow;
    --color-verified: #1DA1F2;
    --dark-theme-1: #000000;
    /* --dark-theme-2: #171c1f; */
    --dark-theme-3: #212629;
    --dark-theme-4: #2b3033;
    --dark-theme-5: #353a3d;
    /* --dark-theme-1: #000000; */
    --dark-theme-2: #1c1c1c;
    /* --dark-theme-3: #262626;
    --dark-theme-4: #303030;
    --dark-theme-5: #3a3a3a; */
    --text-dark: #ffffff;
    --icon-color-dark: #a5a9b4;
    --icon-color-2: rgb(79,85,92);
}

html, body {
    overscroll-behavior: none;
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-1);
    background: var(--dark-theme-1);
    color: var(--text-dark);
    overflow-x: hidden;
}

*:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent !important;
}

.material-symbols-outlined {
    user-select: none;
    transition: all 0.5s, color 0s;

    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48

}

img {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

p, h1, h2, h3, h4, h5, h6, span, a, div, select {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

button, select, input {
    font-family: var(--font-1);
}
button:disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.hover-sensitive-cursor:hover {
    cursor: pointer;
}
.hover-sensitive-underline:hover {
    text-decoration: underline;
}
.hover-sensitive-background {
    position: relative;
}
.hover-sensitive-background::after {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: inherit;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.03);
    opacity: 0;
}
.hover-sensitive-background:hover::after {
    opacity: 1;
}
.hover-sensitive-icon:hover span.material-symbols-outlined {
    color: var(--text-dark) !important;
}

.hover-sensitive-gradient:hover {
    background: linear-gradient(to right, rgba(26,168, 210, 0.5), var(--dark-theme-4)) !important;
}
.hover-sensitive-gradient:hover span.material-symbols-outlined {
    color: var(--text-dark) !important;
}

.box-border {
    border: 1px solid;
}

.cl-red {
    color: var(--color-red);
}
.cl-green {
    color: var(--color-green);
}
.cl-yellow {
    color: var(--color-yellow);
}
.bg-red {
    background: var(--color-red);
}
.bg-green {
    background-color: var(--color-green);
}
.bg-yellow {
    background-color: var(--color-yellow);
}
.cl-theme {
    color: var(--theme-color);
}
.theme-color {
    color: var(--theme-color);
}

.fnts-14 {
    font-size: 14px;
}
.fnts-16 {
    font-size: 16px;
}
.verified-icon {
    color: var(--color-verified);
    font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 28;
}

#main-body {
    width: calc(100% - 250px);
    position: relative;
    left: 250px;
    padding: 0;
    transition: all 0.2s;

}

@media only screen and (max-width: 1025px) {
    #main-body {
        width: calc(100% - 72px);
        left: 72px;
    }
}

@media only screen and (max-width: 600px) {
    #main-body {
        width: 100%;
        left: 0;
        /* padding-bottom: 60px; */
    }
    #main-body > div[id*="__"] {
        padding-bottom: 60px;

    }
}

.button {
    border-radius: 10px;
    border: none;
    min-width: 100px;
    font-weight: 700;
    color: white;
    font-size: 14px;
    font-family: var(--font-1);
    cursor: pointer;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    justify-items: center;

}

.brand-btn {
    background: var(--theme-color-gradient);
    border-bottom: 2px solid var(--color-1);
    color: black;
    box-shadow: inset 0 0 10px 0px rgba(26,168, 210, 0.2)
                /* 0 0 5px 0px rgba(26,168, 210, 0.2); */
}


#min-body-cover {
    position: fixed;
    z-index: 24;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    top: 0;
    left: 0;
    display: none;
}

#min-body {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: calc(100% - 80px);
    width: 80%;
    z-index: 25;
    border-radius: 10px;
    display: none;
}

#min-body > .header {
    display: flex;
    padding-block: 8px;
}
#min-body > .header > span:first-of-type {
    font-size: 18px;
    margin-inline: 15px;
    display: block;
    height: min-content;
    width: min-content;
    margin-block: auto;
    cursor: pointer;
}
#min-body > .header > p {
    font-size: 16px;
    margin-block: auto;
    /* margin-left: 10px */
}
#min-body > .header > span:last-of-type {
    font-size: 18px;
    margin-left: auto;
    margin-right: 8px;
    padding: 5px;
    border-radius: 5px;
    display: block;
    height: min-content;
    width: min-content;
    margin-block: auto;
    cursor: pointer;
}

#min-body > .body {
    height: calc(100% - 54px);
    margin-inline: 8px;
    margin-bottom: 8px;
    border-radius: 8px;
    overflow-x: hidden;
    overflow-y: auto;
}
#min-body > .body::-webkit-scrollbar {
    background: transparent;
    width: 10px;
    top: 15px;
}
#min-body > .body::-webkit-scrollbar-thumb {
    background: rgba(104,104,104,0.5);
    border-radius: 3px;
}
#min-body > .body::-webkit-scrollbar-thumb:hover {
    background: rgba(154,154,154,0.5);
    cursor: grabbing;
}


.scrollbar::-webkit-scrollbar {
    background: transparent;
    width: 10px;
}

.scrollbar::-webkit-scrollbar-thumb {
    background: rgba(104,104,104,0.5);
    border-radius: 3px;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(154,154,154,0.5);
    cursor: grabbing;
}



.md_unavailable {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
}
.md_unavailable > img {
    margin-inline: auto;
    display: block;
    width: 300px;
    height: auto;
    filter: grayscale(1);
    
}

.md_unavailable > p {
    font-size: 14px;
    text-align: center;
    margin-block: auto;
    font-weight: 500;
}

.no-data {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 30px);
    height: 100%;
    display: flex;
    justify-content: center;
    justify-items: center;
    margin-inline: 15px;
    border-radius: 15px;
}
.no-data > div {
    margin: auto;
    height: min-content;

}
.no-data > div > embed,
.no-data > div > img {
    width: 80px;
    height: auto;
    display: block;
    margin-inline: auto;
}
.no-data > div > p {
    font-size: 12px;
    text-align: center;
    margin-block: 0;
    margin-top: 10px;
}
.no-data > div > button {
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    color: black;
    background: white;
    border-radius: 50px;
    padding: 8px;
    padding-inline: 30px;
    display: block;
    border: none;
    outline: none;
    text-align: center;
    margin-top: 10px;
    transition: all 0.2s !important;
}
.no-data > div > button:hover {
    scale: 1.05 !important;
}