﻿/*!
Theme Name: InvestCoin
*/
@import url('../../../css2');

body {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    background-color: #020614;
    /*background-image: url("./assets/images/body.png");*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    /*background-position: center;*/
    color: #fff;
}

main {
    flex-grow: 1;
}

a {
    text-decoration: none;
    color: #fff;
}

ul, li {
    list-style: none;
}

.container {
    max-width: -webkit-fill-available;
    width: 100%;
    margin: 0 20px 0 110px;
}

/*upp header*/
.main_content {
    width: 1900px;
}

header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-end-end-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 5px 18px;
}

.home {
    display: flex;
    align-items: center;
    gap: 12px;
}

.links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home > p {
    text-transform: uppercase;
}

.youtube_img {
    scale: .7;
    width: 42px;
    height: 34px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url("assets/images/youtube.svg");
}

.tag-404 {
    margin-top: 32px;
    font-size: 20px;
}

.tg_img {
    scale: .7;

    width: 40px;
    height: 37px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url("assets/images/tg.svg");
}

.youtube_img:hover {
    /*will-change: icon ;*/
}

/*left nav*/
.sidebar {
    width: 90px;
    background-color: rgba(255, 255, 255, 0.05);

    /*background-image: url("./assets/images/nav.png");*/
    /*background-repeat: no-repeat;*/
    /*background-position: center;*/
    height: 100vh;
    border-bottom-right-radius: 20px;
    position: fixed;
    top: 0;
    left: 0;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 1000;

}

.sidebar-nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-nav ul {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    list-style: none;
    padding: 0;
    position: relative;
}

.logo a img {
    width: 48px;
    border-radius: 100%;
}

.nav_links, .account_links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.nav_links li, .account_links li {
    position: relative;
}

.nav_links li span, .account_links li span {
    width: 90px;
    font-size: 12px;
    position: absolute;
    display: block;
    opacity: 0;
    transform: translateX(20px);
}

.nav_links li a:hover ~ span, .account_links li a:hover ~ span {
    animation: appear 0.6s forwards;
    font-size: 12px;

}

.auth_text {
    position: absolute;
    display: none;
}

.account_links li a:hover .auth_text {
    border-radius: 8px;
    display: inline;
    left: calc(100% + 5px);
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background-color: rgba(150, 46, 255, 0.8);
    font-size: 12px;
    padding: 8px 12px;
}

@keyframes appear {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*main*/
.container-2 {
    display: flex;
    gap: 20px;
}

/*news*/
.news_list {
    margin-top: 20px;
    display: grid;
    gap: 20px;
    grid-auto-flow: column;
    height: 432px;
    grid-template-columns: repeat(3, 1fr);
    /* Новые стили для сохранения структуры */
    min-height: 432px; /* Фиксированная высота */
    position: relative; /* Для псевдоэлемента */
}


.big_news, .mini_news {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.big_news {
    height: 432px;
}

.big_news:hover .big_news-link {
    opacity: .6;
}

.big_news-header, .mini_news-header {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px 12px;
}

.big_news-header img, .mini_news-header img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.big_news-header p, .mini_news-header p {
    font-size: 14px;

}

.big_news-title, .mini_news-title {
    font-weight: 500;
    font-size: 16px;
    padding: 16px 12px;
    z-index: 3;
}

.mini_news-title {
    margin: 0;
    padding: 0 12px;
}

.big_news-link, .mini_news-link {
    display: block;
    text-align: right;
    position: relative;
    transition: all .3s ease-in-out;
    opacity: 1;
    margin-bottom: 16px;
    z-index: 6;
    margin-top: 10px;
}

.big_news-link::after, .mini_news-link::after {
    content: url(assets/images/arrow.svg);
    margin-top: 5px;
    margin-left: 5px;
}

.mini_news_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news_text-content {
    z-index: 3;
    padding: 16px 12px;
}

.mini_news:first-child {
    background-color: #B999EC;
}

/*bots table*/
.date {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    align-items: flex-start;
}

.date_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.bot {
    flex: 1;
    margin-top: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 16px;
}

.profit-table {
    overflow: hidden;
}

.profit-table table {
    width: 100%;
    border-collapse: collapse;
}

.profit-table th {
    padding: 16px 0 16px 0;
    color: #DFCFF9;
    font-size: 10px;
    text-align: center;
}

.profit-table th:first-child, .profit-table td:first-child {
    text-align: left;
}

.profit-table th:last-child, .profit-table td:last-child {
    text-align: right;
}

.violet {
    color: rgba(255, 255, 255, 0.6);
}

.profit-table td {
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
}

.profit-table tr:last-child td {
    border-bottom: none;
}

.profit-up .arrow {
    color: #27ae60;
    font-weight: bold;
}

.profit-down .arrow {
    color: #e74c3c;
}

.arrow {
    margin-left: 5px;
    font-size: 0.9em;
}

/*calculator*/
.calc {
    display: flex;
    gap: 20px;
    width: 100%;
}

.calculator {
    flex: 1;
    margin-top: 16px;
    padding: 16px;
    gap: 6px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.05);
}

.calculator-content::before {
    content: url("assets/images/calc.svg");
    display: block;

}

.calculator-content {
    border-radius: 12px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.calculator-content:hover {
    background-color: rgba(120, 115, 225, 0.4);
}

.bonus_list-item:hover {
    background-color: rgba(120, 115, 225, 0.4);
}

.calculator-content:last-child {
    margin-bottom: 0;
}

/*birge*/
.birge {
    width: 98%;
    padding: 16px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.05);
}


@media (min-width: 1450px) and (max-width: 1580px) {
    .birge {
        width: 1000px;
    }
}

@media (min-width: 1580px) {
    .birge {
        width: 1200px;
    }
}

.title_birge {
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title_birge-text {
    position: relative;
}

.title_birge-text h2 {
    position: relative;
    font-weight: 600;
    font-size: 24px;
    z-index: 3;
    margin-top: 20px;
}

.title_birge-text img {
    position: absolute;
    left: 26px;
    top: -20px;
}

.title_birge-desc {
    font-weight: 500;
    font-size: 14px;
    margin-top: 20px;
}

.birge_slide {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 24px;
    display: flex;
    gap: 16px;
}

.birge_slide-info {
    display: flex;
    flex-direction: column;
}

.birge_slide-info p {
    font-size: 12px;
    font-weight: 500;
    margin: 2px;
}


.birge_slide-info > div {
    flex-direction: column;
    display: flex;
}

.birge_slide-info-other > div {
    margin-top: 24px;
    flex-direction: column;
    gap: 3px !important;
}

.birge_slide-info-other > div > p {
    font-weight: 400;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.birge_slider {
    gap: 16px;
    display: grid;
    grid-auto-flow: column;
}


/*sidebar-2*/
.top_news {
    margin-top: 20px;
    padding: 16px 12px 30px 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.author {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.author > img {
    border-radius: 12px;
    width: 48px;
    height: 48px;
}

.author_info p {
    margin: 0;
}

.author_info p:first-child {
    font-size: 14px;
    font-weight: 500;
}

.author_info p:last-child {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.top_news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top_news-block {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    transition: all .3s ease-in-out;
}

.top_news-block:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.top_news-block img {
    border-radius: 12px;
    width: 50%;
    height: 100%;
}

.top_news-block-text {
    text-align: start
}

.top_news-block-text > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 400;
    text-align: start;
}

.top_news-block-text > h4 {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
}

.top_news a {
    text-align: right;
    color: rgba(255, 255, 255, 0.6);
}

/*bonus*/
.bonus {
    margin-top: 24px;
    padding: 16px 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}


.bonus_list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bonus_list-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px;
    display: flex;
    gap: 12px;
    align-items: center;
    border-radius: 12px;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.bonus_list-item > p {
    font-size: 12px;
    font-weight: 400;
}

.header-mob, .menu-mob, .main-mob, .container-mob {
    display: none;
}

.birge_slider-container.swiper {
    width: 100%;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Обертка слайдов */
.birge_slider.swiper-wrapper {
    gap: 16px;
    display: grid;
    grid-auto-flow: column;
}

.birge_slide.swiper-slide:first-child {
    margin-left: 0 !important;
}

/* Индивидуальные слайды */
.birge_slide.swiper-slide {
    width: auto !important; /* Отключаем фиксированную ширину от Swiper */
    flex-shrink: 0; /* Запрещаем сжатие */
    height: auto;
    /* Ваши оригинальные стили */
    background-color: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 24px;
    display: flex;
    gap: 16px;
}

.auth-mob {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-mob_up {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.auth-mob_up > img {
    height: 60px;
    width: fit-content;
}

.auth-mob_up > ul {
    padding: 0;
}

.auth-mob_up > ul > li {
    font-size: 14px;
    margin-top: 8px;
}

.auth-mob_up > .title-mob {
    text-align: start;
}

.auth-mob_up > .title-mob > h1 {
    font-size: 20px;
}

.auth-mob_up > a {
    text-align: end;
    display: flex;
    gap: 4px;
    justify-content: end;
    align-items: center;
    font-size: 12px;
}

.auth-mob_up > a::after {
    content: url("assets/images/arrow.svg");
}

.auth-mob_down {
    margin-top: 100px;
    text-align: center;
}

.auth-mob_down > p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.auth-mob_down > p > a {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.8);
}

.dictionary-list {
    columns: 2;
    gap: 16px;
    margin-top: 24px;
    grid-auto-flow: dense;
    align-items: start;
}

.dictionary-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 12px;
    break-inside: avoid-column;
    margin-bottom: 12px;
}

.dictionary-item_header {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.definition-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.definition-header > span {
    font-size: 14px;
    font-weight: 500;
}

.definition-header {
    font-size: 14px;
    margin-bottom: 8px;
}

.definition {
    font-size: 12px;
    line-height: 1.4;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    border-radius: 24px;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.faq-item > img {
    position: absolute;
    top: -20px;
    border-radius: 50%;
    right: 24px;
    width: 64px;
    height: 64px;
}

.faq-item > span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.faq-item > h6 {
    font-size: 20px;
    margin: 0;
}

.faq-item > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.faq-footer {
    display: flex;
    gap: 8px;
    align-items: center;
}

.faq-footer > a:first-child > img {
    width: 18px;
    height: 18px;
}

.faq-footer > a:last-child > img {
    width: 18px;
    height: 18px;
}


.dictionary-filter {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

.filter-letters {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-letter {
    padding: 4px 12px;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(.6);
}

.filter-letter:hover {
    background: rgba(255, 255, 255, 0.2);
}

.filter-letter.active {
    background: rgba(162, 80, 241, 1);
}

.dictionary-item {
    display: none;
}

.dictionary-item.show {
    display: block;
}

.auth-message {
    padding: 10px;
    border-radius: 4px;
    margin-top: 15px;
    display: none;
}

.auth-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.auth-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.event-like-button {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
}
.share-button, .share-button2 {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.share-dropdown {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 100;
    padding: 10px;
    border-radius: 4px;
}

.share-dropdown a {
    display: block;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
}

.share-dropdown a:hover {
    background: #f5f5f5;
}





/* Стили для крестика */
.wp-image-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    font-size: 24px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    z-index: 999999;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    text-decoration: none;
}
.wp-image-close-btn:hover {
    background: #000;
    color: #fff;
}

.post-item_text > div > p, .post-item_text > div > ol, .post-item_text > div > ol > li, .post-item_text > div > ul > li, .post-item_text > div > ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

.post-item_text > div > p, .post-item_text > p {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-item_text > div > ul, .post-item_text > div > ol, .post-item_text  > ul, .post-item_text > ol  {
    margin-left: -30px;
}

.post-item_text > div > ul > li > a, .post-item_text > div > ol > li > a, .post-item_text  > ul > li > a, .post-item_text > ol > li > a  {
    margin-top: 20px;
}




/* Стили для попапа */
.custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-popup {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.custom-popup-overlay.active .custom-popup {
    transform: translateY(0);
}

.popup-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-icon.success {
    background-color: #4CAF50;
    display: none;
}

.popup-icon.error {
    background-color: #F44336;
    display: none;
}

.popup-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.popup-content {
    margin-bottom: 25px;
}

.popup-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.popup-message {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.popup-close-btn {
    background-color: rgba(162, 80, 241, 1);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.popup-close-btn:hover {
    background-color: rgb(154, 65, 237);
}





.best-crypto {
    margin: 0 auto;
    height: auto;
}

.best-crypto__content {
    width: 100%;
    margin-top: 50px;
}

.crypto__content-item {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.5);
    margin: 30px 0 30px 0;
    padding-bottom: 15px;
    border-radius: 5px;
    padding-top: 15px;
}

.item-left {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.crypto-name {
    display: flex;
    align-items: center;
    margin-left: 34px;
}

.crypto-name img {
    width: 54px;
    height: 54px;
    border-radius: 13px 13px 13px 13px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.39);
    margin: 0 18px 0 28px;
}

.number-item {
    font-family: "Montserrat", Sans-serif;
    font-size: 25px;
    font-weight: 600;
}

.item-name {
    font-family: "Montserrat", Sans-serif;
    font-size: 25px;
    font-weight: 600;
}

.crypto-raiting {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.score {
    display: flex;
    align-items: center;
    position: relative;
}

.score p {
    margin-right: 8px;
}

.item-star {
    width: 10px;
    height: 12px;
    font-size: inherit;
    font-family: inherit;
    background-color: #f0ad4e;
    margin-left: 3px;
    -webkit-clip-path: polygon(50% 0%, 66% 27%, 98% 35%, 76% 57%, 79% 91%, 50% 78%, 21% 91%, 24% 57%, 2% 35%, 32% 27%);
    clip-path: polygon(50% 0%, 66% 27%, 98% 35%, 76% 57%, 79% 91%, 50% 78%, 21% 91%, 24% 57%, 2% 35%, 32% 27%);
}

.item-star:last-child {
    width: 10px;
    height: 12px;
    font-size: inherit;
    font-family: inherit;
    background-color: #f0ad4e;
    margin-left: 3px;
    -webkit-clip-path: polygon(50% 0, 61% 35%, 61% 40%, 62% 54%, 65% 88%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    clip-path: polygon(50% 0, 61% 35%, 61% 40%, 62% 54%, 65% 88%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.item-star-bit-get {
    width: 10px;
    height: 12px;
    font-size: inherit;
    font-family: inherit;
    background-color: #f0ad4e;
    margin-left: 3px;
    -webkit-clip-path: polygon(50% 0%, 66% 27%, 98% 35%, 76% 57%, 79% 91%, 50% 78%, 21% 91%, 24% 57%, 2% 35%, 32% 27%);
    clip-path: polygon(50% 0%, 66% 27%, 98% 35%, 76% 57%, 79% 91%, 50% 78%, 21% 91%, 24% 57%, 2% 35%, 32% 27%);
}

.item-star-bit-get:last-child {
    width: 10px;
    height: 12px;
    font-size: inherit;
    font-family: inherit;
    background-color: #f0ad4e;
    margin-left: 3px;
    -webkit-clip-path: polygon(50% 0, 61% 35%, 61% 40%, 62% 54%, 65% 88%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    clip-path: polygon(50% 0, 61% 35%, 61% 40%, 62% 54%, 65% 88%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.item-star-mexc {
    width: 10px;
    height: 12px;
    font-size: inherit;
    font-family: inherit;
    background-color: #f0ad4e;
    margin-left: 3px;
    -webkit-clip-path: polygon(50% 0%, 66% 27%, 98% 35%, 76% 57%, 79% 91%, 50% 78%, 21% 91%, 24% 57%, 2% 35%, 32% 27%);
    clip-path: polygon(50% 0%, 66% 27%, 98% 35%, 76% 57%, 79% 91%, 50% 78%, 21% 91%, 24% 57%, 2% 35%, 32% 27%);
}

.item-star-mexc:last-child {
    -webkit-clip-path: polygon(50% 0, 52% 34%, 53% 45%, 54% 54%, 51% 65%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    clip-path: polygon(50% 0, 52% 34%, 53% 45%, 54% 54%, 51% 65%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.item-star-okx {
    width: 10px;
    height: 12px;
    font-size: inherit;
    font-family: inherit;
    background-color: #f0ad4e;
    margin-left: 3px;
    -webkit-clip-path: polygon(50% 0%, 66% 27%, 98% 35%, 76% 57%, 79% 91%, 50% 78%, 21% 91%, 24% 57%, 2% 35%, 32% 27%);
    clip-path: polygon(50% 0%, 66% 27%, 98% 35%, 76% 57%, 79% 91%, 50% 78%, 21% 91%, 24% 57%, 2% 35%, 32% 27%);
}

.item-star-okx:last-child {
    -webkit-clip-path: polygon(50% 0, 52% 34%, 53% 45%, 54% 54%, 51% 65%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    clip-path: polygon(50% 0, 52% 34%, 53% 45%, 54% 54%, 51% 65%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.item-star-huobi {
    width: 10px;
    height: 12px;
    font-size: inherit;
    font-family: inherit;
    background-color: #f0ad4e;
    margin-left: 3px;
    -webkit-clip-path: polygon(50% 0%, 66% 27%, 98% 35%, 76% 57%, 79% 91%, 50% 78%, 21% 91%, 24% 57%, 2% 35%, 32% 27%);
    clip-path: polygon(50% 0%, 66% 27%, 98% 35%, 76% 57%, 79% 91%, 50% 78%, 21% 91%, 24% 57%, 2% 35%, 32% 27%);
}

.item-star-huobi:last-child {
    -webkit-clip-path: polygon(50% 0, 52% 34%, 53% 45%, 54% 54%, 51% 65%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    clip-path: polygon(50% 0, 52% 34%, 53% 45%, 54% 54%, 51% 65%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.item-star-kucoin {
    width: 10px;
    height: 12px;
    font-size: inherit;
    font-family: inherit;
    background-color: #f0ad4e;
    margin-left: 3px;
    -webkit-clip-path: polygon(50% 0%, 66% 27%, 98% 35%, 76% 57%, 79% 91%, 50% 78%, 21% 91%, 24% 57%, 2% 35%, 32% 27%);
    clip-path: polygon(50% 0%, 66% 27%, 98% 35%, 76% 57%, 79% 91%, 50% 78%, 21% 91%, 24% 57%, 2% 35%, 32% 27%);
}

.item-star-kucoin:last-child {
    -webkit-clip-path: polygon(50% 0, 52% 34%, 53% 45%, 54% 54%, 51% 65%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    clip-path: polygon(50% 0, 52% 34%, 53% 45%, 54% 54%, 51% 65%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.item-star-gate {
    width: 10px;
    height: 12px;
    font-size: inherit;
    font-family: inherit;
    background-color: #f0ad4e;
    margin-left: 3px;
    -webkit-clip-path: polygon(50% 0%, 66% 27%, 98% 35%, 76% 57%, 79% 91%, 50% 78%, 21% 91%, 24% 57%, 2% 35%, 32% 27%);
    clip-path: polygon(50% 0%, 66% 27%, 98% 35%, 76% 57%, 79% 91%, 50% 78%, 21% 91%, 24% 57%, 2% 35%, 32% 27%);
}

.item-star-gate:last-child {
    -webkit-clip-path: polygon(50% 0, 52% 34%, 53% 45%, 54% 54%, 51% 65%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    clip-path: polygon(50% 0, 52% 34%, 53% 45%, 54% 54%, 51% 65%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.crypto__info {
    max-width: 1140px;
    display: flex;
    align-items: center;
}

.info__left {
    display: flex;
    flex-direction: column;
    width: 95%;
}

.info__left hr {
    margin-left: 20px;
    width: 100%;
    background-color: #fff;
}

.info__item {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    padding-bottom: 5px;
    margin-top: 10px;
    margin-left: 20px;
}

/*.info__item p {*/
/*    position: absolute;*/
/*    left: 55%;*/
/*    width: 50%;*/
/*    font-weight: 600;*/
/*    align-self: center;*/
/*}*/
.info__item > div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.info__item > div > svg {
    margin-right: 10px;
    margin-left: 10px;
}

.item-right {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.item-button {
    width: 530px;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #26A738;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 20px 0px #26a738;
    height: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.item-button svg {
    position: absolute;
    right: 40px;
}

.go__site {
    display: flex;
    justify-content: center;
}

.go__site .go__site-text {
    display: inline-block;
    font-weight: 600;
    font-family: "Montserrat", Sans-serif;
}

.go__site .item-right-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.limit__info {
    display: flex;
    max-width: 1140px;
    align-items: center;
    justify-content: center;
}

.limit__info span {
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
}

.limit__info-left {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin-top: 30px;
    row-gap: 10px;
}

.limit__info-left span {
    display: flex;
    align-items: center;
}

.limit__info-left span svg {
    margin-right: 10px;
    flex: 0 0 auto;
    width: 14px;
}

.limit__info-right {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin-top: 30px;
    row-gap: 10px;
}

.limit__info-right span {
    display: flex;
    align-items: center;
}

.limit__info-right span svg {
    margin: 0 10px 0 10px;
    width: 14px;
}

.ru-limit {
    text-align: center;
    margin-top: 15px;
    font-family: "Montserrat", Sans-serif;
}

.ru-limit .ru {
    font-weight: bold;
}

@media (max-width: 1200px) {
    .crypto__content-item {
        align-items: center;
        justify-content: center;
        max-width: 870px;
    }

    .limit__info-left svg {
        width: 14px;
        padding: 0;
    }

    .best-crypto {
        display: flex;
    }

    .ru-limit {
        display: flex;
        flex-direction: column;
        row-gap: 5px;
        align-items: center;
    }

    .item-button {
        max-width: 415px;
    }

    .info__item p {
        left: 60%;
        width: 35%;
    }
}

@media (max-width: 990px) {
    .crypto__content-item {
        align-items: center;
        justify-content: center;
    }

    .item-right {
        width: 70%;
    }

    .ru-limit {
        display: flex;
        flex-direction: column;
        row-gap: 5px;
        align-items: center;
        flex-wrap: wrap;
    }

    .item-button {
        max-width: 355px;
    }
}

@media (max-width: 830px) {
    .crypto__content-item {
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .item-right {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .ru-limit {
        display: flex;
        flex-direction: column;
        row-gap: 5px;
        align-items: center;
        flex-wrap: wrap;
    }

    .item-button {
        max-width: 355px;
    }
}

@media (max-width: 415px) {
    .info__item span {
        display: flex;
        flex-wrap: wrap;
        white-space: pre-line;
    }

    .info__item p {
        left: 70%;
        width: 25%;
        font-size: 16px;
    }

    .item-button {
        max-width: 300px;
    }
}
/*адаптив*/
@media screen and (max-width: 1450px) {
    .main_content {
        width: 800px;
    }
}

@media screen and (max-width: 1100px) {
    body {
        position: relative;
    }

    .main_content {
        width: 100%;
    }

    .dictionary-filter {
        background-color: transparent;
    }

    .dictionary-list {
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(1, 1fr);

    }

    .header-mob {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }



    .header-mob > .logo > img {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    aside {
        display: none;
    }

    .menu-mob, .info-post_mob {
        z-index: 10000;
        display: flex;
        justify-content: space-between;
        background-color: #0F1320;
        gap: 50px;
        position: fixed;
        width: 800px;
        bottom: 0;
        padding: 10px;
        border-radius: 12px;
        margin: 0;
        left: 50%;
        transform: translate(-50%, 0%);
    }

    .info-post_mob {
        display: block;
        width: -webkit-fill-available;
        bottom: 70px;
        left: 0;
        transform: translate(0%, 0%);
    }

    .info-post_mob > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .container-mob, .container  {
        display: block;
        max-width: 800px;
        width: 100%;
        padding: 60px 20px 0 20px;
        position: relative;
        margin: 0 auto;
    }

    header, .close-header {
        display: none; !important;
    }

    .bots-filter {
        align-items: start;
    }

    .bots-filter_active {
        margin-left: -20px;
    }

    .menu-mob > li > a {
        display: flex;
        flex-direction: column;
        gap: 4px;
        justify-content: center;
        align-items: center;
    }

    .menu-mob > li > a > img {
        width: 24px;
        height: 24px;
    }

    .menu-mob > li > a > span {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.6);
    }

    .active-page {
        color: #fff;
    }

    main {
        display: none;
    }

    .main-mob {
        display: flex;
        flex-direction: column;
        gap: 44px;
    }

    .title-mob {
        text-align: center;
    }

    .title-mob > h2 {
        font-size: 20px;
        font-weight: 500;
    }

    .title-mob > p {
        font-size: 14px;
    }

    .title-mob > a {
        font-size: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .title-mob > a::after, .slide-mob > a::after {
        content: url("assets/images/arrow.svg");
        margin-top: 5px;
        margin-left: 6px;
    }

    .after-remove::after {
        content: '';
    }

    .slide-mob {
        margin-top: 16px;
        margin-bottom: 74px;
        display: flex;
        flex-direction: column;
        gap: 24px;
        background-color: rgba(255, 255, 255, 0.05);
        padding: 12px 16px;
        border: 1px solid rgba(156, 92, 237, 0.35);
        border-radius: 12px;
    }

    .slide-mob > span {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        background-color: rgba(94, 1, 212, 0.28);
        padding: 7px 12px;
        width: 84px;
        border-radius: 4px;
    }

    .slide-mob > p {
        font-size: 14px;
        font-weight: 600;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .slide-mob > a {
        font-size: 10px;
        text-transform: uppercase;
        font-weight: 500;
        display: flex;
        justify-content: left;
        align-items: center;
    }

    .slide-mob.swiper-slide {
        width: 320px;
    }

    .tagged-posts-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-list {
        grid-template-columns: repeat(2, 1fr);
    }



}

@media screen and (max-width: 860px) {
    .menu-mob {

        width: 100%;
    }

    .container-mob, .container {
        max-width: 350px;
        padding: 60px 0px 0 0px;
    }

    header, .close-header {
        display: none; !important;
    }

    .tagged-posts-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .instructions_images, .instructions_image {
        margin-top: 32px;
        margin-bottom: 32px;
    }



    .faq-list {
        grid-template-columns: repeat(1, 1fr);
    }

}