@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
* {
    font-family: Inter;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    text-decoration: none;
    list-style-type: none;
    color: currentColor;
}
:root {
    --main-color: #1F1D58;
    --main-light-color: #2E2B79;
    --main-border-color: #35328b;
}
body.darklime {
    --main-color: #050e11;
    --main-light-color: #09171b;
    --main-border-color: #0e282a;
    --main-category-color: #112B32;
    --svg-color: rgb(75 152 159);
    --text-color: rgb(255, 255, 255);
    --market-bg: rgb(20 26 28);
}
body.darkpurple {
    --main-color: #11050f;
    --main-light-color: #1b0919;
    --main-border-color: #2a0e24;
    --main-category-color: #2a0e24;
    --svg-color: #1b0919;
    --text-color: white;
    --market-bg: rgb(8 15 17);
}
body.lightorange {
    --main-color: #F67953;
    --main-light-color: #FF8661;
    --main-border-color: #f39274;
    --main-category-color: #f39274;
    --svg-color: #FF8661;
    --text-color: white;
    --market-bg: rgb(8 15 17);
}
body.darkblack {
    --main-color: #060606;
    --main-light-color: #0e0e0e;
    --main-border-color: #1a1a1a;
    --main-category-color: #1a1a1a;
    --svg-color: rgb(48 48 48);
    --text-color: rgb(255, 255, 255);
    --market-bg: rgb(8 15 17);
}
body::before {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--main-color);
    position: fixed;
    bottom: 0;
    right: 0;
    transform: translate(100%,100%);
    filter: blur(200px);
    content: "";
}
.statistic-head-hover .statistic-head-title {
    color: #dadada;
}
body {
    max-width: 100%;
    overflow-x: hidden;
}
body,.container {
    height: 100vh;
}
.d-grid {
    display: grid;
}
.d-flex {
    display: flex;
}
.flex-row {
    flex-direction: row;
}
.flex-col {
    flex-direction: column;
}
.flex-x-center {
    justify-content: center;
}
.flex-y-center {
    align-items: center;
}
.gap-1 {
    gap: 5px;
}
.grid-col-2 {
    grid-template-columns: 350px 1fr;
}
.grid-col-2-2 {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.grid-col-2-3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}
.bg-dark {
    background: var(--main-color);
    color: #fff;
}
.tippy-arrow {
    color: var(--main-light-color); 
}
.tippy-box {
    background-color: var(--main-light-color);
    border: 1px solid var(--main-border-color);
}
@media screen and (max-width: 760px) {
    .grid-col-2,
    .grid-col-2-2,
    .grid-col-2-3 {
        grid-template-columns: 1fr;
    }
}
nav {
    position: relative;
    padding: 5px;
    box-sizing: border-box;
    width: 100%;
    background-color: var(--main-color);
    overflow-x: hidden;
} 
nav ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 100%; 
}
nav ul li {
    background: var(--main-color);
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    padding: 5px 0;
    padding-left: 15px;
    padding-right: 5px;
    border-radius: 4px; 
    transition: 0.25s;
}
nav ul li:not([data-parent]) {
    height: 32px;
} 
nav ul li .go-btn {
    margin-left: auto;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    padding: 5px;
    transition: 0.35s ;
}
nav ul li[data-parent] > ul li:not(:hover) .go-btn {
    opacity: 0.5;
} 
nav ul li[data-parent] > ul li {
    text-indent: 0px !important;
}
nav ul li .go-btn.chevron {
    background-color: rgba(255, 255, 255, 0);
    transform: translateX(-35%);
}
nav ul li[data-dropdown].show .go-btn.chevron {
    opacity: 0.3;
    transform: translateX(-35%) translateY(30%); 
}
nav ul li .go-btn svg * {
    fill: var(--main-light-color);
}
nav ul li:not([data-parent]):hover {
    cursor: pointer;
    background: var(--main-light-color);
    text-indent: 3px;
} 
nav ul li[data-parent]:not(.show) {
    display: none;
}
nav ul li>ul {
    width: 100%;
}
nav .statistics {
    gap: 10px;
}
nav .statistics .statistic {
    width: 100%;
    background: var(--main-color);
    display: flex;
    gap: 5px;
    border: thin solid var(--main-border-color);
    align-items: center;
    place-items: center;
    flex-direction: column;
    padding: 10px;
    border-radius: 4px;
}
nav .nav-profile {
    background: var(--main-light-color);
    border-radius: 4px;
    color: #fff;
    padding: 10px;
    margin-bottom: 5px;
}
nav .nav-profile .nav-profle-head {
    padding-bottom: 10px;
}
nav .nav-profile svg * {
    stroke: var(--main-light-color);
}
nav .nav-profile .nav-profle-head .image {
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}
nav .nav-profile .nav-profle-head img:not(.image) {
    transform: scale(1.4);
}
nav .nav-profile p { 
    font-weight: 14px;
}
nav .nav-profile .nav-profile-buttons {
    display: flex;
    gap: 5px;
}
nav .nav-profile .nav-profile-buttons  button {
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    padding: 10px;  
    display: grid;
    place-items: center;
    box-sizing: border-box;
    fill: white;
    color: #fff;
    background: var(--main-color);
    border-radius: 4px;
}
nav .nav-profile .nav-profile-buttons  button svg * {
    stroke: white;
}
nav .nav-profile .nav-profile-buttons  button:hover {
    filter: brightness(0.75);
    cursor: pointer;
}
nav .nav-profile .nav-profile-buttons  button img {
    transform: scale(1.1);
}
.main {
    width: 100%;
    background-color: rgb(255, 255, 255);
}
.main header {
    background: var(--main-light-color);
    width: 100%;
    height: 60px;
    box-sizing: border-box;
}
.textarea-control { 
    width: 100%; 
    box-sizing: border-box;
    border: 1px solid #dadada;
    padding: 10px 15px;
    border-radius: 6px;
    resize: none;
    color: var(--main-color);
}
.button-control { 
    width: 100%; 
    background: var(--main-light-color);
    box-sizing: border-box;
    border: 1px solid var(--main-border-color);
    padding: 10px 15px;
    border-radius: 6px;
    color: #fff;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: 0.35s;
}
.modal_inner .button-control {
    font-size: 0.9rem; 
}
.button-control::before,
.button-control::after {
    width: 120px;
    height: 100%;
    left: -100%;
    top: 0;
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    transform: skew(-30deg);
}
.button-control:hover {
    transform: scale(0.98);
}
.button-control:hover::before {
    left: 200%;
    transition: 0.65s ease;
}
.button-control:hover::after {
    left: 200%;
    transition: 0.95s ease;
}
.main header .input-control {
    position: relative;  
    max-width: 300px;
    width: 100%;
}
.main header .input-control input {
    width: 100%;
    height: 100%;
    background: var(--main-color);
    box-sizing: border-box;
    border: 1px solid var(--main-border-color);
    padding: 10px 15px;
    border-radius: 50px;
    max-height: 40px;
    color: #fff;
}
.main header .input-control input:is(:valid,:focus) + label.slide-up {
    top: 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
}
.main header .input-control input:is(:valid,:focus) + label.slide-left {  
    opacity: 0; 
    transform: translateY(-50%) scale(0.8); 
}
.main header .input-control label {
    font-size: 14px;
    position: absolute;
    top: calc(50% - 1px);
    left: 15px;
    padding: 0 5px;
    color: #ffffffb6;
    cursor: text;
    background: var(--main-color);
    transition: 0.10s ease-in-out;
    transform: translateY(-50%);
}
.main header .input-control label.slide-left { 
    transition: 0.20s ease-in-out;
}
.main header .input-control .icon {
    position: absolute;
    top: 50%;
    right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px; 
    background: white;
    cursor: text; 
    border-radius: 50%;
    transition: 0.10s ease-in-out;
    transform: translateY(-50%);
    cursor: default;
}
.main header .input-control .icon svg {
    transform: scale(1.2);
}
.main header .input-control .icon svg * {
    stroke: var(--main-color);
}
.main header .capture-text {
    margin: 0 auto;
    text-align: center;
    color:#fff
}
.main header .capture-text .title {
    font-size: 14px;
}
.main header .capture-text .subtitle {
    font-size: 14px;
    opacity: 0.6;
    font-weight: 400;
}
.main header .select2,
.main header .support {
    display: flex;
    justify-content: center;
    color: #fff;
    background: var(--main-color);
    padding: 8px 15px;
    gap: 5px;
    cursor: pointer;
    align-items: center; 
    font-weight: 500;
    font-size: 15px;
    margin-left: auto;
    border: 1px solid var(--main-border-color);
    margin-right: 15px;
    border-radius: 50px;
    animation: animate 5s ease-in-out infinite; 
}  
@keyframes animate {
    80% 
    { 
        box-shadow: 0 0 0 10px var(--main-light-color), 0 0 0 8px rgba(255, 255, 255, 0.2);
    } 
    100% { 
        box-shadow: 0 0 0 10px var(--main-light-color), 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
.main header .support::after {
    position: relative;
    top: 1px;
    width: 8px;
    height: 8px;
    background: rgb(85, 85, 85);
    border-radius: 50%; 
    content: "";
}
.main header .support.online::after {
    background: #81FF98;
}
.page-title {
    padding: 15px 25px;
    color: #747474;
    font-size: 14px;
} 
.page-title .title {
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--main-color);
}
.page-title .title small {
    color: #747474;
}
span[toggle-navbar] img {
    width: 35px !important; 
}
span[toggle-navbar] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 4px;
}
span[toggle-navbar]:hover {
    background: var(--main-color);
}
p[toggle-navbar]{
    justify-content: end;
    padding: 5px 20px;
    padding-bottom: 10px;
    margin-left: auto; 
} 
p[toggle-navbar] svg * {
    fill: #fff;
}
@media screen and (min-width: 768px) {
    .show-m {
        display: none !important;
    }
}
@media screen and (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        transform: scale(1.02);
        visibility: hidden;
        opacity: 0;
        width: 100%;
        height: 100%;
        z-index: 1; 
        display: block !important;
        transition: 0.35s ease;
    } 
    p[toggle-navbar] {
        display: flex; 
    }
    .navbar.show { 
        transform: scale(1);
        visibility: visible;
        opacity: 1;
    }
    .hide-m {
        display: none;
    }
}
@media screen and (max-width: 1200px) { 
    .grid-col-2 {
        grid-template-columns: 1fr;
    }
    nav {
        position: fixed;
        width: 350px;
        left: 0;
        z-index: 1000;
        height: 100%;
        overflow: auto;
        transition: 0.45s ease;
    }
    
    nav:not(.show){
        left: -100%;
        transition: 1s ease;
    }
    nav.show + .main {
        filter: brightness(0.5);
        transition: 0.25s ;
    }
    .show-m {
        display: block !important;
    }
    .hide-mt {
        display: none;
    }
}
.o-card {
    width: 100%; 
    box-sizing: border-box;
    padding: 15px; 
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
    border: thin solid #D6D6D6;
    border-radius: 6px;  
    overflow: hidden !important;
}
.o-card ul {
    margin-top: 0 !important;
}
.o-title {
    color: var(--main-color);
    font-weight: 500; 
    margin-bottom: 5px;
}
.o-card .select2-selection__rendered {
    padding-left: 0 !important;
    margin-left: 0 !important;
}
.o-card button {
    position: relative;
    width: 100%;
    padding: 10px 15px;
    background: var(--main-light-color);
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.15s ease-in-out;
}
.o-card button::before,
.o-card button::after {
    width: 120px;
    height: 100%;
    left: -100%;
    top: 0;
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    transform: skew(-30deg);
}
.o-card button:hover {
    background: var(--main-color);
    translate: 0 2px;
}
.o-card button:hover::before {
    left: 200%;
    transition: 0.65s ease;
}
.o-card button:hover::after {
    left: 200%;
    transition: 0.95s ease;
}
.o-card .form-group {
    display: flex;
    flex-direction: column;
}
.o-card .form-control {
    padding: 10px 15px;
    border-radius: 6px; 
    font-size: 15px;
    border: thin solid #D6D6D6; 
    resize: none;
    transition: 0.15s ease-in-out;
}
.o-card textarea.form-control {
    border-color: #D6D6D6 !important;   
}
.o-card .form-control:focus {
    border-color: var(--main-border-color);
}
.o-card .control-label {
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--main-light-color);
}
.news-contents p {
    all: unset;
    overflow-wrap: anywhere;
}
.news-contents .news-content-item { 
    position: relative;
    padding: 20px;
    border-radius: 10px;  
    border: thin solid #D6D6D6;
    background: rgb(255 255 255);
    margin-bottom: 10px;
    color: #d7d7d7;
    overflow: hidden;
}
.news-contents .news-content-item::before {
    position: absolute;
    left: -170px;
    top: -80px;
    background: var(--main-color);
    content: "";
    width: 180px; 
    opacity: 0.25;
    height: 250px;
    z-index: -1;
    filter: blur(130px);
    transform: skew(299deg); 
}
.news-head {
    display: flex;
    align-items: center;
    gap: 15px;
}
.news-head p { 
    color: var(--main-color);
    font-weight: 500;  
    font-size: 1rem;
    filter: brightness(0.85);
    text-transform: uppercase;
}
.news-inner {
    font-size: 0.92rem;
    padding: 10px 0;
    margin-top: 10px;
    color: #363636;
}
.news-inner a {
    text-decoration: underline;
}
.news-inner a:hover {
    opacity: 0.7;
}
.news-foot {
    font-size: 0.9rem;
    text-align: end;
    color: rgba(0, 0, 0, 0.664);
    filter: brightness(0.85);
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.news-foot hr {
    flex-grow: 1; 
    height: thin;
    background:  #ffffff0f; 
}
.news-foot p {
    padding-left: 30px;
}
.news-title {
    color: var(--main-color) !important;
    font-size: 1.35rem !important;
    font-weight: 500 !important;
    padding-bottom: 20px !important;
    display: block !important;
    padding-right: 5px !important;
    text-align: center !important;
    padding-top: 30px !important;
}
.form-group.fields .row {
    display: flex;
    gap: 5px;
}
.form-group.fields .row > div {
    width: 100%;
}
.form-group.fields .row .form-control {
    opacity: 1;
}
.form-group.fields .row .col-md-6 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.select2 {
    max-width: 100% !important;
    overflow: hidden;
}
.form-group.fields .row .col-md-6 .control-label {
    margin:0 !important;
}
.form-group.fields .row input {
    width: 100%;
    box-sizing: border-box;
}














.table-crown {
    padding: 15px;
    border-radius: 10px;
    background: #ffffff05;
    margin-bottom: 30px;
    border: 1px solid rgb(0 0 0 / 11%) !important;
}
.table-crown table {
    width: 100%;
    margin: 0 !important;
}
.table-crown *:is(th,td,thead){
    text-align: center;
    border: 0 !important;
    font-weight: normal !important;
}
.table-crown td {
    padding: 10px 0;
}
.table-crown thead th {
    padding-bottom: 8px;
}
.table-crown tbody tr:nth-of-type(1) td{
    padding-top: 20px !important;
}
.table-crown thead { 
    border-bottom: 1px solid #ffffff05 !important;
}
.table-crown {
    overflow-x: auto;
}
.table-crown td span { 
    padding-top: 8px;
    display: block; 
}