/* STYLES 02.04.2025
Developer: t.me/moretheme
Developer site: https://lapse.site/
Screen resolution: 460, 860, 1440, 1920 */
:root {
    --bg: #24222b;
    --bg2: #3e3b46;
    --bg3: #19181e;
    --text: #fff;
    --text1: #000;
    --text2: #c7c7d4;
    --text3: #e2e2e7;
    --color1: linear-gradient(180deg, #00BCD4, #0e7c8a);
    --color2: #34b7cd;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 20%);
    --dark: rgb(0 0 0 / 15%);
    --radius: 12px;
}

body {
    background: var(--bg);
    color: var( --text);
    line-height: normal;
    font-family: "Geologica", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* HEADER */
header {
    position: relative;
    background: transparent;
    border-bottom: 1px solid var(--light);
    color: var(--text2);
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 0;
    transition: 0.3s;
    z-index: 7;
}

@media (max-width: 860px) {
    header.active {
        display: none;
    }
}

header.fixed {
    position: fixed;
    background: rgb(28 28 28 / 71%);
    backdrop-filter: blur(30px);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 10px;
}

.header-logo {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: auto;
}

.header-logo img {
    height: 18px;
}

.header-menu {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: auto;
}

.header-menu > div {
    position: relative;
}

@media (max-width: 860px) {
    .header-menu > div {
        width: 100%;
    }
}

.header-menu > div > a, .header-menu > a {
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    color: var(--text);
    padding: 10px 15px;
    font-weight: 500;
}

@media (max-width: 860px) {
    .header-menu > div > a, .header-menu > a {
        color: #fff;
        width: 100%;
    }
}

.header-menu > div a:hover, .header-menu > a:hover {
    color: var(--text2);
}

.header-store {
    position: relative;
    display: inline-block;
    background: var(--light);
    border-radius: var(--radius);
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

.header-store > span {
    position: absolute;
    top: -5px;
    right: 0;
    display: inline-block;
    background: #F44336;
    border-radius: 50%;
    color: #fff;
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 10px;
    text-align: center;
}

.header-lang {
    position: relative;
}

.header-lang > a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--light);
    padding: 10px 12px;
    border-radius: var(--radius);
    text-transform: uppercase;
}

.header-lang > div {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 200px;
    top: 100%;
    right: 0;
    background: var(--bg2);
    color: #000;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    padding: 3px;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 5;
}

.header-lang.active > div {
    visibility: visible;
    opacity: 1;
}

.header-lang > div:before {
    content: "";
    position: absolute;
    top: -5px;
    right: 30px;
    width: 10px;
    height: 10px;
    background: var(--bg2);
    transform: rotate(225deg);
}

.header-lang > div a {
    display: block;
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 12px;
    text-align: center;
}

.header-lang > div a:hover, .header-lang > div a.active {
    background: var(--light);
}

/* HEADER FAST */
.header-fast {
    display: flex;
    align-items: center;
    grid-gap: 40px;
    margin-right: 20px;
}

header + .header-fast {
    display: none;
}

@media (max-width: 860px) {
    header .header-fast {
        display: none;
    }

    header + .header-fast {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg3);
        color: var(--text2);
        padding: 10px 20px;
        margin-right: 0;
        z-index: 8;
    }
}

.header-fast > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 5px;
    font-size: 13px;
    font-weight: 200;
}

.header-fast > a:hover i {
    color: #fff;
    font-weight: bold;
}

.header-fast > a i {
    font-size: 20px;
}

.header-fast > a.active i {
    color: #fff;
    font-weight: bold;
}

/* QYC CLUE */
[data-clue] {
    position: relative;
}

[data-clue] .qyc-clue_video {
    position: absolute;
    top: 0;
    right: 0;
    width: inherit;
    height: inherit;
    z-index: 4;
}

[data-clue] .qyc-clue_video video {
    background: var(--bg2);
    border: 3px solid var(--bg2);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 30%);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    overflow: hidden;
}

@media (min-width: 1440px) {
    [data-clue] .qyc-clue_video video {
        width: 180px;
        height: 180px;
    }
}

/* MOB MENU 08.06.24 */
.mobmenu-btn {
    display: none;
}

.mobmenu > div > a:after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    font-weight: 500;
    transition: 0.3s;
}

.mobmenu > div > div {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    display: grid;
    grid-gap: 10px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
    background: var(--bg3);
    color: #fff;
    box-shadow: 0px 10px 20px rgb(28 56 67 / 10%);
    padding: 20px;
    border-radius: var(--radius);
    font-size: 14px;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 6;
}

@media (max-width: 860px) {
    .mobmenu > div > div {
        width: 100%;
        grid-template-columns: 1fr;
    }
}

.mobmenu > div > div:before {
    content: "";
    position: absolute;
    top: -5px;
    left: 15px;
    width: 10px;
    height: 10px;
    background: var(--bg3);
    transform: rotate(45deg);
}

@media (min-width: 860px) {
    .mobmenu > div > a:hover:after {
        transform: rotate(180deg);
    }

    .mobmenu > div:hover > div {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 860px) {
    .mobmenu-btn {
        display: block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        color: var(--color1);
        font-size: 25px;
        text-align: center;
    }

    .mobmenu-btn.active:before {
        content: "\f00d";
    }

    .mobmenu-btn.active {
        z-index: 9;
    }

    .mobmenu {
        position: fixed;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        top: 0;
        left: -300px;
        width: 240px;
        height: 100%;
        background: var(--bg2);
        color: #fff;
        transition: left 0.3s;
        overflow: hidden;
        overflow-y: auto;
        z-index: 9;
    }

    .mobmenu.active {
        display: flex;
        left: 0;
        padding: 20px;
    }

    .mobmenu > div.active > a:after {
        transform: rotate(180deg);
    }

    .mobmenu > div.active > div {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobmenu > div > div a {
        display: block;
    }
}

/* HEADER SEARCH */
.header-search {
    z-index: 7;
}

@media (max-width: 860px) {
    .header-search {
        margin-left: auto;
        margin-right: 0;
    }
}

.header-search form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light);
    backdrop-filter: blur(30px);
    border-radius: var(--radius);
}

@media (max-width: 860px) {
    .header-search form {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        width: 100%;
        top: -40px;
        left: 0;
        background: var(--bg3);
        border-radius: 0;
        padding: 10px;
        transition: 0.3s;
        z-index: 5;
    }
}

.header-search.active form {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.header-search .fa-magnifying-glass, .header-search .fa-xmark {
    background: var(--light);
    border-radius: var(--radius);
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    color: #adb7be;
    font-size: 14px;
    text-align: center;
}

.header-search form .fa-magnifying-glass {
    margin: 5px;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
}

.header-search form input {
    background: none;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 200px;
    height: inherit;
    border-radius: 0;
    margin-left: 15px;
}

.header-search form input::placeholder {
    color: #8b9297;
}

.header-search form .fa-microphone {
    display: inline-block;
    background: transparent;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    text-align: center;
}

.header-search .fa-xmark:not(.header-search.active .fa-xmark) {
    display: none;
}

.header-search_top {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 255px;
    top: 110%;
    left: auto;
    background: #3a3941;
    box-shadow: 0 10px 20px -2px rgb(0 0 0 / 40%);
    padding: 20px;
    border-radius: var(--radius);
    transition: 0.3s;
}

@media (max-width: 860px) {
    .header-search_top {
        width: 100%;
        top: 140%;
        left: 0;
    }
}

.header-search_top.active {
    visibility: visible;
    opacity: 1;
}

/* HEADER USER 2.0 */
.header-user > img {
    display: inline-block;
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

.header-user > a .fa-user {
    display: inline-block;
    background: var(--color1);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    border-radius: var(--radius);
    cursor: pointer;
}

.header-user > div {
    position: absolute;
    width: 220px;
    top: 100%;
    right: 0;
    background: var(--bg3);
    color: #fff;
    padding: 15px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 5;
}

.header-user > div:before {
    content: "";
    position: absolute;
    top: -5px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: var(--bg3);
    transform: rotate(45deg);
}

.header-user.active > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}

.header-user_top {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    padding: 10px;
    border-radius: var(--radius);
}

.header-user_top > img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.header-user_top > div span {
    display: block;
    color: #a5a5a5;
    font-size: 10px;
    margin-top: 2px;
}

.header-user_balance {
    border-top: 2px solid var(--bg2);
    border-bottom: 2px solid var(--bg2);
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    margin-bottom: 10px;
}

.header-user_balance > span:last-child {
    display: block;
    color: #454252;
    font-weight: 300;
    font-size: 10px;
    margin-top: 3px;
}

.header-user > div a:not(.header-user_top) {
    display: block;
    color: var(--text2);
    border-radius: var(--radius);
    padding: 10px;
    font-size: 14px;
}

.header-user > div a:hover {
    background: var(--light);
}

.header-user > div a i {
    margin-right: 8px;
}

.header-user > div a:last-child {
    color: #F44336;
    font-weight: 500;
}

/* MODAL LOGIN 0.2 */
a[href="#modal-login"] {
    display: inline-block;
    background: var(--color1);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
}

a[href="#modal-login"]:hover {
    opacity: 0.8;
}

.modal-login > a i {
    margin-right: 10px;
    margin-top: 1px;
    float: left;
}

.modal-login {
    position: fixed;
    min-width: 450px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--bg);
    color: var(--text);
    padding: 60px 30px;
    border-radius: var(--radius);
    text-align: center;
    z-index: 9;
}

@media (max-width: 860px) {
    .modal-login {
        min-width: 100%;
        border-radius: 0;
    }
}

.modal-login > i {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg2);
    border-radius: var(--radius);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
}

.modal-login > i:hover {
    background: var(--color1);
    color: var(--text1);
}

.modal-login .e-float > a {
    position: absolute;
    top: 15px;
    right: 15px;
    border-bottom: 1px dotted #20a8d8;
}

.modal-login_lost {
    display: flex;
    align-items: center;
    justify-content: right;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 20px;
    text-align: right;
    text-decoration: underline dotted #20a8d8;
}

.modal-login_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
}

.modal-login_btn > a {
    background: var(--bg3);
}

.modal-login_btn > a:hover {
    opacity: 0.8;
}

/* TOOLTIP */
[data-tooltip] {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -220%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    width: max-content;
    background: black;
    padding: 8px;
    border-radius: 4px;
    color: #fff;
    font-size: 10px;
    text-align: center;
    line-height: normal;
    transition: all 0.3s;
    z-index: 1;
}

[data-tooltip]:hover::before {
    content: " ";
    position: absolute;
    right: 6px;
    bottom: -6px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

[data-tooltip]:hover::after {
    visibility: visible;
    opacity: 1;
}

/* TRADE HOME */
.trade-home {
    display: grid;
    grid-gap: 80px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: max-content;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 60px;
}

@media (max-width: 860px) {
    .trade-home {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
}

.trade-home_content h1 b {
    color: #00BCD4;
}

.trade-home_content > span {
    display: block;
    color: var(--text2);
    margin-bottom: 30px;
}

.trade-home_content > a {
    display: inline-block;
    background: linear-gradient(180deg, #00BCD4, #0e7c8a);
    padding: 15px 20px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: bold;
}

.trade-home > div:last-child {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.trade-home > div:last-child img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
}

.trade-home > div:last-child video {
    position: absolute;
    box-shadow: 0 -20px 0 0 #000, 0 20px 0 0 #000;
    border-radius: 20px;
    top: 19px;
    right: 9%;
    width: 82%;
    height: auto;
    object-fit: contain;
    z-index: -1;
}

/* TRADE TV */
.trade-tv {
    background: var(--bg2);
    padding: 20px 0;
}

.trade-tv > div {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
}

.trade-tv > div > img {
    display: inline-block;
    min-width: 120px;
    width: 120px;
    height: 50px;
    object-fit: contain;
}

@media (max-width: 860px) {
    .trade-tv > div {
        animation: clients 50s linear infinite;
    }

    .trade-tv > div > img {
        min-width: 90px;
        width: 50px;
        height: 50px;
    }
}

@keyframes clients {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translate(-100%);
    }
}

/* ETAPS */
.trad-etaps > ul {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(4, 1fr);
}

.trad-etaps > ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(45deg, #3b3846, #42474d);
    padding: 30px;
    border-radius: var(--radius);
    color: #fff;
    min-height: 400px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .trad-etaps > ul li {
        min-width: 300px;
    }
}

.trad-etaps > ul li:first-child {
    background: linear-gradient(180deg, #00BCD4, #0e7c8a);
    box-shadow: 0 0 20px 0px rgb(81 165 179 / 24%);
}

.trad-etaps > ul li span:first-child {
    display: block;
    color: #c7fffc;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.trad-etaps > ul li h2 {
    margin-bottom: auto;
}

.trad-etaps > ul li span {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

.trad-etaps > ul li a {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    background: #fff;
    border: solid 3px #fff;
    color: #00BCD4;
    padding: 15px 50px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-top: 20px;
    transition: 0.3s;
}

.trad-etaps > ul li a:hover {
    background: transparent;
    border: solid 3px #fff;
    color: #fff;
}

.trad-etaps > ul li a > i {
    color: #ffb700;
    font-size: 12px;
}

/* SHORT ITEM */
.trade-items {
}

.trade-items_head {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.trade-items_head h1 {
    margin-bottom: 0;
}

.trade-items_head a {
    display: inline-block;
    background: var(--light);
    border-radius: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-left: 30px;
}

.trade-items_head a:hover {
    background: var(--color1);
}

.trade-items_shadows {
    position: relative;
    overflow: visible;
}

@media (min-width: 1200px) {
    .trade-items_shadows:before, .trade-items_shadows:after {
        content: "";
        position: absolute;
        width: 32vw;
        height: 100%;
        top: 0;
        left: -30vw;
        background-image: linear-gradient(270deg,rgba(31,33,37,0),var(--bg) 30%);
        z-index: 2;
    }

    .trade-items_shadows:after {
        left: unset;
        right: -30vw;
        background-image: linear-gradient(90deg,rgba(31,33,37,0),var(--bg) 30%);
    }
}

.trade-items > .fal {
    position: absolute;
    top: 50%;
    left: -20px;
    display: inline-block;
    background: var(--light);
    border: 1px solid var(--light2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    z-index: 4;
    cursor: pointer;
}

@media (max-width: 860px) {
    .trade-items > .fal {
        display: none;
    }
}

.trade-items > .fa-chevron-right {
    right: -20px;
    left: auto;
}

.trade-items > .fal:hover {
    background: var(--color1);
}

.trade-items > .swiper-button-disabled {
    display: none;
}

.trade-item {
    position: relative;
    width: 100%;
    padding: 12px 6px 0 12px;
    overflow: hidden;
}

.trade-item_bg {
    width: 100%;
    height: auto;
    aspect-ratio: 9/13;
    margin-bottom: 20px;
    transform: scale(1) translateY(2%);
    transition-duration: 0.5s;
}

.trade-item_bg2 {
    aspect-ratio: 16/9;
}

.trade-item_bg > img {
    border-radius: 8px;
}

.trade-item:hover .trade-item_bg {
    transform: scale(1.04) translateY(0)
}

.trade-item_rating {
    left: -8px;
    top: 8px;
    display: inline-block;
    padding: 4px 9px;
    font-size: 12px;
    border-radius: 4px;
    position: absolute;
    cursor: pointer;
    z-index: 2;
}

.trade-item_bg > .label {
    position: absolute;
    top: 10px;
    right: 10px;
}

.trade-item_age {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 12px;
    font-weight: bold;
    opacity: 0.6;
}

.trade-item_time {
    position: relative;
    background: var(--color1);
    padding: 8px 15px;
    border-radius: 0 0 var(--radius) var(--radius);
    font-size: 12px;
    margin-top: -25px;
    margin-bottom: 10px;
    z-index: 5;
}

.trade-item_content > a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.trade-item_content > a:before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.trade-item_tags {
    opacity: 0.8;
    font-weight: 400;
}

.trade-item_tags .year {
    display: inline-block;
    background: var(--light);
    padding: 3px 5px;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 10px;
}

/* TRADE FULL */
.gradient-wrap {
    position: absolute;
    box-shadow: inset 0px -200px 800px var(--bg);
    inset: -20px;
    height: 120vh;
    opacity: 0.3;
    z-index: -1;
}

@media (max-width: 860px) {
    .gradient-wrap {
        box-shadow: inset 0px -200px 800px var(--bg), inset 0px 500px 800px var(--bg);
    }
}

.trade-full {
    display: grid;
    grid-gap: 50px;
    grid-template-columns: 1fr 500px;
    grid-auto-rows: max-content;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 80px;
}

@media(max-width: 860px) {
    .trade-full {
        grid-template-columns: 1fr;
        grid-gap: 30px;
        margin-top: 0;
        margin-bottom: 50px;
    }
}

.trade-full_head {
    display: none;
}

@media (max-width: 860px) {
    .trade-full_head {
        position: absolute;
        top: 30px;
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 5;
    }
}

.trade-full_head > a {
    background: var(--light);
    backdrop-filter: blur(50px);
    border-radius: var(--radius);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    overflow: hidden;
}

.trade-full_bg {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
}

.trade-full_bg:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(7 5 14 / 20%);
    z-index: 1;
}

@media (max-width: 860px) {
    .trade-full_bg {
        margin: -20px -20px 0;
        width: 100vw;
        aspect-ratio: 16 / 12;
        border-radius: 0;
        margin-bottom: -80px;
        z-index: -1;
    }

    .trade-full_bg:before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(360deg,var(--bg), transparent);
    }
}

.trade-full_bg iframe {
    width: 100%!important;
}

.trade-full_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.trade-full_content .posterlogo {
    height: 100px;
    object-fit: contain;
    margin-bottom: 25px;
}

.trade-full_rating {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
    margin-bottom: 15px;
}

.trade-full_rating li {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.trade-full_rating li span.rating-color {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 6px;
    font-size: 12px;
}

.trade-full_rating li img {
    width: 22px;
    height: auto;
}

.trade-full_tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    margin-bottom: 20px;
    max-width: 90%;
}

.trade-full_tags > span:not(.label) {
    color: #b7b7c3;
    font-size: 14px;
    font-weight: 300;
}

.trade-full_tags span.rating-color {
    padding: 5px 10px;
    border-radius: 50px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
}

.trade-full_minitext, .trade-full_minitext * {
    color: var(--text3);
    font-size: 18px;
    font-weight: 500;
}

.trade-full_soon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
    background: #3b72fa;
    border-radius: var(--radius);
    color: #fff;
    padding: 4px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}

.trade-full_soon a {
    display: inline-block;
    background: #fff;
    color: #3b72fa;
    padding: 8px 20px;
    border-radius: var(--radius);
    font-weight: bold;
}

.trade-full_watch {
}

.trade-full_watch > span {
    display: block;
    color: var(--text2);
    font-size: 14px;
    font-weight: 300;
    margin-top: -20px;
    margin-bottom: 25px;
}

.trade-full_watch > div {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px;
    align-items: center;
}

.trade-full_watch > div a {
    background: var(--light);
    border: 1px solid var(--light);
    backdrop-filter: blur(50px);
    padding: 10px 25px;
    border-radius: var(--radius);
    transition: 0.3s;
}

.trade-full_watch > div a:hover {
    transform: scale(1.08);
}

.trade-full_watch > div img {
    width: 100%;
    height: 20px;
}

.trade-full_link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 15px;
    margin-top: 30px;
}

.trade-full_link > a {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    background: var(--light2);
    padding: 20px 30px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.trade-full_link > a:first-child {
    background: var(--color1);
}

@media (max-width: 860px) {
    .trade-full_link > a:first-child {
        flex: 100%;
    }
}

.trade-full_link > a:nth-child(4)[onclick] {
    width: 57px;
    height: 57px;
    line-height: 57px;
    padding: 0;
}

.trade-full_detal {
    position: relative;
    display: grid;
    grid-auto-rows: max-content;
    grid-gap: 60px;
    grid-template-columns: 60% 1fr;
    margin-bottom: 30px;
}

@media (max-width: 860px) {
    .trade-full_detal {
        grid-template-columns: 1fr;
        grid-gap: 30px;
        border-top: 1px dotted var(--light);
        padding-top: 30px;
    }
}

.trade-full_detal ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    color: var(--text2);
    grid-gap: 30px 60px;
}

.trade-full_detal ul span {
    display: block;
    color: var(--text);
    margin-top: 10px;
}

.trade-rating {
    background: #2d2b37;
    padding: 60px 0;
}

.trade-rating .container {
    display: grid;
    grid-gap: 80px;
    grid-auto-rows: max-content;
    grid-template-columns: 400px 1fr;
}

@media (max-width: 860px) {
    .trade-rating .container {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
}

.trade-rating_head {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    margin-bottom: 30px;
}

.trade-rating_head > b {
    font-size: 35px;
}

.trade-rating_head > div > span {
    color: #8f8f8f;
    font-size: 12px;
}

.trade-rating #commentsadd {
}

/* TRAD RASH */
.trad-rash {
}

.trad-rash h1 img {
    width: auto;
    height: 22px;
}

.trad-rash ul {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 860px) {
    .trad-rash ul {
        grid-template-columns: 1fr;
    }
}

.trad-rash ul div li + li {
    margin-top: 20px;
}

.trad-rash ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg2);
    border-radius: 20px;
    padding: 30px;
    height: 150px;
    font-size: 25px;
    overflow: hidden;
}

.trad-rash ul li:nth-child(1) {
    background-image: linear-gradient(0turn, rgba(1, 111, 213, 1) 0%, rgba(0, 193, 255, 1) 56%, rgba(111, 228, 255, 1) 90%, rgba(174, 240, 255, 1) 100%);
    text-align: center;
}

.trad-rash ul > li {
    background: #fff;
    color: #000;
    padding-right: 350px;
    height: 100%;
}

@media (max-width: 860px) {
    .trad-rash ul > li {
        padding-right: 190px;
        font-size: 16px;
    }
}

.trad-rash ul li div {
    display: block;
}

.trad-rash ul li img {
    position: absolute;
    bottom: auto;
    right: -120px;
    width: 550px;
    height: auto;
}

@media (max-width: 860px) {
    .trad-rash ul li img {
        width: 280px;
        right: -70px;
    }
}

/* TRAD INSTALL */
.trad-ins {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    background: #31565a;
    padding: 60px 1000px;
    margin: 0 -1000px 40px;
}

@media (max-width: 860px) {
    .trad-ins {
        grid-template-columns: 1fr;
    }
}

.trad-ins_title > span {
    display: block;
    color: #afe1e6;
    font-size: 18px;
    margin-top: -10px;
    margin-bottom: 20px;
}

.trad-ins_title > a {
}

.trad-ins > img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin: -60px 0;
}

@media (max-width: 860px) {
    .trad-ins > img {
        order: -1;
        margin: -60px 0 0;
    }
}

.trad-ins_etaps {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    margin-bottom: 40px;
}

@media (max-width: 860px) {
    .trad-ins_etaps {
        grid-template-columns: 1fr;
    }
}

.trad-ins_etaps.active {
    background: #2c2a34;
    padding: 60px 1000px;
    margin: 0 -1000px 40px;
}

.trad-ins_etaps div > span {
    display: inline-block;
    background: var(--color1);
    border: 1px solid var(--color2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.trad-ins_etaps img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    object-fit: cover;
}

.trad-ins_etaps p {
    color: var(--text2);
}

.trad-ins_etaps b {
    color: var(--color2);
}

/* RATING COLOR */
.rating-color {
    background: #3bb33b;
}

.rating-color.low {
    background: #e13535;
}

.rating-color.middle {
    background: #ff6702;
}

/* TRADE SLINK */
.trade-slink {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 6;
}

.trade-slink > span {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 18px;
    cursor: pointer;
}

.trade-slink > span:hover {
    background: var(--color1);
    color: #fff;
}

.trade-slink > div {
    position: absolute;
    right: 0;
    bottom: 100%;
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.3s;
}

.trade-slink.active div {
    visibility: visible;
    opacity: 1;
}

.trade-slink div > a {
    display: block;
    background: #8BC34A;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    text-align: center;
}

.trade-slink div > a:nth-child(2) {
    background: #03A9F4;
}

/* TRAD REFERAL */
.trad-ref {
    display: grid;
    grid-gap: 60px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 860px) {
    .trad-ref {
        grid-template-columns: none;
    }
}

.trad-ref_hello > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.trad-ref_hello > div > a {
    background: var(--color1);
    color: #fff;
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-left: 15px;
}

.trad-ref_hello > div > a:hover {
    background: var(--color2);
}

.trad-ref_my li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 10px;
    justify-content: space-between;
    background: var(--bg2);
    padding: 10px 20px;
    border-radius: var(--radius);
    margin: 10px 0;
}

.trad-ref_my li .label:first-child {
    margin-left: auto;
}

/* LABEL */
.label {
    display: inline-block;
    padding: 5px 10px;
    background: #8BC34A;
    box-shadow: 0px 2px 18px -3px rgb(139 195 74 / 58%);
    border-radius: 50px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.label.blue {
    background: #2e95a3;
    box-shadow: 0px 2px 18px -3px rgb(38 166 197 / 58%);
}

.label.red {
    background: #F44336;
    box-shadow: 0px 2px 18px -3px rgb(244 67 54 / 58%);
}

.label.yellow {
    background: #c3b434;
    box-shadow: 0px 2px 18px -3px rgb(195 180 52 / 58%);
}

/* FOOTER */
footer {
    position: relative;
    background: var(--bg3);
    color: #fff;
    padding: 30px 0;
}

footer .container {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
    grid-template-columns: auto 1fr 150px;
}

@media (max-width: 860px) {
    footer .container {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    display: block;
    margin-bottom: 10px;
}

.footer-dev {
    display: flex;
    grid-gap: 10px;
    color: #81818d;
    font-size: 10px;
}

.footer-soc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 10px;
}

.footer-soc > a {
    display: inline-block;
    background: var(--light);
    color: #a3a7bc;
    border-radius: var(--radius);
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
}

.footer-soc > a:hover {
    background: var(--color1);
    color: var(--text);
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
    color: var(--text2);
}

@media (max-width: 860px) {
    .footer-menu {
        justify-content: left;
    }
}
