@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap");

/* SF UI Display Thin */

@font-face {
    font-family: "SF UI Display";
    src: url("../fonts/sf-ui-display-thin-58646e9b26e8b.otf") format("opentype");
    font-weight: 100;
}


/* SF UI Display Ultralight */

@font-face {
    font-family: "SF UI Display";
    src: url("../fonts/sf-ui-display-ultralight-58646b19bf205.otf") format("opentype");
    font-weight: 200;
}


/* SF UI Display from ofont.ru */

@font-face {
    font-family: "SF UI Display";
    src: url("../fonts/ofont.ru_SF UI Display.ttf") format("truetype");
    font-weight: 400;
}


/* SF UI Display Black */

@font-face {
    font-family: "SF UI Display";
    src: url("../fonts/sf-ui-display-black-58646a6b80d5a.otf") format("opentype");
    font-weight: 900;
}


/* SF UI Display Bold */

@font-face {
    font-family: "SF UI Display";
    src: url("../fonts/sf-ui-display-bold-58646a511e3d9.otf") format("opentype");
    font-weight: 700;
}


/* SF UI Display Heavy */

@font-face {
    font-family: "SF UI Display";
    src: url("../fonts/sf-ui-display-heavy-586470160b9e5.otf") format("opentype");
    font-weight: 900;
}


/* SF UI Display Light */

@font-face {
    font-family: "SF UI Display";
    src: url("../fonts/sf-ui-display-light-58646b33e0551.otf") format("opentype");
    font-weight: 300;
}


/* SF UI Display Medium */

@font-face {
    font-family: "SF UI Display";
    src: url("../fonts/sf-ui-display-medium-58646be638f96.otf") format("opentype");
    font-weight: 500;
}


/* SF UI Display Semibold */

@font-face {
    font-family: "SF UI Display";
    src: url("../fonts/sf-ui-display-semibold-58646eddcae92.otf") format("opentype");
    font-weight: 600;
}

.btn-nav {
    position: relative;
    background: #080712;
}

.btn-nav:active {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-nav .nav-dots {
    position: absolute;
    left: 17px;
    top: 17px;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 2.5px;
    background-color: #fff;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

.btn-nav .nav-dots::before,
.btn-nav .nav-dots::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 2.5px;
    background-color: #fff;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

.btn-nav .nav-dots::before {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
}

.btn-nav .nav-dots::after {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
}

.btn-nav.btn-nav--open .nav-dots {
    background-color: transparent;
}

.btn-nav.btn-nav--open .nav-dots::before,
.btn-nav.btn-nav--open .nav-dots::after {
    left: -12px;
    top: 1px;
    height: 3px;
    width: 30px;
}

.btn-nav.btn-nav--open .nav-dots::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn-nav.btn-nav--open .nav-dots::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.header_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px;
    height: 80px;
}

@media (max-width: 1200px) {
    .header_inner {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .header_inner {
        height: 60px;
    }
}

.header_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.header_mobile::after {
    display: none;
}

@media (max-width: 1200px) {
    .header_mobile {
        position: fixed !important;
        top: 0;
        height: 100%;
        right: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        background: rgba(255, 247, 242, 0.8);
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        padding: 100px 20px 20px 20px;
        width: 100%;
        gap: 20px;
        max-width: 500px;
        z-index: 10;
        border-bottom-left-radius: 20px;
        border-top-left-radius: 20px;
        overflow: hidden;
    }
    .header_mobile>* {
        position: relative;
        z-index: 3;
    }
    .header_mobile::after {
        opacity: 0.99 !important;
        display: block;
    }
    .header_mobile.active {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.header_mobile .btn-row {
    margin-top: auto;
}

@media (max-width: 576px) {
    .header_mobile {
        padding-top: 50px;
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
    }
}

.header .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px;
    padding: 0 18px;
    border-left: 1px solid #BBBBBD;
    border-right: 1px solid #BBBBBD;
    height: 22px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 520px;
}

.header .nav_item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

@media (max-width: 1200px) {
    .header .nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: unset;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        max-width: unset;
        gap: 20px;
        border: unset;
    }
}

.header .btn-row {
    margin-left: auto;
}

.header .burger {
    display: none;
    z-index: 6;
    width: 24px;
    height: 24px;
    position: relative;
    color: #000000;
    cursor: pointer;
}

.header .burger__line {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: #000000;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    border-radius: 10px;
}

.header .burger::before,
.header .burger::after {
    content: "";
    position: absolute;
    right: 0;
    width: 50%;
    height: 2px;
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    border-radius: 10px;
}

.header .burger::before {
    top: 0;
    background: #000000;
}

.header .burger::after {
    top: calc(100% - 2px);
    background: #000000;
}

.header .burger--active .burger__line {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.header .burger--active::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    width: 100%;
    background: #000000;
}

.header .burger--active::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 50%;
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    width: 100%;
    background: #000000;
}

@media (max-width: 1200px) {
    .header .burger {
        display: block;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 24px;
        flex: 0 0 24px;
    }
}

.btn-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.badge {
    color: #000;
    font-weight: 500;
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 6px;
    padding: 0 7px;
    height: 21px;
    line-height: 13.5px;
    /* 112.5% */
}

.badge-yellow {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #FFCC00;
}

.badge-orange {
    border-radius: 3.725px;
    background: rgba(252, 121, 0, 0.12);
    color: #FC7900;
    height: 20px;
}

.badge-blue {
    border-radius: 3.725px;
    background: rgba(48, 104, 248, 0.12);
    color: #3068F8;
    height: 20px;
}

.badge-grey {
    background: rgba(0, 0, 0, 0.12);
    color: #fff;
    height: 20px;
    border-radius: 3.725px;
}

.user-row {
    margin-left: auto;
    position: relative;
}

@media (max-width: 1200px) {
    .user-row {
        margin-right: 15px;
    }
}

.user-row p {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 14px;
}

.user-row .icon {
    border-radius: 50%;
    overflow: hidden;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
}

.user-row svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (max-width: 576px) {
    .user-row button svg {
        display: none;
    }
}

@media (max-width: 576px) {
    .user-row button p {
        display: none;
    }
}

.user-row__inner.active svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.user-content {
    position: absolute;
    top: calc(100% + 25px);
    left: -50px;
    width: calc(100% + 50px);
    min-width: 301px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.29);
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.user-content.active {
    opacity: 1;
    pointer-events: all;
}

@media (max-width: 768px) {
    .user-content {
        right: -54px;
        left: unset;
        width: 100%;
    }
}

.user-content__inner {
    position: relative;
    z-index: 2;
}

.user-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 26, 37, 0.31);
    -webkit-backdrop-filter: blur(26px);
    backdrop-filter: blur(26px);
    z-index: 0;
}

.user-content__balance {
    border-bottom: 1px solid white;
    padding: 33px 33px 20px;
}

.user-content__balance>span {
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.5;
}

.user-content__balance .price {
    margin-bottom: 8px;
    margin-top: 10px;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 127.5%;
}

.user-content__balance .price+p span {
    opacity: 0.5;
}

.user-content__menu {
    border-bottom: 1px solid white;
    padding: 20px 33px;
    color: white;
}

.user-content__out {
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    gap: 7px;
}

.user-content__out p {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
}

.user-content .btn {
    font-weight: 500;
    font-size: 14px;
}

.user-content ul {
    list-style-type: none;
    display: -ms-grid;
    display: grid;
    grid-gap: 35px;
}

.user-content ul a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.footer {
    padding: 65px 0;
    background: white;
}

.footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 70px;
    max-width: 945px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 1200px) {
    .footer-inner {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .footer-inner {
        gap: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.footer .logo {
    margin-left: auto;
    margin-right: auto;
}

.footer-menu {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 4%;
}

@media (max-width: 576px) {
    .footer-menu {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-menu p {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 15px;
    color: #424242;
}

.footer-menu ul {
    display: -ms-grid;
    display: grid;
    grid-gap: 8px;
    list-style: none;
    color: #A7A7A7;
}

.footer-bottom {
    text-align: center;
    color: #535353;
    margin-top: 35px;
}

.main-screen {
    overflow: hidden;
}

.main-screen .section-inner {
    position: relative;
}

.main-screen .screen-inner {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .main-screen .screen-inner {
        padding: 40px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.main-screen .swiper-slide {
    height: auto;
}

.main-screen .ms-item {
    min-height: 466px;
    padding: 90px;
    border-radius: 30px;
    background: url(../img/sl1.png) no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

@media (max-width: 1200px) {
    .main-screen .ms-item {
        padding: 50px;
    }
}

@media (max-width: 992px) {
    .main-screen .ms-item {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .main-screen .ms-item {
        padding: 30px;
    }
}

.main-screen .ms-item.bs .img {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
}

@media (max-width: 768px) {
    .main-screen .ms-item.bs .img {
        position: relative;
        bottom: unset;
        right: unset;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        -webkit-transform: unset;
        transform: unset;
        top: unset;
    }
}

.main-screen .ms-item.ms .img {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -5%;
}

@media (max-width: 768px) {
    .main-screen .ms-item.ms .img {
        position: relative;
        bottom: unset;
        right: unset;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        -webkit-transform: unset;
        transform: unset;
        top: unset;
    }
}

.main-screen .content {
    width: 70%;
    z-index: 1;
    position: relative;
    color: white;
}

@media (max-width: 1200px) {
    .main-screen .content {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .main-screen .content {
        width: 100%;
    }
}

.main-screen .content_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 576px) {
    .main-screen .content_top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        gap: 0.5rem;
    }
}

.main-screen .content_top-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: Arial;
    font-size: 14px;
}

.main-screen .content_top-item:nth-child(1) {
    gap: 1rem;
    font-size: 18px;
}

@media (max-width: 768px) {
    .main-screen .content_top-item:nth-child(1) {
        font-size: 16px;
    }
}

.main-screen .content .text {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width: 480px;
}

@media (max-width: 768px) {
    .main-screen .content .text {
        font-size: 16px;
    }
}

.main-screen .content .btn-row {
    margin-top: 20px;
}

.main-screen .content .btn-row .btn {
    color: white;
}

.main-screen .content .btn-row .btn.btn-yellow {
    color: #000;
}

.main-screen .img {
    width: 50%;
    position: absolute;
    top: 0;
    right: -10%;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .main-screen .img {
        position: relative;
        bottom: unset;
        right: unset;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .main-screen .img {
        width: 80%;
    }
}

.section-table {
    background: url(../img/fastl.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.section-table .table-control {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 700px) {
    .section-table .table-control {
        margin-top: 20px;
    }
}

.section-table .table-control .btn {
    border: 1px solid white;
    color: white;
    width: 100%;
    max-width: 140px;
}

.table-container .inst-table {
    color: white;
    border-collapse: collapse;
    overflow-x: auto;
}

.table-container .inst-table::-webkit-scrollbar {
    background: rgba(0, 0, 0, 0.2);
}

.table-container .inst-table::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.table-container .inst-table::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 992px) {
    .table-container .inst-table {
        font-size: 14px;
    }
}

.table-container .inst-table .inst-thead {
    min-width: 900px;
    padding: 0 25px 22px;
}

.table-container .inst-table .inst-thead .inst-tr {
    height: 45px;
    padding-bottom: 10px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

.table-container .inst-table .inst-th,
.table-container .inst-table .inst-td {
    background: transparent;
    color: white;
}

.table-container .inst-table .inst-th:nth-child(1),
.table-container .inst-table .inst-td:nth-child(1) {
    text-align: center;
}

.table-container .inst-table .inst-tr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr minmax(150px, 1.5fr) 1.3fr 1fr 1fr 1fr 1.5fr 1.5fr 1.4fr;
    grid-template-columns: 1fr minmax(150px, 1.5fr) 1.3fr 1fr 1fr 1fr 1.5fr 1.5fr 1.4fr;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.table-container .inst-table .inst-tbody {
    padding: 0 25px;
    min-width: 900px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 9px;
}

@media (max-width: 768px) {
    .table-container .inst-table .inst-tbody {
        padding: 0 15px;
    }
}

.table-container .inst-table .inst-tbody .inst-tr {
    height: 74px;
    border-radius: 20px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.3))), -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0.2)));
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
    position: relative;
    overflow: hidden;
}

@media (max-width: 700px) {
    .table-container .inst-table .inst-tbody .inst-tr {
        border-radius: 10px;
    }
}

.table-container .inst-table .inst-tbody .inst-tr::after {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.table-container .inst-table .inst-tbody .inst-tr>* {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .table-container .inst-table .inst-tbody .inst-tr {
        height: 45px;
    }
}

.table-container.table-markets .inst-table .inst-th {
    color: #777e90;
}

.table-container.table-markets .inst-table .inst-th:last-child {
    text-align: center;
}

.table-container.table-markets .inst-table .inst-td {
    color: black;
}

.table-container.table-markets .inst-table .inst-td:last-child {
    text-align: center;
}

.table-container.table-markets .inst-table .inst-td:first-child {
    color: #777e90;
}

.table-container.table-markets .inst-table .inst-td p span {
    color: #777e90;
}

.table-container.table-markets .inst-table .inst-tr {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 55px minmax(150px, 1.5fr) 1.3fr 1fr 1fr 1fr 1.5fr;
    grid-template-columns: 55px minmax(150px, 1.5fr) 1.3fr 1fr 1fr 1fr 1.5fr;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.table-container.table-markets .inst-table .inst-thead {
    padding: 10px 0;
    border-radius: 10px;
    border: none;
    border-bottom: 1px solid #1e1e1e;
    color: #777e90;
    background: white;
}

.table-container.table-markets .inst-table .inst-thead .inst-tr {
    padding-bottom: 0;
}

.table-container.table-markets .inst-table .inst-tbody {
    border: none;
    background: white;
    color: #1e1e1e;
    padding-top: 0;
    padding: 0;
}

.table-container.table-markets .inst-table .inst-tbody .inst-tr {
    height: 65px;
}

.section-calc .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #414140;
}

@media (max-width: 768px) {
    .section-calc .section-title {
        margin-bottom: 30px;
    }
}

.section-calc .section-subtitle {
    text-align: center;
}

.calculator-container {
    border-radius: 30px;
    background: url(../img/cacl.png) no-repeat;
    background-size: cover;
    padding: 60px;
    margin-top: 50px;
    color: white;
}

@media (max-width: 992px) {
    .calculator-container {
        padding: 45px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .calculator-container {
        padding: 35px;
    }
}

@media (max-width: 576px) {
    .calculator-container {
        padding: 25px;
    }
}

.calculator-container .calculator-inner {
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 768px) {
    .calculator-container .calculator-inner {
        gap: 20px;
    }
}

.calculator-container .calc-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 75px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .calculator-container .calc-row {
        gap: 30px;
    }
}

.calculator-container .calc-row .name {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 99.023%;
    letter-spacing: -0.64px;
}

@media (max-width: 992px) {
    .calculator-container .calc-row .name {
        font-size: 25px;
    }
}

@media (max-width: 768px) {
    .calculator-container .calc-row .name {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .calculator-container .calc-row .name {
        font-size: 16px;
    }
}

.calculator-container .calc-row .input {
    border-radius: 10px;
    border: 1px solid #FFF;
    position: relative;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 99.023%;
    /* 23.765px */
    letter-spacing: -0.48px;
    width: 194px;
    height: 63px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .calculator-container .calc-row .input {
        font-size: 18px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .calculator-container .calc-row .input {
        font-size: 16px;
        width: 150px;
    }
}

.calculator-container .calc-row .input input {
    width: 100px;
    background: transparent;
    outline: none;
    color: white;
}

.calculator-container .calc-row .input span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
}

.calculator-container .input-range {
    width: 100%;
    margin: 20px 0;
}

.calculator-container .input-range input {
    width: 100%;
}

.calculator-container p {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 99.023%;
    /* 23.765px */
    letter-spacing: -0.48px;
}

@media (max-width: 992px) {
    .calculator-container p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .calculator-container p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .calculator-container p {
        font-size: 16px;
    }
}

.calculator-container .btn-rowGroup {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
}

@media (max-width: 768px) {
    .calculator-container .btn-rowGroup {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.calculator-container .calc-results {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 100px;
}

@media (max-width: 992px) {
    .calculator-container .calc-results {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .calculator-container .calc-results {
        gap: 35px;
    }
}

@media (max-width: 576px) {
    .calculator-container .calc-results {
        gap: 15px;
    }
}

.calculator-container .calc-results_content {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
}

.calculator-container .calc-results_content p {
    font-weight: 400;
}

.calculator-container .calc-results_content b {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 99.023%;
    /* 31.687px */
    letter-spacing: -0.64px;
}

@media (max-width: 992px) {
    .calculator-container .calc-results_content b {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .calculator-container .calc-results_content b {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .calculator-container .calc-results_content b {
        font-size: 20px;
    }
}

.about-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 25px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-gap: 15px;
    }
}

@media (max-width: 576px) {
    .about-grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 425px) {
    .about-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.about-grid__item {
    border-radius: 12px;
    border: 1px solid #FFCC00;
    background: #fff;
    min-height: 214px;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 23px;
    text-align: center;
    display: -ms-grid;
    display: grid;
    grid-gap: 10px;
}

.about-grid__item:nth-child(1),
.about-grid__item:nth-child(2),
.about-grid__item:nth-child(3) {
    grid-column: span 2;
}

.about-grid__item:nth-child(4),
.about-grid__item:nth-child(5) {
    grid-column: span 3;
}

@media (max-width: 768px) {
    .about-grid__item {
        padding: 15px;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }
}

.about-grid__item .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 10px;
    color: #2E2E2E;
    font-size: 22.62px;
    font-style: normal;
    font-weight: 600;
    line-height: 30.16px;
}

@media (max-width: 992px) {
    .about-grid__item .top {
        font-size: 18px;
        line-height: 110%;
    }
}

@media (max-width: 768px) {
    .about-grid__item .top {
        font-size: 16px;
    }
}

.about-grid__item .top .img {
    width: 77px;
    height: 77px;
    margin-left: auto;
    margin-right: auto;
    background: #FFD324;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -37px;
}

.about-grid__item .top .img img {
    max-width: 70%;
    height: auto;
}

@media (max-width: 768px) {
    .about-grid__item .top .img {
        width: 35px;
        height: 35px;
        margin-top: 0;
    }
}

.about-grid__item p {
    color: #CDCBDF;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 19px;
}

@media (max-width: 768px) {
    .about-grid__item p {
        font-size: 10px;
        line-height: 1.2;
    }
}

.about-grid__content {
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #FFF;
    font-size: 20x;
    font-style: normal;
    font-weight: 600;
    line-height: 25.16px;
}

@media (max-width: 768px) {
    .about-grid__content {
        padding: 15px;
    }
}

@media (max-width: 992px) {
    .about-grid__content {
        font-size: 17px;
        line-height: 110%;
    }
}

@media (max-width: 768px) {
    .about-grid__content {
        font-size: 15px;
    }
}

.about-grid__content .btn {
    margin-top: 15px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 15.08px;
}

.section-condition .section-title {
    color: #404040;
}

.condition-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 14px;
}

@media (max-width: 700px) {
    .condition-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.condition-grid__item .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.condition-grid__item b {
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 20.485px;
    /* 120.501% */
    letter-spacing: -0.698px;
}

@media (max-width: 700px) {
    .condition-grid__item b {
        font-size: 14px;
    }
}

.condition-grid__item p {
    color: #000;
    font-family: Inter;
    font-size: 14.433px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.928px;
    /* 145% */
    letter-spacing: -0.466px;
    max-width: 320px;
}

@media (max-width: 700px) {
    .condition-grid__item p {
        font-size: 12px;
    }
}

.condition-grid .img {
    margin-bottom: 15px;
    border-radius: 9.311px;
    -webkit-box-shadow: 0px 5px 139px 19px rgba(201, 200, 255, 0.58);
    box-shadow: 0px 5px 139px 19px rgba(201, 200, 255, 0.58);
}

.condition-grid .img img {
    width: 100%;
}

.section-partners {
    background: url(../img/partners.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.section-partners .section-title {
    color: #FFCC00;
}

.partners-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 75px 45px;
}

@media (max-width: 1200px) {
    .partners-grid {
        grid-gap: 45px 35px;
        -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}

.section-trading {
    background: url(../img/bottom-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.section-trading .section-title {
    color: #2E2E2E;
}

.section-trading .section-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 450px;
}

.section-trading .section-inner p {
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 14.831px;
    font-style: normal;
    font-weight: 400;
    line-height: 132.5%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.section-trading .section-inner .btn {
    border-radius: 30px;
    font-size: 15.803px;
}

.support-w {
    background: url(../img/support.png) no-repeat;
    background-size: cover;
    border-radius: 12px;
}

.support-top {
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 72px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    overflow: hidden;
    padding: 20px 30px 20px 20px;
    color: white;
}

.support-top::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 0;
}

.support-top>* {
    position: relative;
    z-index: 1;
}

.support-top b {
    color: #FFF;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

@media (max-width: 1200px) {
    .support-top b {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .support-top b {
        font-size: 14px;
    }
}

.support-top p {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

@media (max-width: 1200px) {
    .support-top p {
        font-size: 14px;
    }
}

.support-top span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffcc04;
}

@media (max-width: 576px) {
    .support-top .p {
        display: none;
    }
}

.support-body {
    border-radius: 12px;
}

.support-body__inner {
    height: 500px;
    overflow-x: hidden;
    grid-gap: 30px;
    width: 100%;
}

.support-body__inner::-webkit-scrollbar {
    width: 10px;
}

.support-body__inner::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.support-body__inner::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.65);
    border-radius: 10px;
}

.support-body__date {
    border-radius: 5px;
    background: #424242;
    font-weight: 500;
    line-height: 150%;
    padding: 5px 15px 7px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    margin: 23px auto;
    color: white;
}

.support-body__block {
    padding: 0 23px 23px;
    display: -ms-grid;
    display: grid;
    grid-gap: 15px;
}

.support-body__message {
    display: -ms-grid;
    display: grid;
    grid-gap: 4px;
}

.support-body__message-item {
    display: -ms-grid;
    display: grid;
    grid-gap: 4px;
}

.support-body__message-item p {
    color: white;
}

.support-body__message-item_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 7px;
}

.support-body__message-item_row .icon {
    border-radius: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42px;
    flex: 0 0 42px;
}

.support-body__message-item_row .text {
    padding: 8.9px 18px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.support-body__from {
    text-align: end;
}

.support-body__from .text {
    border-radius: 6px;
    background: #C9C9C9;
    -webkit-box-shadow: 0px 4.004px 8.008px 0px rgba(255, 255, 255, 0.25) inset;
    box-shadow: 0px 4.004px 8.008px 0px rgba(255, 255, 255, 0.25) inset;
    margin-left: auto;
}

.support-body__from .text p {
    color: #484848;
}

.support-body__from .support-body__message-item_row {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.support-body__to p {
    color: white;
}

.support-body__to .text {
    background: #2C2B2A;
    -webkit-box-shadow: 0px 4px 30px 0px rgba(255, 204, 4, 0.5);
    box-shadow: 0px 4px 30px 0px rgba(255, 204, 4, 0.5);
    border-radius: 8px;
    border: 1px solid #44424E;
    margin-right: auto;
}

.support-body__to .support-body__message-item_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.support-input {
    height: 69px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr minmax(150px, 217px);
    grid-template-columns: 1fr minmax(150px, 217px);
    grid-gap: 17px;
}

@media (max-width: 992px) {
    .support-input {
        -ms-grid-columns: 1fr 150px;
        grid-template-columns: 1fr 150px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .support-input {
        grid-gap: 10px;
    }
}

@media (max-width: 576px) {
    .support-input {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.support-input input {
    height: 100%;
    border-radius: 8px;
    background: #E0DBD5;
    outline: none;
    padding: 0 20px;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    color: white;
    min-height: 45px;
}

@media (max-width: 992px) {
    .support-input input {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .support-input input {
        font-size: 13px;
    }
}

.support-input .btn {
    height: 100%;
    font-size: 19px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .support-input .btn {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .support-input .btn {
        font-size: 13px;
    }
}

.dashboard-top {
    margin-bottom: 40px;
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../img/5aa880f113d409b8013a02f588232fb9.jpeg) no-repeat right center/cover, -webkit-gradient(linear, left bottom, left top, from(rgba(225, 225, 225, 0.05)), to(rgba(225, 225, 225, 0.05)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/5aa880f113d409b8013a02f588232fb9.jpeg) no-repeat right center/cover, linear-gradient(0deg, rgba(225, 225, 225, 0.05), rgba(225, 225, 225, 0.05));
    overflow: hidden;
}

.dashboard-top__inner {
    position: relative;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 19px;
    gap: 7%;
}

@media (max-width: 992px) {
    .dashboard-top__inner {
        gap: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

.dashboard-top>img {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
}

@media (max-width: 700px) {
    .dashboard-top>img {
        display: none;
    }
}

.dashboard-top .name {
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.dashboard-top .name span {
    color: #FFCC00;
}

.dashboard-top .name svg {
    display: inline;
}

.dashboard-top .input-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
}

.dashboard-top .input-row input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 40px;
    background: #fff;
    border-radius: 8px;
    color: black;
    padding: 0 14px;
    width: 100%;
}

.dashboard-top .input-row input::-webkit-input-placeholder {
    color: white;
}

.dashboard-top .input-row input:-ms-input-placeholder {
    color: white;
}

.dashboard-top .input-row input::-ms-input-placeholder {
    color: white;
}

.dashboard-top .input-row input::placeholder {
    color: white;
}

.dashboard-top .input-row .btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
}

.dashboard-inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 233px 1fr;
    grid-template-columns: 233px 1fr;
    grid-gap: 18px;
    position: relative;
}

@media (max-width: 1200px) {
    .dashboard-inner {
        grid-gap: 17px;
    }
}

@media (max-width: 992px) {
    .dashboard-inner {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.dashboard-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 45px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 21px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../img/5aa880f113d409b8013a02f588232fb9.jpeg) no-repeat center center/cover, -webkit-gradient(linear, left bottom, left top, from(rgba(225, 225, 225, 0.05)), to(rgba(225, 225, 225, 0.05)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/5aa880f113d409b8013a02f588232fb9.jpeg) no-repeat center center/cover, linear-gradient(0deg, rgba(225, 225, 225, 0.05), rgba(225, 225, 225, 0.05));
    overflow: hidden;
    border-radius: 10px;
    color: white;
}

@media (max-width: 992px) {
    .dashboard-sidebar {
        position: absolute;
        top: 45px;
        left: 0;
        background: #080712;
        padding: 25px;
        -webkit-transform: translateX(-120%);
        transform: translateX(-120%);
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        width: 100%;
        max-width: 500px;
        border-radius: 10px;
        z-index: 1;
    }
    .dashboard-sidebar.active {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@media (max-width: 576px) {
    .dashboard-sidebar {
        max-width: 100%;
    }
}

.dashboard-sidebar ul {
    list-style-type: none;
}

.dashboard-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 45px;
}

.dashboard-menu li {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.dashboard-menu li.active {
    color: #FFCD08;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

.dashboard-menu li.active svg path {
    fill: #FFCD08;
}

.sidebarbutton {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 8px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .sidebarbutton {
        display: block;
    }
}

.dashboard-refs {
    display: -ms-grid;
    display: grid;
    grid-gap: 30px;
}

.dashboard-sup {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
}

.dashboard-sup span {
    color: #CDCBDF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.5px;
}

@media (max-width: 992px) {
    .dashboard-sup span {
        font-size: 16px;
    }
}

@media (max-width: 700px) {
    .dashboard-sup span {
        font-size: 14px;
    }
}

.dashboard-sup button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: start;
    gap: 8px;
    position: relative;
    color: white;
    font-style: italic;
    font-weight: 500;
}

.b-title {
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 127.5%;
    color: #272727;
}

@media (max-width: 1200px) {
    .b-title {
        font-size: 30px;
    }
}

@media (max-width: 992px) {
    .b-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .b-title {
        font-size: 23px;
    }
}

.dashboard-block {
    border-radius: 12px;
}

.dashboard-block__item.hidden-block {
    display: none;
}

.dashboard-block .dsh-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 576px) {
    .dashboard-block .dsh-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

.dashboard-block .dsh-top a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
    color: #737373;
}

.dashboard-block .dsh-top .btn-brow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
    position: relative;
}

.dashboard-block .dsh-top .btn-brow .btn {
    height: 34px;
}

.dashboard-block .dsh-top .btn-brow .transfer-popup {
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    padding: 22px;
    border-radius: 12px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(211, 211, 211, 0.8)), to(rgba(211, 211, 211, 0.8))), -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.29)), to(rgba(255, 255, 255, 0.29)));
    background: linear-gradient(0deg, rgba(211, 211, 211, 0.8), rgba(211, 211, 211, 0.8)), linear-gradient(0deg, rgba(255, 255, 255, 0.29), rgba(255, 255, 255, 0.29));
    border: 1px solid rgba(255, 255, 255, 0.29);
    display: none;
}

.dashboard-block .dsh-top .btn-brow .transfer-popup::after {
    opacity: 1;
}

.dashboard-block .dsh-top .btn-brow .transfer-popup .p {
    margin-bottom: 10px;
}

.dashboard-block .dsh-top .btn-brow .transfer-popup__inner {
    position: relative;
    z-index: 2;
}

.dashboard-block .dsh-top .btn-brow .transfer-popup__inner .miop {
    font-size: 24px;
}

@media (max-width: 992px) {
    .dashboard-block .dsh-top .btn-brow .transfer-popup__inner .miop {
        font-size: 20px;
    }
}

@media (max-width: 700px) {
    .dashboard-block .dsh-top .btn-brow .transfer-popup__inner .miop {
        font-size: 18px;
    }
}

.dashboard-block .dsh-top .btn-brow .transfer-popup .select-wrapper,
.dashboard-block .dsh-top .btn-brow .transfer-popup .input-wrapper {
    color: #5f5f5f !important;
    font-family: Inter;
    font-size: 17.664px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 24.729px */
}

@media (max-width: 992px) {
    .dashboard-block .dsh-top .btn-brow .transfer-popup .select-wrapper,
    .dashboard-block .dsh-top .btn-brow .transfer-popup .input-wrapper {
        font-size: 15px;
    }
}

@media (max-width: 700px) {
    .dashboard-block .dsh-top .btn-brow .transfer-popup .select-wrapper,
    .dashboard-block .dsh-top .btn-brow .transfer-popup .input-wrapper {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .dashboard-block .dsh-top .btn-brow .transfer-popup {
        width: 320px;
        left: 0;
        right: unset;
    }
}

.dashboard-block .dsh-top .btn-brow .transfer-popup .select-custom3 {
    border-radius: 6.006px;
    border: 1.001px solid rgba(255, 255, 255, 0.2);
    background: #fff;
}

.dashboard-block .dsh-top .btn-brow .transfer-popup .select-custom3__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 11px 12px;
}

.dashboard-block .dsh-top .pp {
    border-radius: 5px;
    background: #fff;
    color: darkgray;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}

@media (max-width: 700px) {
    .dashboard-block .dsh-top .pp {
        font-size: 12px;
    }
}

.dashboard-block .dsh-top .max {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    right: 12px;
    border: 1px solid #bababa;
    border-radius: 10px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    padding: 2px 5px;
}

@media (max-width: 700px) {
    .dashboard-block .dsh-top .max {
        font-size: 12px;
    }
}

.dashboard-block .dsh-top input {
    color: white;
}

.dashboard-block .mid-p {
    text-align: right;
    font-size: 24px;
}

.dashboard-block .mid-p img {
    display: inline;
}

.dashboard-block .close {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
}

.db-block {
    padding: 37px 33px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #121A25;
    color: #FFF;
}

.db-block__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.db-block__row .btn-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
}

.db-block__row .btn-filters .btn {
    border-radius: 6px;
    background: rgba(66, 66, 66, 0.6);
    color: #BFBFBF;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 4px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (max-width: 700px) {
    .db-block__row .btn-filters .btn {
        font-size: 8px;
    }
}

.db-block__row .btn-filters .btn.active,
.db-block__row .btn-filters .btn:hover {
    background: white;
    color: #211621;
}

.db-block .name {
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 992px) {
    .db-block .name {
        font-size: 16px;
    }
}

@media (max-width: 700px) {
    .db-block .name {
        font-size: 14px;
    }
}

.dsh-grid {
    display: -ms-grid;
    display: grid;
    grid-gap: 40px;
    margin-top: 24px;
}

@media (max-width: 1200px) {
    .dsh-grid {
        grid-gap: 20px;
    }
}

.dsh-grid.dsh-comp {
    -ms-grid-columns: 1fr 0.8fr;
    grid-template-columns: 1fr 0.8fr;
}

@media (max-width: 1200px) {
    .dsh-grid.dsh-comp {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .dsh-grid.dsh-comp {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.dsh-grid .df-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
}

.input-custom {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    height: 45px;
    padding: 0 12px;
    position: relative;
}

.input-custom input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    height: 100%;
    color: #9A9A9A;
    font-size: 18px;
    font-style: normal;
    background: transparent;
    font-weight: 400;
    line-height: 140%;
}

@media (max-width: 992px) {
    .input-custom input {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .input-custom input {
        font-size: 14px;
    }
}

.input-custom input::-webkit-input-placeholder {
    color: #9A9A9A;
}

.input-custom input:-ms-input-placeholder {
    color: #9A9A9A;
}

.input-custom input::-ms-input-placeholder {
    color: #9A9A9A;
}

.input-custom input::placeholder {
    color: #9A9A9A;
}

.input-custom .changeValue {
    position: absolute;
    top: 50%;
    right: 12px;
    cursor: pointer;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: white;
}

.select-custom {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #fff;
    position: relative;
}

.select-custom span {
    color: #9a9a9a;
}

.select-custom input {
    background: transparent;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    height: 100%;
    color: #9A9A9A;
}

.select-custom .select-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}

@media (max-width: 992px) {
    .select-custom .select-inner {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .select-custom .select-inner {
        font-size: 14px;
    }
}

.select-custom .select-inner__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 36px 1fr;
    grid-template-columns: 36px 1fr;
    grid-gap: 8px;
}

.select-custom .select-suggest {
    position: absolute;
    top: calc(100% - 10px);
    opacity: 0;
    pointer-events: none;
    left: 0;
    width: 100%;
    padding: 20px 10px 10px;
    background: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.select-custom .select-suggest ul {
    list-style-type: none;
    display: -ms-grid;
    display: grid;
    grid-gap: 10px;
}

.df-block {
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.df-block.h-fit {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.df-block__padding ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
    padding-left: 20px;
}

.df-block .t-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

.df-block .t-row .mid-p {
    text-align: start;
}

.border-bot {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.witPad {
    padding: 25px 25px 20px;
}

.bl-title {
    color: #4d4d4d;
    font-family: "SF UI Display";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin: 4px 0 24px;
}

.qr-block {
    margin-bottom: 15px;
}

.qr-block p {
    margin-bottom: 20px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.inp-address p {
    margin-bottom: 4px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}

@media (max-width: 992px) {
    .inp-address p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .inp-address p {
        font-size: 14px;
    }
}

.inp-address .inp {
    font-family: Inter;
    font-size: 17.664px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    white-space: nowrap;
    text-wrap: nowrap;
    overflow: hidden;
    height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 12px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-radius: 6.006px;
    border: 1.001px solid rgba(255, 255, 255, 0.05);
    background: #838383;
}

.inp-address .inp span {
    display: block;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: white;
}

@media (max-width: 992px) {
    .inp-address .inp {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .inp-address .inp {
        font-size: 14px;
    }
}

.dsh-three {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 14px;
}

@media (max-width: 992px) {
    .dsh-three {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .dsh-three {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.sw-item {
    padding: 14px;
    border-radius: 12px;
    background: #fff;
}

.miop {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

@media (max-width: 992px) {
    .miop {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .miop {
        font-size: 12px;
    }
}

.miop span {
    color: #B2B0C8;
}

.miop svg {
    display: inline;
}

.select-custom2 {
    color: #424242;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 127.5%;
    /* 33.15px */
    position: relative;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .select-custom2 {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .select-custom2 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .select-custom2 {
        font-size: 14px;
    }
}

.select-custom2 ul {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 14px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    background: #fff;
    opacity: 0;
    pointer-events: none;
}

.sw-total-row {
    margin-bottom: 10px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
}

.sw-total .btn {
    max-width: 100%;
    width: 100%;
}

.ttable {
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    overflow-x: auto;
}

.ttable .row {
    min-width: 800px;
}

@media (max-width: 992px) {
    .ttable {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .ttable {
        font-size: 14px;
    }
}

.ttable .col {
    text-align: center;
}

.ttable-inner {
    margin-top: 14px;
    border-radius: 8px;
    background: #E6E6E6;
    padding: 13px 0;
    text-align: center;
    min-width: 800px;
}

.ttable-inner p {
    color: #454545;
}

.minh-f {
    min-height: 580px;
}

@media (max-width: 700px) {
    .minh-f {
        min-height: 300px;
    }
}

.earn-item {
    border-radius: 12px;
    background: #fff;
}

.earn-item__col {
    padding: 23px;
}

.earn-item__col:not(:last-child) {
    border-bottom: 1px solid #F2F2F2;
}

.earn-item__col .text-orange {
    font-weight: 500;
}

.earn-item__col input {
    border-radius: 6.006px;
    border: 1.001px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    width: 100%;
    outline: none;
    color: #454545;
    font-weight: 500;
    height: 45px;
    padding: 0 10px;
}

.select-reverse {
    position: relative;
    color: #3a3a3a;
    font-weight: 500;
}

.select-reverse ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 14px;
    color: #3a3a3a;
    background: #fff;
    opacity: 0;
    pointer-events: none;
}

.total-assets {
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
    border-radius: 12px;
}

.total-assets__item {
    padding: 12px 16px;
    border-radius: 12px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 25px;
    overflow: hidden;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .total-assets__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

.total-assets__item .t-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
}

@media (max-width: 576px) {
    .total-assets__item .t-btns {
        width: 100%;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

.cabinet-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.8fr;
    grid-template-columns: 1fr 0.8fr;
    grid-gap: 1rem;
}

@media (max-width: 1200px) {
    .cabinet-grid {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .cabinet-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.cabinet-block {
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
}

.cabinet-block hr {
    margin: 0;
    background: #EBEBEB;
    border: none;
    height: 2px;
}

.cabinet-block .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 185px;
}

.input-custom2 {
    position: relative;
}

.input-custom2 svg {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 12px;
    cursor: pointer;
}

.input-custom2.max {
    max-width: 250px;
}

.input-custom2 input {
    border-radius: 6.006px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #fff;
    color: #9A9A9A !important;
    font-weight: 500;
    height: 45px;
    outline: none;
    padding: 0 12px;
}

@media (max-width: 700px) {
    .input-custom2 input {
        height: 40px;
    }
}

.cabinet-inner .input-custom2 input {
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.cabinet-inner .select-custom {
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: white !important;
}

.auth-inner .input-custom2 input {
    background: #fff;
    color: #A1AAC9;
    border: 1.001px solid rgba(0, 0, 0, 0.05);
}

.userItem {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 52px 1fr;
    grid-template-columns: 52px 1fr;
    grid-gap: 12px;
}

.cabinet.section-inner .dashboard-top {
    margin-bottom: 1rem;
}

.stooltip {
    position: relative;
    cursor: pointer;
}

.stooltip-text {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: #11161F;
    border-radius: 10px;
    padding: 14px;
}

.cabinet-bottom {
    margin-top: 1rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    display: -ms-grid;
    display: grid;
    grid-gap: 20px;
}

.cabinet-bottom hr {
    margin: 0;
    background: #EBEBEB;
    border: none;
    height: 2px;
}

.cabinet-bottom .cabinet-name {
    font-size: 19px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .cabinet-bottom .cabinet-name {
        font-size: 17px;
    }
}

@media (max-width: 700px) {
    .cabinet-bottom .cabinet-name {
        font-size: 15px;
    }
}

.cabinet-bottom__grid .select-custom {
    background: #E8E8E8;
    color: #9A9A9A;
}

.cabinet-bottom__grid .igrid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem 70px;
}

@media (max-width: 1200px) {
    .cabinet-bottom__grid .igrid {
        grid-gap: 20px;
    }
}

@media (max-width: 700px) {
    .cabinet-bottom__grid .igrid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.cabinet-bottom__grid .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 185px;
}

.select-custom3 {
    color: #FFF;
    position: relative;
    cursor: pointer;
    color: black;
}

.select-custom3 ul {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 14px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    background: #fff;
    opacity: 0;
    pointer-events: none;
}

.p2p-top {
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    background: #fff;
    padding: 1rem;
    gap: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.p2p-top .select-custom3 {
    height: 35px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 0 5px;
    color: #454545;
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 1200px) {
    .p2p-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        gap: 20px;
    }
}

.p2p-top input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    border-radius: 6.006px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    height: 32px;
    padding: 0 12px;
    color: #282828;
}

.p2p-top .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .p2p-top .left {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

.p2p-top .btn-twin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
}

.p2p-inner {
    overflow-x: hidden;
    /* Hide horizontal overflow here */
    overflow-y: auto;
    /* Enable vertical scrolling */
    height: 680px;
    /* Fixed height for vertical scrolling boundary */
    margin-top: 20px;
}

.p2p-inner::-webkit-scrollbar {
    width: 10px;
}

.p2p-inner::-webkit-scrollbar-thumb {
    background: #ffce0f;
    border-radius: 10px;
}

.p2p-inner::-webkit-scrollbar-track {
    background: #fff;
}

.p2p-table {
    border-radius: 10px;
    background: #fff;
    overflow-x: auto;
    /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling for touch devices */
    padding: 1.5rem;
}

.p2p-table::-webkit-scrollbar {
    width: 10px;
}

.p2p-table::-webkit-scrollbar-thumb {
    background: #ffce0f;
    border-radius: 10px;
}

.p2p-table::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
}

.p2p-table .select-custom3 {
    height: 35px;
    padding: 0 5px;
    color: #454545;
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.p2p-table__head,
.p2p-table__item {
    min-width: 800px;
}

.p2p-table__item {
    padding: 1.5rem 0;
}

.p2p-table__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.p2p-table .p2p-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-gap: 10px;
    color: #545454;
}

.p2p-table .p2p-row .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.main-auth .auth-inner {
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: url(../img/auth.png);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 438.414px;
    padding: 44.042px 41.039px 43.145px 41.039px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15.014px;
    color: white;
}

@media (max-width: 768px) {
    .main-auth .auth-inner {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .main-auth .auth-inner {
        padding: 20px;
    }
}

.main-auth .name {
    color: #FFF;
    font-size: 32.03px;
    font-style: normal;
    font-weight: 450;
    line-height: 127.5%;
}

@media (max-width: 1200px) {
    .main-auth .name {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .main-auth .name {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .main-auth .name {
        font-size: 24px;
    }
}

.main-auth .name+p {
    color: rgba(255, 255, 255, 0.8);
}

.main-auth .span {
    padding: 6.006px 9.008px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    border-radius: 15.014px;
    border: 1.001px solid #E4E4E4;
}

@media (max-width: 576px) {
    .main-auth .span {
        font-size: 12px;
    }
}

.btn-co {
    width: 100%;
    display: -ms-grid;
    display: grid;
    grid-gap: 12px;
    margin-top: 20px;
}

.btn-co .btn {
    max-width: 100%;
    width: 100%;
}

.banner {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    min-height: 462px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 85px;
}

@media (max-width: 768px) {
    .banner .btn-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.banner .btn-row .btn {
    min-width: 200px;
}

.api-banner {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), url(../img/api.png), lightgray 0px -340.237px/138.852% 240.803% no-repeat;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), url(../img/api.png), lightgray 0px -340.237px/138.852% 240.803% no-repeat;
    background-size: cover;
}

.api-banner .title {
    color: white;
}

.main-api {
    padding-bottom: 100px !important;
}

.integration {
    margin-top: 80px;
}

@media (max-width: 700px) {
    .integration {
        margin-top: 40px;
    }
}

.integration>p {
    color: rgba(18, 18, 18, 0.75);
    text-align: center;
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .integration>p {
        font-size: 15px;
    }
}

@media (max-width: 700px) {
    .integration>p {
        font-size: 13px;
    }
}

.integration-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
}

@media (max-width: 992px) {
    .integration-inner {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .integration-inner {
        gap: 10px;
    }
}

.integration-inner .l-inner {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.integration-inner .obj {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 84px;
    flex: 0 0 84px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 700px) {
    .integration-inner .obj {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
        flex: 0 0 40px;
        width: 40px;
    }
    .integration-inner .obj img {
        height: auto;
    }
}

.integration-inner .obj span {
    display: block;
    margin-top: 40px;
    font-weight: bold;
}

@media (max-width: 700px) {
    .integration-inner .obj span {
        margin-top: 20px;
        font-size: 12px;
    }
}

.integration .tl {
    position: relative;
}

.integration .tl .ilb {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 60px;
    background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(#000000)), -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0.25)));
    background: linear-gradient(0deg, #000000, #000000), linear-gradient(0deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25));
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 16px;
    padding: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .integration .tl .ilb {
        font-size: 10px;
        line-height: 110%;
    }
}

@media (max-width: 576px) {
    .integration .tl .ilb {
        font-size: 8px;
    }
}

.integration .tl-flex {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

@media (max-width: 576px) {
    .integration .tl-flex {
        margin-top: 15px;
    }
}

.integration .tl-flex .tl {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 20px;
}

@media (max-width: 700px) {
    .integration .tl-flex .tl {
        margin-top: 9px;
    }
}

.integration .tl-flex .obj {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 144px;
    flex: 0 0 144px;
}

@media (max-width: 992px) {
    .integration .tl-flex .obj {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
        flex: 0 0 80px;
    }
}

@media (max-width: 700px) {
    .integration .tl-flex .obj {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
        flex: 0 0 30px;
    }
    .integration .tl-flex .obj img {
        height: auto;
    }
}

.integration .tl-flex .ilb {
    top: -5px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

@media (max-width: 700px) {
    .integration .tl-flex .ilb {
        top: -5px;
    }
}

.main-buy .section-subtitle {
    margin-left: 0;
    margin-top: 18px;
    margin-bottom: 48px;
    line-height: 1.5;
}

@media (max-width: 700px) {
    .main-buy .section-subtitle {
        margin-bottom: 25px;
    }
}

.buy-list {
    display: -ms-grid;
    display: grid;
    grid-gap: 30px;
}

@media (max-width: 700px) {
    .buy-list {
        grid-gap: 20px;
    }
}

.buy-list__item {
    border-radius: 12px;
    border: 1.001px solid rgba(225, 225, 225, 0.05);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../img/5aa880f113d409b8013a02f588232fb9.jpeg) no-repeat right center/cover, -webkit-gradient(linear, left bottom, left top, from(rgba(225, 225, 225, 0.05)), to(rgba(225, 225, 225, 0.05)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/5aa880f113d409b8013a02f588232fb9.jpeg) no-repeat right center/cover, linear-gradient(0deg, rgba(225, 225, 225, 0.05), rgba(225, 225, 225, 0.05));
    padding: 40px 30px;
    overflow: hidden;
    color: white;
}

@media (max-width: 700px) {
    .buy-list__item {
        padding: 5px;
    }
}

.buy-list__item-inner {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 700px) {
    .buy-list__item-inner {
        padding: 20px 15px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

.buy-list__item-inner .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 11px;
    margin-left: auto;
    font-size: 14px;
}

.buy-list__item-inner p {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.token-banner {
    border: none;
}

.token-banner .title {
    color: black;
}

.fastlist-banner {
    background: url(../img/fastl.png) no-repeat;
    background-size: cover;
}

.why-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 40px;
    margin-top: 48px;
}

@media (max-width: 1200px) {
    .why-grid {
        grid-gap: 20px;
    }
}

@media (max-width: 992px) {
    .why-grid {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

.why-grid__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.why-grid .why-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: #ffcc00;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 25px;
}

@media (max-width: 700px) {
    .why-grid .why-logo {
        width: 50px;
        height: 50px;
    }
}

.why-grid p:nth-child(2) {
    margin-bottom: 40px;
    font-weight: 700;
}

@media (max-width: 576px) {
    .why-grid p:nth-child(2) {
        margin-bottom: 20px;
    }
}

.why-grid p:last-child {
    color: #C7C7C7;
    font-size: 15px;
}

@media (max-width: 700px) {
    .why-grid p:last-child {
        font-size: 12px;
    }
}

.main-form {
    padding: 120px 0 300px !important;
    background: url(../img/fl.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
}

@media (max-width: 992px) {
    .main-form {
        padding: 100px 0 200px !important;
    }
}

@media (max-width: 768px) {
    .main-form {
        padding: 80px 0 100px !important;
    }
}

@media (max-width: 576px) {
    .main-form {
        padding: 50px 0 !important;
    }
}

.main-form form {
    max-width: 432px;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}

.main-form form input {
    width: 100%;
    background: transparent;
    height: 62px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0 30px;
    color: white;
}

@media (max-width: 700px) {
    .main-form form input {
        height: 45px;
        padding: 0 15px;
    }
}

.main-form form input::-webkit-input-placeholder {
    color: white;
}

.main-form form input:-ms-input-placeholder {
    color: white;
}

.main-form form input::-ms-input-placeholder {
    color: white;
}

.main-form form input::placeholder {
    color: white;
}

.main-form form .btn {
    height: 62px;
}

@media (max-width: 700px) {
    .main-form form .btn {
        height: 45px;
    }
}

.custom-checkbox {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 18px;
    background-color: #D0D5DD;
    border-radius: 9px;
}

.custom-checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 4px;
    left: 4px;
    height: 10px;
    width: 10px;
    background-color: white;
    border-radius: 50%;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.custom-checkbox input:checked+.checkmark {
    -webkit-transform: translateX(14px);
    transform: translateX(14px);
}

.mini-banner {
    min-height: 232px;
    background: url(../img/token.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.mini-banner img {
    margin-top: 30px;
}

.text-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
}

@media (max-width: 992px) {
    .text-group {
        gap: 30px;
    }
}

.text-group .fsx {
    color: black;
    font-size: 19.833px;
    font-style: normal;
    font-weight: 420;
    line-height: 165%;
    /* 32.725px */
    letter-spacing: -0.198px;
}

@media (max-width: 992px) {
    .text-group .fsx {
        font-size: 16px;
    }
}

@media (max-width: 700px) {
    .text-group .fsx {
        font-size: 14px;
    }
}

.text-inner {
    padding: 20px;
    border-radius: 12.396px;
    border: 1.24px solid rgba(0, 0, 0, 0.5);
    background: #F1EAE4;
    line-height: 155%;
    /* 32.725px */
}

.text-inner p:not(:last-child) {
    margin-bottom: 30px;
}

@media (max-width: 700px) {
    .text-inner p:not(:last-child) {
        margin-bottom: 15px;
    }
}

.text-inner ol {
    line-height: 165%;
    /* 32.725px */
    font-size: 19px;
}

@media (max-width: 992px) {
    .text-inner ol {
        font-size: 16px;
    }
}

@media (max-width: 700px) {
    .text-inner ol {
        font-size: 14px;
    }
}

.text-inner2 {
    padding: 20px;
    border-radius: 12.396px;
    background: #191828;
    font-size: 14px;
}

@media (max-width: 700px) {
    .text-inner2 {
        font-size: 12px;
    }
}

.text-inner2 p:not(:last-child) {
    margin-bottom: 10px;
}

@media (max-width: 700px) {
    .text-inner2 p:not(:last-child) {
        margin-bottom: 7px;
    }
}

.text-inner2 p.b {
    font-weight: 700;
}

.text-inner2 p a {
    color: #3F3F3F;
}

.text-inner2 p.i {
    font-style: italic;
}

.roadmap-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 992px) {
    .roadmap-list {
        gap: 25px;
    }
}

.roadmap-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.roadmap-list__item>p {
    text-align: center;
}

.roadmap-list__item .sub {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .roadmap-list__item .sub {
        margin-bottom: 24px;
    }
}

.roadmap-list__item svg {
    margin-bottom: 0;
}

.main-career {
    min-height: 670px;
}

.main-career .section-inner {
    max-width: 862px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.main-career .section-inner .miop {
    line-height: 165%;
}

.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 45px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    background: #1D1C32;
    height: 51px;
    width: 51px;
}

.main-nftsoon {
    padding-top: 100px !important;
}

.main-nftsoon .text-grey {
    color: rgba(0, 0, 0, 0.75);
}

.main-nftsoon .section-inner {
    max-width: 862px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.main-nftsoon .section-inner .miop {
    line-height: 165%;
}

.nft-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 28px;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .nft-grid {
        grid-gap: 15px;
    }
}

@media (max-width: 768px) {
    .nft-grid {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .nft-grid {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.nft-grid.blur {
    -webkit-filter: blur(4px);
    filter: blur(4px);
    pointer-events: none;
}

.nft-grid__item {
    border-radius: 0px 0px 9.12px 9.12px;
    background: #272A34;
    position: relative;
    border-radius: 9px;
    overflow: hidden;
    font-family: Oswald;
    cursor: pointer;
}

.nft-grid__item .img {
    height: 177px;
}

.nft-grid__item .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.nft-grid__item .content {
    padding: 13px 20px;
    min-height: 130px;
    border-bottom: 1px solid #32353F;
}

@media (max-width: 992px) {
    .nft-grid__item .content {
        padding: 13px;
    }
}

.nft-grid__item .content p {
    color: var(--Gray-3, #828282);
}

.nft-grid__item .name {
    color: #38F2AF;
    font-family: Oswald;
    font-size: 20.52px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 5px;
}

@media (max-width: 1200px) {
    .nft-grid__item .name {
        font-size: 18px;
    }
}

@media (max-width: 700px) {
    .nft-grid__item .name {
        font-size: 15px;
    }
}

.nft-grid .bottom {
    padding: 13px 20px;
    color: #38F2AF;
}

@media (max-width: 992px) {
    .nft-grid .bottom {
        padding: 13px;
    }
}

.nft-grid .bottom .nft-btn {
    border-radius: 31.921px;
    border: 1.14px solid #38F2AF;
    -webkit-box-shadow: 0px 0px 27.36px 0px rgba(253, 230, 63, 0.4);
    box-shadow: 0px 0px 27.36px 0px rgba(253, 230, 63, 0.4);
    padding: 4.56px 13.68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.main-faq .section-subtitle {
    line-height: 1.5;
}

.faq-block {
    margin-top: 35px;
}

.faq-title {
    font-family: 'SF Pro Display';
    font-size: 32px;
    font-weight: 600;
    line-height: 1.32;
    letter-spacing: 0em;
    text-align: left;
}

@media (max-width: 1200px) {
    .faq-title {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .faq-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 18px;
    }
}

.faq-list {
    margin-top: 24px;
    font-size: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 992px) {
    .faq-list {
        margin-top: 40px;
        font-size: 20px;
    }
}

@media (max-width: 700px) {
    .faq-list {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .faq-list {
        font-size: 14px;
    }
}

.faq-list__item {
    padding: 20px;
    border-radius: 12.396px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../img/5aa880f113d409b8013a02f588232fb9.jpeg) no-repeat center center/cover, -webkit-gradient(linear, left bottom, left top, from(rgba(225, 225, 225, 0.05)), to(rgba(225, 225, 225, 0.05)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/5aa880f113d409b8013a02f588232fb9.jpeg) no-repeat center center/cover, linear-gradient(0deg, rgba(225, 225, 225, 0.05), rgba(225, 225, 225, 0.05));
}

.faq-list__item button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    color: white;
    width: 100%;
    text-align: start;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.faq-list__item button p {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.faq-list__item button.active svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-list__item button svg {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.faq-list__text {
    display: none;
    padding: 10px 0;
    color: rgba(227, 228, 232, 0.75);
    font-size: 19.833px;
    font-style: normal;
    font-weight: 420;
    line-height: 165%;
}

@media (max-width: 992px) {
    .faq-list__text {
        font-size: 16px;
    }
}

@media (max-width: 700px) {
    .faq-list__text {
        font-size: 14px;
    }
}

.home-faq .section-title {
    color: #454545;
    text-align: center;
}

.home-faq .name {
    margin-top: 11px;
    color: #454545;
}

.home-faq .name {
    color: #454545;
    font-family: "SF UI Display";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 34.5px;
    /* 107.813% */
    letter-spacing: -0.64px;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .home-faq .name {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

@media (max-width: 700px) {
    .home-faq .name {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .home-faq .name {
        font-size: 20px;
    }
}

.home-faq .faq-list {
    margin-top: 0;
    font-size: 16px;
    gap: 1rem;
}

@media (max-width: 700px) {
    .home-faq .faq-list {
        font-size: 14px;
    }
}

.home-faq .faq-list__item {
    padding: 12px 24px;
    background: #FFCC00;
    border-radius: 8px;
    color: #000;
}

.home-faq .faq-list__text {
    font-size: 16px;
    color: #000;
}

@media (max-width: 700px) {
    .home-faq .faq-list__text {
        font-size: 14px;
    }
}

.home-faq .faq-plus {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #fff;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.home-faq .faq-plus span {
    color: #000;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 116.667% */
}

.dsh-balance {
    margin: 40px 0 60px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
    max-width: 690px;
}

@media (max-width: 992px) {
    .dsh-balance {
        margin: 30px 0 40px;
    }
}

@media (max-width: 700px) {
    .dsh-balance {
        margin: 25px 0 35px;
    }
}

.dsh-balance__item {
    border: 1px solid #2d2d2d;
    padding: 20px;
    border-radius: 10px;
    background: white;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 24px 1fr;
    grid-template-columns: 24px 1fr;
    grid-gap: 12px;
}

.balance-table__title {
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 36px;
}

@media (max-width: 992px) {
    .balance-table__title {
        margin-bottom: 25px;
    }
}

@media (max-width: 700px) {
    .balance-table__title {
        margin-bottom: 20px;
    }
}

.balance-table .table-container {
    font-size: 14px;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 700px) {
    .balance-table .table-container {
        font-size: 12px;
    }
}

.balance-table .table-container .inst-tbody {
    padding: 0;
    border: none;
    grid-gap: 0;
    font-weight: 500;
    gap: 0;
}

.balance-table .table-container .inst-tbody .inst-tr {
    background: #fff;
    padding: 0 8px;
    height: 80px;
    border-radius: 0;
}

.balance-table .table-container .inst-tbody .inst-tr:nth-child(even) {
    background: #e8e8e8;
}

.balance-table .table-container .inst-tbody .inst-td {
    color: #313131;
}

.balance-table .table-container .inst-thead {
    padding: 0 8px;
    background: #fff;
    border: none;
    font-family: Inter;
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 0em;
    text-align: left;
}

.balance-table .table-container .inst-thead .inst-th {
    color: #808191;
}

.balance-table .table-container .inst-thead .inst-th:first-child {
    text-align: start;
}

.balance-table .table-container .inst-tr {
    -ms-grid-columns: 4fr 1fr 2fr 2fr 2fr;
    grid-template-columns: 4fr 1fr 2fr 2fr 2fr;
}

.balance-table .table-container .inst-tr p:nth-child(2) {
    color: #979797;
    font-weight: 500;
}

.main-trade {
    padding-top: 50px;
}

.main-trade .container {
    max-width: 1920px;
}

.main-trade .trade-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 992px) {
    .main-trade .trade-top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .main-trade .trade-top {
        font-size: 10px;
        gap: 0.5rem;
    }
}

.main-trade .trade-top .select-custom2 p {
    font-size: 14px;
    line-height: 1.5;
}

.main-trade .trade-top .select-custom2 p:first-child {
    font-weight: 700;
}

.main-trade .trade-top .select-custom2 p:last-child {
    font-weight: 300;
}

.main-trade .trade-top .price {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: left;
}

@media (max-width: 992px) {
    .main-trade .trade-top .price {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .main-trade .trade-top .price {
        font-size: 14px;
    }
}

.main-trade .trade-top .price-low {
    color: red;
}

.main-trade .trade-top .price-high {
    color: #00B67A;
}

.main-trade .trade-top .price-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .main-trade .trade-top .price-info {
        gap: 0.5rem;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.trade-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(320px, 1fr) 2.25fr minmax(320px, 1fr);
    grid-template-columns: minmax(320px, 1fr) 2.25fr minmax(320px, 1fr);
    grid-gap: 10px;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

@media (max-width: 1200px) {
    .trade-grid {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .trade-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.trade-grid .column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .trade-grid .column:nth-child(1) {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2/3;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1/2;
    }
    .trade-grid .column:nth-child(2) {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1/3;
    }
}

@media (max-width: 768px) {
    .trade-grid .column:nth-child(1) {
        grid-column: unset;
    }
    .trade-grid .column:nth-child(2) {
        grid-column: unset;
    }
}

.trade-grid__table {
    overflow: hidden;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .trade-grid__table {
        margin-top: 0;
    }
}

.trade-grid__table .tgt_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 21px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.trade-grid__table .tgt_top button {
    color: #808191;
}

.trade-grid__table .tgt_top button.active {
    color: #11ba83;
}

@media (max-width: 700px) {
    .trade-grid__table .tgt_top {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .trade-grid__table .tgt_top {
        font-size: 11px;
    }
}

.trade-grid__table .table-container {
    font-size: 14px;
    padding: 0;
}

@media (max-width: 700px) {
    .trade-grid__table .table-container {
        font-size: 12px;
    }
}

.trade-grid__table .table-container .inst-tbody {
    padding: 0;
    border: none;
    background: transparent;
}

.trade-grid__table .table-container .inst-tbody .inst-tr {
    padding: 0 20px;
    height: 80px;
}

.trade-grid__table .table-container .inst-tbody .inst-tr .inst-td:first-child {
    text-align: start !important;
}

.trade-grid__table .table-container .inst-tbody .inst-tr .inst-td:first-child p {
    text-align: start;
}

.trade-grid__table .table-container .inst-thead {
    padding: 0 20px;
    border: none;
    border-top: 1px solid #2a2a2a;
    background: transparent;
    font-family: Inter;
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 0em;
    text-align: left;
    text-transform: uppercase;
    border-radius: 0;
}

.trade-grid__table .table-container .inst-thead .inst-th {
    color: #808191;
}

.trade-grid__table .table-container .inst-thead .inst-th:first-child {
    text-align: start;
}

.trade-grid__table .table-container .inst-tr {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
}

.trade-grid__table .table-container .inst-tr p:nth-child(2) {
    color: #bfbfc1;
}

.trade-grid__chart {
    background: fff;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.trade-grid__chart .chart_top {
    position: absolute;
    top: 20px;
    left: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
}

.trade-grid__chart .chart_top button {
    text-align: center;
    font-weight: 800;
    font-size: 15px;
    color: #413f3f;
}

@media (max-width: 700px) {
    .trade-grid__chart .chart_top button {
        font-size: 13px;
    }
}

.trade-grid__chart .chart_top button.active {
    color: #00B67A;
}

.trade-grid__order {
    display: -ms-grid;
    display: grid;
    grid-gap: 1.5rem;
    background: #fff;
    border-radius: 10px;
    padding: 20px 15px;
}

.trade-grid__order .name {
    font-weight: 600;
    letter-spacing: 0em;
    margin-bottom: 10px;
}

.trade-grid__order .order-table__body {
    font-size: 14px;
}

@media (max-width: 992px) {
    .trade-grid__order .order-table__body {
        font-size: 12px;
    }
}

@media (max-width: 700px) {
    .trade-grid__order .order-table__body {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .trade-grid__order .order-table__body {
        font-size: 9px;
    }
}

.trade-grid__order .order-table__head {
    background: #dadada;
    font-size: 10px;
    font-weight: 600;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 26px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.3fr 1.5fr 1fr;
    grid-template-columns: 1.3fr 1.5fr 1fr;
    grid-gap: 10px;
}

@media (max-width: 992px) {
    .trade-grid__order .order-table__head {
        font-size: 8px;
    }
}

@media (max-width: 576px) {
    .trade-grid__order .order-table__head {
        font-size: 5px;
    }
}

.trade-grid__order .order-table .tr {
    height: 35px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.3fr 1fr 1fr;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.trade-grid__order .order-table .tr::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--width);
    z-index: 0;
}

.trade-grid__order .order-table .td {
    padding: 0 10px;
    z-index: 1;
}

.trade-grid__order .order-table.down ::after {
    background: rgba(255, 122, 104, 0.1);
}

.trade-grid__order .order-table.down .order-table__body .td:first-child {
    color: #ff7a68;
}

.trade-grid__order .order-table.up ::after {
    background: rgba(127, 255, 104, 0.1);
}

.trade-grid__order .order-table.up .order-table__body .td:first-child {
    color: #3dbaa2;
}

.trade-grid__change {
    background: #fff;
    padding: 30px 15px;
    border-radius: 10px;
}

.trade-grid__change .ch-top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    margin-bottom: 20px;
}

.trade-grid__change .ch-top button {
    color: #808191;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    border-radius: 20px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.trade-grid__change .ch-top button.active {
    background: #ffcc00;
    color: black;
}

.trade-grid__change form {
    display: -ms-grid;
    display: grid;
    grid-gap: 12px;
}

.trade-grid__change form .trade-w {
    border: 1px solid #2a2a2a;
    background: #fff;
    padding: 10px 25px;
    border-radius: 12px;
    min-height: 64px;
    position: relative;
}

.trade-grid__change form .trade-w .p {
    color: #808191;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.trade-grid__change form .trade-w .span {
    position: absolute;
    top: 50%;
    right: 25px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.trade-grid__change form .trade-w input {
    background: transparent;
    color: #868686;
    font-weight: 500;
}

.trade-grid__change .btn {
    margin-top: 25px;
}

.trade-grid__search {
    display: -ms-grid;
    display: grid;
    grid-gap: 1.5rem;
    background: #fff;
    border-radius: 10px;
    padding: 20px 15px;
}

.trade-grid__search .search-table__body {
    height: 286px;
    overflow-y: auto;
    font-size: 12px;
}

.trade-grid__search .search-table__body::-webkit-scrollbar {
    width: 8px;
}

.trade-grid__search .search-table__body::-webkit-scrollbar-track {
    background: #dadada;
    border-radius: 10px;
}

.trade-grid__search .search-table__body::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .trade-grid__search .search-table__body {
        font-size: 10px;
    }
}

@media (max-width: 700px) {
    .trade-grid__search .search-table__body {
        font-size: 8px;
    }
}

@media (max-width: 576px) {
    .trade-grid__search .search-table__body {
        font-size: 7px;
    }
}

.trade-grid__search .search-table__head {
    font-size: 10px;
    font-weight: 600;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 26px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.3fr 1fr 1fr;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-gap: 10px;
    color: #787878;
}

@media (max-width: 992px) {
    .trade-grid__search .search-table__head {
        font-size: 8px;
    }
}

@media (max-width: 576px) {
    .trade-grid__search .search-table__head {
        font-size: 5px;
    }
}

.trade-grid__search .search-table .tr {
    height: 35px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.3fr 1fr 1fr;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.trade-grid__search .search-table .tr::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--width);
    z-index: 0;
}

.trade-grid__search .search-table .td {
    padding: 0 10px;
    z-index: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trade-grid__search .search-table.down ::after {
    background: #5A373A;
}

.trade-grid__search .search-table.down .order-table__body .td:first-child {
    color: #ff7a68;
}

.trade-grid__search .search-table.up ::after {
    background: #1F4A4B;
}

.trade-grid__search .search-table.up .order-table__body .td:first-child {
    color: #3dbaa2;
}

.trade-grid__list .list-table__body {
    font-size: 12px;
}

.trade-grid__list .list-table__body::-webkit-scrollbar {
    width: 8px;
}

.trade-grid__list .list-table__body::-webkit-scrollbar-track {
    background: #232E3D;
    border-radius: 10px;
}

.trade-grid__list .list-table__body::-webkit-scrollbar-thumb {
    background: #606b7b;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .trade-grid__list .list-table__body {
        font-size: 10px;
    }
}

@media (max-width: 700px) {
    .trade-grid__list .list-table__body {
        font-size: 8px;
    }
}

@media (max-width: 576px) {
    .trade-grid__list .list-table__body {
        font-size: 7px;
    }
}

.trade-grid__list .list-table__head {
    background: #DADADA;
    font-size: 10px;
    font-weight: 600;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 26px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.5fr 1fr 1fr;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-gap: 10px;
}

@media (max-width: 992px) {
    .trade-grid__list .list-table__head {
        font-size: 8px;
    }
}

@media (max-width: 576px) {
    .trade-grid__list .list-table__head {
        font-size: 5px;
    }
}

.trade-grid__list .list-table .tr {
    height: 35px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.5fr 1fr 1fr;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.trade-grid__list .list-table .tr::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--width);
    z-index: 0;
}

.trade-grid__list .list-table .td {
    padding: 0 10px;
    z-index: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trade-grid__list .list-table.down ::after {
    background: #5A373A;
}

.trade-grid__list .list-table.down .order-table__body .td:first-child {
    color: #ff7a68;
}

.trade-grid__list .list-table.up ::after {
    background: #1F4A4B;
}

.trade-grid__list .list-table.up .order-table__body .td:first-child {
    color: #3dbaa2;
}

.select-list {
    border: 1px solid #7d7d7d;
    padding: 0 13px;
    height: 37px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 78px;
    margin-bottom: 12px;
    position: relative;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    text-align: left;
    background: #080712;
    color: white;
}

@media (max-width: 700px) {
    .select-list {
        font-size: 12px;
        height: 32px;
    }
}

.select-list svg {
    position: absolute;
    top: 50%;
    right: 8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.select-list__list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: #000;
    display: none;
}

.search-input {
    position: relative;
    border: 1px solid #494949;
    color: #727272;
    height: 46px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 10px;
    width: 100%;
}

@media (max-width: 700px) {
    .search-input {
        font-size: 8px;
        height: 32px;
    }
}

.search-input svg {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.search-input input {
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0 12px;
    color: white;
}

.search-input input::-webkit-input-placeholder {
    color: #727272;
    text-transform: uppercase;
}

.search-input input:-ms-input-placeholder {
    color: #727272;
    text-transform: uppercase;
}

.search-input input::-ms-input-placeholder {
    color: #727272;
    text-transform: uppercase;
}

.search-input input::placeholder {
    color: #727272;
    text-transform: uppercase;
}

.section-feedback {
    padding: 70px 0 120px;
    background: url(../img/support.png);
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 768px) {
    .section-feedback {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .section-feedback {
        padding: 50px 0;
    }
}

.section-feedback .section-title {
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .section-feedback .section-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 700px) {
    .section-feedback .section-title {
        margin-bottom: 30px;
    }
}

.feedback-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1rem;
}

@media (max-width: 700px) {
    .feedback-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.feedback-grid__item {
    background: white;
    border-radius: 16px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 2rem;
    color: #667085;
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 992px) {
    .feedback-grid__item {
        padding: 1rem;
        gap: 1rem;
    }
}

@media (max-width: 700px) {
    .feedback-grid__item {
        font-size: 12px;
    }
}

.feedback-grid__item .bl:not(:last-child) {
    border-bottom: 1px solid #D4D5DA;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-bottom: 2rem;
}

@media (max-width: 992px) {
    .feedback-grid__item .bl:not(:last-child) {
        padding-bottom: 1rem;
    }
}

.feedback-grid__item .bl:last-child {
    margin-top: auto;
}

.feedback-grid__item .n {
    color: #1b212d;
    margin-bottom: 5px;
}

.feedback-grid__item .top {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    color: #1b212d;
    font-weight: 700;
    font-size: 15px;
}

@media (max-width: 992px) {
    .feedback-grid__item .top {
        font-size: 14px;
    }
}

@media (max-width: 700px) {
    .feedback-grid__item .top {
        margin-bottom: 20px;
    }
}

.flist .title {
    color: black;
}

.main-slider {
    overflow: hidden;
}

.messages .select-custom .select-inner__content,
.cabinet-bottom .select-custom .select-inner__content,
.dsh-comp .select-custom .select-inner__content,
.dashboard-block__item .select-custom .select-inner__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.text.sm {
    font-size: 14px;
}

@media (max-width: 576px) {
    .text.sm {
        font-size: 12px;
    }
}

.dashboard-block__item .igrid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 70px 1rem;
}

@media (max-width: 1200px) {
    .dashboard-block__item .igrid {
        grid-gap: 20px;
    }
}

@media (max-width: 700px) {
    .dashboard-block__item .igrid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.c-empty {
    background: #E6E6E6;
    font-size: 18px;
    padding: 14px;
    text-align: center;
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 700px) {
    .c-empty {
        font-size: 14px;
    }
}

.swap-bottom {
    min-height: 587px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
}

.mTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.space-y-3>*:not(:last-child) {
    margin-bottom: 2.5rem;
}

@media (max-width: 700px) {
    .space-y-3>*:not(:last-child) {
        margin-bottom: 1.5rem;
    }
}

.staking_row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}

@media (max-width: 576px) {
    .staking_row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.staking_row .btn-yellow {
    max-width: 310px;
}

.staking_row-r {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 576px) {
    .staking_row-r {
        margin-left: 0;
    }
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

ul[class],
ol[class] {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

html,
body {
    height: 100%;
}

body {
    position: relative;
    min-width: 320px;
    text-rendering: optimizeSpeed;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    overflow-x: hidden;
    background: #fff7f2;
    color: var(--state-bold-black, #303030);
}

@media (max-width: 700px) {
    body {
        font-size: 14px;
    }
}

body.fixed {
    overflow: hidden;
}

ul[class],
ol[class] {
    list-style: none;
}

a {
    text-decoration-skip-ink: auto;
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    padding: 0;
    background-color: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}

input {
    outline: none;
    border: 0;
    padding: 0;
}

input,
button,
textarea,
select {
    font: inherit;
}

ul {
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

.main {
    padding-top: 70px;
    background: url(../img/bg-item.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
}

@media (max-width: 768px) {
    .main {
        padding-top: 50px;
    }
}

.main.secondary {
    background: url(../img/bg-item.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center -300px;
}

@media (max-width: 1200px) {
    .main.secondary {
        background-position: center top;
    }
}

.main.trade {
    background: url(../img/bg-item.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center -500px;
}

@media (max-width: 1200px) {
    .main.trade {
        background-position: center top;
    }
}

.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 10px;
    min-height: 40px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.2;
    font-style: normal;
    color: #303030;
    font-weight: 600;
    gap: 4px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (max-width: 576px) {
    .btn {
        font-size: 14px;
    }
}

.btn-green {
    background: #00B67A;
    -webkit-box-shadow: 0px 4.004px 8.008px 0px rgba(255, 255, 255, 0.25) inset;
    box-shadow: 0px 4.004px 8.008px 0px rgba(255, 255, 255, 0.25) inset;
    color: white;
}

.btn-dark-grey {
    color: #fff;
    background: rgba(0, 0, 0, 0.15);
}

.btn-green-outline {
    border-radius: 10px;
    border: 1px solid #08B87E;
    background: transparent;
    color: #08B87E;
}

.btn-green-outline.active,
.btn-green-outline:hover {
    background: #00B67A;
    color: white;
}

.btn-dark-yellow {
    background: rgba(20, 187, 132, 0.15);
    color: #607000;
}

.btn-yellow-outline {
    border-radius: 10px;
    border: 1px solid #FFD324;
    background: transparent;
    color: #FFD324;
}

.btn-yellow-outline.active,
.btn-yellow-outline:hover {
    background: #FFD324;
    color: black;
}

.btn-black {
    color: white;
    -webkit-box-shadow: 0px 4.00378px 8.00756px 0px rgba(255, 255, 255, 0.25) inset;
    box-shadow: 0px 4.00378px 8.00756px 0px rgba(255, 255, 255, 0.25) inset;
    border-radius: 4.786px;
    border: 0.558px solid rgba(255, 255, 255, 0.05);
    background: #24232D;
}

.btn-violet {
    border-radius: 4.786px;
    border: 0.558px solid rgba(255, 255, 255, 0.05);
    background: #411AFF;
    color: white;
}

.btn-outline {
    border: 1px solid #ffce09;
    background: transparent;
    color: #3a3a3a;
}

.btn-mid-h {
    height: 50px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .btn-mid-h {
        height: 42px;
        font-size: 16px;
    }
}

.btn-green-outline2 {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(20, 187, 132, 0.15);
    color: #05FFAD;
}

.btn-green-outline2.active,
.btn-green-outline2:hover {
    background: #00B67A;
    color: white;
}

.btn-yellow-outline2 {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(20, 187, 132, 0.15);
    color: #a2b000;
}

.btn-yellow-outline2.active,
.btn-yellow-outline2:hover {
    background: #FFE600;
    color: white;
}

.btn-red-outline2 {
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(187, 20, 20, 0.15);
    color: #BB1414;
}

.btn-auth {
    border-radius: 4.786px;
    border: 0.558px solid rgba(255, 255, 255, 0.05);
    background: #FFE600;
    color: #000;
}

.btn-auth.active,
.btn-auth:hover {
    background: #000;
    color: white !important;
}

.btn-auth.active svg path,
.btn-auth:hover svg path {
    fill: white;
}

.btn-dark-outline {
    border-radius: 6.006px;
    border: 1.105px solid rgba(228, 228, 228, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

.btn-greenLight {
    border-radius: 6px;
    background: #00B67A;
    -webkit-box-shadow: 0px 4px 68px 0px rgba(0, 182, 122, 0.52);
    box-shadow: 0px 4px 68px 0px rgba(0, 182, 122, 0.52);
    height: 48px;
}

.btn-yellow {
    border-radius: 4.786px;
    background: #FFE600;
    color: #000;
}

.btn-yellow.active,
.btn-yellow:hover {
    background: #000;
    color: white !important;
}

.btn-yellow.active svg path,
.btn-yellow:hover svg path {
    fill: white;
}

.text-white {
    color: white;
}

.text-red {
    color: #F55;
}

.text-lred {
    color: #ff9c9c;
}

.text-orange {
    color: #F7931A;
}

.text-yellow {
    color: #ffcf12;
}

.text-green {
    color: #4fbf67;
}

.text-grey {
    color: #9A9A9A;
}

.text-dark {
    color: #505050;
}

.text-darkYellow {
    color: #776b00;
}

.txt-center {
    text-align: center;
}

.section-title {
    color: #000000;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 99.023%;
    letter-spacing: -0.8px;
}

@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 25px;
    }
}

.section-subtitle {
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 99.023%;
    letter-spacing: -0.48px;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .section-subtitle {
        font-size: 16px;
    }
}

.section-space {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .section-space {
        padding: 30px 0;
    }
}

.blur-bg {
    position: relative;
    z-index: 2;
}

.blur-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 0;
    opacity: 0.3;
}

.fw-medium {
    font-weight: 500;
}

.title {
    font-size: 55px;
    font-style: normal;
    font-weight: 600;
    line-height: 108.523%;
    letter-spacing: -1.1px;
    margin: 21px 0 24px;
    position: relative;
    color: #E5C90C;
}

@media (max-width: 768px) {
    .title {
        font-size: 36px;
    }
}

.chatWidget {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 10;
    height: 80px;
    width: 80px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.chatWidget .input-custom2 input,
.chatWidget .select-custom,
.chatWidget textarea {
    border: 1px solid rgba(0, 0, 0, 0.15);
    resize: none;
    outline: none;
    font-size: 16px;
}

.chatWidget textarea {
    min-height: 170px;
    border-radius: 12px;
    padding: 16px;
}

.chatWidget.chatTicket .name {
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
}

.chatWidget.chatTicket .messages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.chatWidget.chatTicket .messages>* {
    margin-bottom: 20px;
}

.chatWidget.chatTicket .contact.bar {
    padding-left: 0;
}

.chatWidget.active {
    max-width: 337px;
    width: 100%;
    height: 500px;
}

.chatWidget.active.chatTicket {
    height: 620px;
}

@media (max-width: 576px) {
    .chatWidget.active {
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
    }
}

.chatWidget.active .chat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.chatWidget .pic {
    width: 4rem;
    height: 4rem;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}

.chatWidget .cwrapper {
    background: #FFCC00;
    border-radius: 7px 7px 0px 0px;
    overflow: hidden;
}

.chatWidget .chat {
    position: relative;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 1rem;
    height: 100%;
    background: white;
    -webkit-box-shadow: 0 0 8rem 0 rgba(0, 0, 0, 0.1), 0rem 2rem 4rem -3rem rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 8rem 0 rgba(0, 0, 0, 0.1), 0rem 2rem 4rem -3rem rgba(0, 0, 0, 0.5);
}

.chatWidget .chat .seen {
    opacity: 0.69;
    font-size: 14px;
}

.chatWidget .chat .contact {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 3rem;
    height: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.chatWidget .chat .chat-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.chatWidget .chat .contact .pic {
    position: absolute;
    left: 0;
}

.chatWidget .chat .pic {
    width: 2rem;
    height: 2rem;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}

.chatWidget .chat .contact.bar {
    -ms-flex-preferred-size: 3.5rem;
    flex-basis: 3.5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.chatWidget .chat .messages {
    padding: 1rem;
    background: #fff;
    -ms-flex-negative: 2;
    flex-shrink: 2;
    height: calc(100% - 65px);
    overflow-x: hidden;
    -webkit-box-shadow: inset 0 2rem 2rem -2rem rgba(0, 0, 0, 0.05), inset 0 -2rem 2rem -2rem rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 2rem 2rem -2rem rgba(0, 0, 0, 0.05), inset 0 -2rem 2rem -2rem rgba(0, 0, 0, 0.05);
}

.chatWidget .chat .messages .time {
    font-size: 0.8rem;
    background: #EEE;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    color: #999;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}

.chatWidget .chat .messages .message {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.5rem 1rem;
    margin: 1rem;
    background: #FFF;
    border-radius: 1.125rem 1.125rem 1.125rem 0;
    min-height: 2.25rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 66%;
    -webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.075), 0rem 1rem 1rem -1rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.075), 0rem 1rem 1rem -1rem rgba(0, 0, 0, 0.1);
}

.chatWidget .chat .messages .message.to {
    color: black;
}

.chatWidget .chat .messages .message.from {
    margin: 1rem 1rem 1rem auto;
    border-radius: 1.125rem 1.125rem 0 1.125rem;
    background: #333;
    color: white;
}

.chatWidget .chat .messages .message .typing {
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #ccc;
    border-radius: 50%;
}

.chatWidget .chat .messages .message .typing.typing-1 {
    -webkit-animation: typing 3s infinite;
    animation: typing 3s infinite;
}

.chatWidget .chat .messages .message .typing.typing-2 {
    -webkit-animation: typing 3s 250ms infinite;
    animation: typing 3s 250ms infinite;
}

.chatWidget .chat .messages .message .typing.typing-3 {
    -webkit-animation: typing 3s 500ms infinite;
    animation: typing 3s 500ms infinite;
}

.chatWidget .chat .input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-flex-preferred-size: 4rem;
    flex-basis: 4rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0 0 0.5rem;
}

.chatWidget .chat .input i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #666;
    cursor: pointer;
    -webkit-transition: color 200ms;
    transition: color 200ms;
}

.chatWidget .chat .input i:hover {
    color: #333;
}

.chatWidget .chat .input input {
    border: none;
    background-image: none;
    background-color: white;
    padding: 0.5rem 1rem;
    margin-right: 1rem;
    max-width: 215px;
    border-radius: 1.125rem;
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1), 0rem 1rem 1rem -1rem rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1), 0rem 1rem 1rem -1rem rgba(0, 0, 0, 0.2);
    font-family: Red hat Display, sans-serif;
    font-weight: 400;
    letter-spacing: 0.025em;
}

.chatWidget .chat .input input:placeholder {
    color: #999;
}

@-webkit-keyframes typing {
    0%,
    75%,
    100% {
        -webkit-transform: translate(0, 0.25rem) scale(0.9);
        transform: translate(0, 0.25rem) scale(0.9);
        opacity: 0.5;
    }
    25% {
        -webkit-transform: translate(0, -0.25rem) scale(1);
        transform: translate(0, -0.25rem) scale(1);
        opacity: 1;
    }
}

@keyframes typing {
    0%,
    75%,
    100% {
        -webkit-transform: translate(0, 0.25rem) scale(0.9);
        transform: translate(0, 0.25rem) scale(0.9);
        opacity: 0.5;
    }
    25% {
        -webkit-transform: translate(0, -0.25rem) scale(1);
        transform: translate(0, -0.25rem) scale(1);
        opacity: 1;
    }
}

.chatWidget .chat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFCC00;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    bottom: 10px;
    right: 20px;
    cursor: pointer;
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
}

.chatWidget .chat-icon svg {
    min-width: 40%;
    height: auto;
}

.frame-title {
    color: #000;
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 46.8px */
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .frame-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .frame-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .frame-title {
        font-size: 25px;
    }
}

.frame-title2 {
    color: #000;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 46.8px */
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .frame-title2 {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .frame-title2 {
        font-size: 25px;
    }
}

@media (max-width: 768px) {
    .frame-title2 {
        font-size: 22px;
    }
}

.layout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.66);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 5;
}

.modal {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal-inner {
    z-index: 6;
    max-width: 506px;
    width: 100%;
}

.modal-item {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-image: url(../img/modalItem.png);
    background-color: #060911;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px;
    text-align: center;
}

.modal-item img {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 576px) {
    .modal-item {
        padding: 20px;
    }
}

svg path {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}