.status-label {
    padding: 8px 10px; /* Увеличенный отступ */
    border-radius: 6px; /* Более плавные углы */
    min-width: 75px; /* Увеличенная минимальная ширина */
    text-align: center;
    font-weight: 700; /* Более жирный текст */
    font-size: 14px; /* Увеличенный размер шрифта */
    line-height: 1.2;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15); /* Легкая тень для объема */
}

/* Стили для ПК-версии (ширина экрана от 768px и больше) */
@media (min-width: 768px) {


    .rate-table__td {
        display: flex;
        align-items: center; /* Центрирование по вертикали для всех ячеек */
    }

    /* Столбцы с фиксированной шириной */
    .rate-table__td:nth-child(3),
    .rate-table__th:nth-child(3) {
        flex: 0 0 17%;
    }

    .rate-table__td:nth-child(4),
    .rate-table__th:nth-child(4) {
        flex: 0 0 17%;
    }

    .rate-table__td:nth-child(5),
    .rate-table__th:nth-child(5) {
        flex: 0 0 14%;
        justify-content: center; /* Центрирование по горизонтали для столбца "Оборот" */
    }

    .rate-table__td:nth-child(6),
    .rate-table__th:nth-child(6) {
        flex: 0 0 16%;
        justify-content: center; /* Центрирование по горизонтали для столбца "Депозит" */
    }



}

/* Стили для мобильной версии (ширина экрана до 767px) */
@media (max-width: 767px) {
    .rate-table__td, .rate-table__th {
        display: block; /* Отключаем Flexbox, позволяя контенту адаптироваться */
        width: 100%; /* Ячейки занимают всю ширину */
    }

    .compact-style .rate-table__th:first-child, .compact-style .rate-table__td:first-child {
        padding-right: 0 !important;
    }
}


/* Стили только для новых элементов с классом compact-style */
.compact-style .rate-table__th:first-child,
.compact-style .rate-table__td:first-child {
    padding-left: 15px;
    padding-right: 15px;
    flex: 0 0 40px;
}


/* Общий стиль для неонового бейджа */
.neon-badge {
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    gap: 6px;
    border-radius: 8px;
    color: #ffffff; /* Белый текст по умолчанию */
}


/* Цветовые тени для иконки */

/* Бирюзовая тень */
.icon-turquoise {
}

/* Розовая тень */
.icon-pink {
    filter: drop-shadow(0 0 1px #ff00ff) drop-shadow(0 0 5px rgba(255, 0, 255, 0.5));
}

/* Фиолетовая тень */
.icon-purple {
    filter: drop-shadow(0 0 1px #bb00ff) drop-shadow(0 0 5px rgba(187, 0, 255, 0.5));
}

/* Жёлтая тень */
.icon-yellow {
    filter: drop-shadow(0 0 1px #ccff00) drop-shadow(0 0 5px rgba(204, 255, 0, 0.5));
}

/* Синяя тень */
.icon-blue {
}

/* Цветовые классы */

/* Бирюзовый */
.neon-turquoise {
   // color: #00ffda;
   // background-color: rgba(0, 233, 123, 0.15);
   // box-shadow: 0 0 1px #00ffda, 0 0 15px rgba(0, 255, 218, 0.5);
}

/* Розовый */
.neon-pink {
    color: #ff00ff;
    background-color: rgba(255, 0, 255, 0.15);
    box-shadow: 0 0 1px #ff00ff, 0 0 15px rgba(255, 0, 255, 0.5);
}

/* Фиолетовый */
.neon-purple {
    color: #bb00ff;
    background-color: rgba(187, 0, 255, 0.15);
    box-shadow: 0 0 1px #bb00ff, 0 0 15px rgba(187, 0, 255, 0.5);
}

/* Лимонно-жёлтый */
.neon-yellow {
    color: #ccff00;
    background-color: rgba(204, 255, 0, 0.15);
    box-shadow: 0 0 1px #ccff00, 0 0 15px rgba(204, 255, 0, 0.5);
}

/* Электрический синий */
.neon-blue {
    //color: #00aaff;
    //background-color: rgba(0, 170, 255, 0.15);
    //box-shadow: 0 0 1px #00aaff, 0 0 15px rgba(0, 170, 255, 0.5);
}



@keyframes rotateAnimation {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

img.rotate {
    animation: rotateAnimation 4s linear infinite;
}

/* @media {
  .hide-on-mobile {
      display: none !important;
  }
} */

@media only screen and (max-width: 768px) {
    .sidebar-banner.sidebar__banner {
        display: none;
    }
}

@media (max-width: 1600px) {
  .container {
    max-width: 1380px;
  }

  .rate-table__th:first-child,
  .rate-table__td:first-child {
    padding-left: 20px;
    flex: 0 0 135px;
  }

  .rate-table__th:nth-child(3),
  .rate-table__td:nth-child(3) {
    flex: 0 0 17%;
  }

  .popup__search-city {
    width: 1020px;
  }

  .blogmain ul > li {
    margin-left: 30px;
  }

  .blogmain ol > li {
    margin-left: 0px;
  }
}

@media (max-width: 1180px) {
    .container {
        max-width: 100%;
    }
}


@media (max-width: 1400px) {
  .container {
    max-width: 1300px;
  }

  .rate-table__th:nth-child(2), .rate-table__td:nth-child(2) {
          flex: 0 0 27%;
      }

  .rate-table__tr:not(:first-child) {
          border-top: 1px solid var(--color-gray);
  }

  .rate-table__tr:not(:first-child) .rate-table__td {
          border-top: none;
  }
  .rate-table__td{
    flex: 0 0 15%;
  }

  .rate-table__th {
      border-bottom: none;
  }

  .rate-table__head:first-child {
      border-bottom: 2px solid var(--color-gray);
  }

  .rate-table__tr:not(:first-child) {
          border-top: 1px solid var(--color-gray);
  }


  .article-card__info--short {
    max-width: 100%;
  }

  .article-card__img {
    bottom: -45px;
  }

  .rate-table__th:first-child,
  .rate-table__td:first-child {
    padding-left: 15px;
    flex: 0 0 115px;
  }

  .rate-table__th:nth-child(3),
  .rate-table__td:nth-child(3) {
    // flex-basis: 16%;
  }

  .rate-table__th:last-child,
  .rate-table__td:last-child {
    // flex-basis: 90px;
  }

  .popup__search-city {
    width: 880px;
  }

  .popup__content {
    padding: 38px;
  }

  .search-city__header {
    margin-bottom: 30px;
  }

  .search-city__field {
    margin-bottom: 23px;
  }

  .blogmain ul > li {
    margin-left: 30px;
  }

  .blogmain ol > li {
    margin-left: 0px;
  }
}

@media (max-width: 1240px) {
  .container {
    max-width: 100%;
  }

  .header__count {
      display: none;
  }

.menu__toggle-wrapper {
    /* width: 24px;*/
  }

  .header__menu{
  margin-left: 30px;
      font-size: 11pt;
  }

  .btn {
    font-size: 18px;
  }

  .title1 {
    font-size: 44px;
  }

  .title2 {
    font-size: 34px;
  }

  .title3 {
    font-size: 30px;
  }

  .title4 {
    font-size: 22px;
  }

  .title5 {
    font-size: 18px;
  }

  .text--big {
    font-size: 18px;
  }

  .checkbox-smile__switch {
    padding: 12.5px;
  }

  .checkbox-smile__switch svg {
    width: 30px;
    height: 30px;
  }

  .logo {
    font-size: 20px;
  }

  .choose-city__text {
    font-size: 16px;
  }

  .choose-city__item-value {
    font-size: 16px;
  }

  .choose-city__btn {
    font-size: 16px;
  }

  .main {
    padding: 140px 0 100px;
  }

  .main__callback {
    margin-top: 80px;
  }

  .catalog__sidebar {
    margin-right: 30px;
    flex-basis: 320px;
  }

  .sidebar {
    padding-top: 26px;
  }

  .sidebar__title {
    margin-bottom: 18px;
  }

  .sidebar__searches-item:not(:first-child) {
    margin-left: 18px;
  }

  .sidebar-wallets__list-title {
    font-size: 16px;
  }

  .article-card__info--short {
    max-width: 410px;
  }

  .article-card__text {
    margin-top: 20px;
  }

  .article-card__btn {
    margin-top: 26px;
  }

  .article-card__img {
    position: absolute;
    bottom: -28px;
    right: -31px;
  }

  .exchange-table th {
    font-size: 18px;
  }

  .exchange-table th:first-child,
  .exchange-table td:first-child {
    width: 235px;
  }

  .rate-table__th,
  .rate-table__td {
    font-size: 14px;
  }

  .rate-table__th:first-child,
  .rate-table__td:first-child {
    padding-left: 12px;
    flex-basis: 100px;
  }

  .rate-table__th:last-child,
  .rate-table__td:last-child {
    flex-basis: 17%;
  }

  .exchange__main-head {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .exchange__ps {
    margin-top: 22px;
    font-size: 15px;
  }

  .callback__text {
    margin-top: 26px;
    font-size: 22px;
  }

  .callback__btn {
    margin-top: 32px;
  }

  .popup__content {
    padding: 40px;
  }

  .popup__close {
    right: 40px;
    top: 40px;
  }

  .search-city__header {
    margin-bottom: 40px;
  }

  .search-city__text {
    margin-top: 20px;
  }

  .search-city__btns {
    max-height: 341px;
  }

  .search-city__btn {
    padding: 12px 18px;
  }

  .search-city__arrow {
    margin: 0 50px;
    width: 34px;
  }

  .product__content {
    padding: 45px;
  }

  .product__back {
    margin-bottom: 24px;
  }

  .product__info--meta:not(:first-child) {
    margin-left: 60px;
  }

  .product__name-icon {
    margin-left: 15px;
    width: 26px;
    height: 26px;
  }

  .product__label {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .product__meta {
    margin-right: 65px;
  }

  .product__reviews {
    margin-top: 40px;
  }

  .reviews__create {
    font-size: 15px;
  }

  .reviews__create img {
    width: 18px;
    height: 18px;
  }

  .reviews__btn {
    font-size: 15px;
  }

  .reviews__sort-btn {
    font-size: 15px;
  }

  .reviews__pagination {
    margin-top: 50px;
  }

  .form-field__label {
    margin-bottom: 10px;
  }

  .form-field__input {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 18px;
  }

  .form__title {
    margin-bottom: 25px;
  }

  .blogmain ul > li {
    margin-left: 30px;
  }

  .blogmain ol > li {
    margin-left: 0px;
  }

}

@media (max-width: 1100px) {
    .rate-table__th:nth-child(2), .rate-table__td:nth-child(2) {
        word-break: break-all;
        flex: 0 0 20%;
        white-space: normal;
    }
}

@media (max-width: 991px) {
  .title1 {
    font-size: 36px;
  }

  div.scrollbar-track {
    width: 6px;
  }

  div.scrollbar-track .scrollbar-thumb {
    width: 6px;
  }

  .main__callback {
    margin-top: 70px;
  }

  .catalog__content {
    flex-direction: column-reverse;
    display: flex;
  }

  .catalog__sidebar {
    margin-right: 0;
    flex: auto;
    width: 100%;
  }

  .catalog__main {
    margin-top: 40px;
    width: 100%;
  }

  .sidebar__wallets-list {
    max-height: 305px;
  }

  .sidebar__wallets-list div.scrollbar-track {
    width: 8px;
  }

  .sidebar__wallets-list div.scrollbar-track .scrollbar-thumb {
    left: 2px;
    width: 4px;
  }

  .sidebar__more {
    display: none;
  }

  .article-card__info--short {
    max-width: 64%;
  }

  .article-card__img {
    bottom: -23px;
    right: 0;
  }

  .rate-table__th,
  .rate-table__td {
    font-size: 16px;
  }

  .rate-table__th:first-child,
  .rate-table__td:first-child {
    padding-left: 15px;
    flex-basis: 115px;
  }

  .rate-table__th:nth-child(3),
  .rate-table__td:nth-child(3) {
    flex-basis: 18%;
  }

  .rate-table__th:nth-child(4),
  .rate-table__td:nth-child(4) {
    flex-basis: 22%;
  }

  .rate-table__th:last-child,
  .rate-table__td:last-child {
    flex-basis: 18%;
  }

  .callback__text {
    margin-top: 20px;
    font-size: 20px;
  }

  .callback__btn {
    margin-top: 26px;
  }

  .footer__menu {
    margin-left: 60px;
  }

  .footer__menu-list {
    margin: -10px -15px 0;
  }

  .footer__menu-item {
    margin: 10px 15px 0;
  }

  .footer__callback-link:not(:first-child) {
    margin-left: 30px;
  }

  .popup__content {
    padding: 28px;
  }

  .popup__close {
    right: 28px;
    top: 28px;
    width: 24px;
    height: 24px;
  }

  .search-city__header {
    margin-bottom: 40px;
  }

  .search-city__text {
    margin-top: 20px;
  }

  .search-city__field {
    margin-bottom: 20px;
  }

  .search-city__btns {
    max-height: 379px;
  }

  .search-city__btn {
    padding: 12px 18px;
  }

  .search-city__btn-name {
    font-size: 15px;
  }

  .search-city__arrow {
    margin: 0 25px;
    width: 24px;
  }

  .product__content {
    padding: 35px;
  }

  .product__info--meta:not(:first-child) {
    margin-left: 45px;
  }

  .product__info--about {
    margin-top: 20px;
  }

  .product__label {
    font-size: 20px;
  }

  .product__name-icon {
    width: 22px;
    height: 22px;
  }

  .product__meta {
    margin-right: 0;
  }

  .review__header {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .review__date {
    margin-left: 16px;
  }

  .review__time {
    margin-left: 10px;
  }

  .review__delete {
    margin-left: 16px;
  }

  .review__text {
    font-size: 15px;
  }

  .review__sub-list {
    padding-left: 28px;
  }

  .review__answer {
    font-size: 15px;
  }

  .pagination__left:before,
  .pagination__right:before {
    width: 26px;
  }

  .pagination__left {
    margin-right: 30px;
  }

  .pagination__right {
    margin-left: 30px;
  }

  .pagination__active,
  .pagination__link {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 15px;
  }

  .form-field__label {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .form-field__input {
    font-size: 16px;
  }

  .form-field .checkbox-smile__switch {
    padding: 11px;
  }

  .form-field .checkbox-smile__switch svg {
    width: 30px;
    height: 30px;
  }

  .form__title {
    margin-bottom: 20px;
  }

  .form__items:not(:first-child) {
    margin-top: 20px;
  }

  .form__privacy {
    margin-top: 24px;
  }

  .blogmain ul > li {
    margin-left: 30px;
  }

  .blogmain ol > li {
    margin-left: 0px;
  }
}

@media (max-width: 767px) {
    .deposit_index {
        display: none;
    }

 .appeal_star{
        height: 20px;
    }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .container--md {
    padding-left: 0;
    padding-right: 0;
  }

  .btn {
    font-size: 16px;
  }

  .btn__icon {
    max-width: 24px;
  }

  .text p:not(:first-child) {
    margin-top: 12px;
  }

  .text--big {
    font-size: 16px;
  }

  .title1 {
    font-size: 24px;
  }

  .title2 {
    font-size: 20px;
  }

  .title3 {
    font-size: 24px;
  }

  .title4 {
    font-size: 20px;
  }

  .title5 {
    font-size: 20px;
  }

  .checkbox__text {
    margin-left: 16px;
    font-size: 12px;
  }

  .input {
    padding-left: 16px;
    padding-right: 45px;
    font-size: 13px;
  }

  .logo {
    font-size: 16px;
  }

  .menu {
    position: relative;
  }

  .menu__toggle {
    display: block;
  }

  .menu__list {
    position: fixed;
    z-index: 3;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 34px 24px;
    width: 100%;
    height: 100%;
    background: var(--color-dark-blue);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s, transform 0.4s;
    overflow-y: auto;
  }

  .menu__item {
    margin: 12px 0;
  }

  .menu__item:not(:last-child) {
    margin-right: 0;
  }

  .menu__link {
    font-size: 18px;
    line-height: 24px;
  }

  .menu--active .menu__list {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .menu--active .menu__lines {
    height: 0;
  }

  .menu--active .menu__lines:before {
    transform: rotate(-45deg);
  }

  .menu--active .menu__lines:after {
    transform: rotate(45deg);
  }

  .choose-city__text {
    font-size: 14px;
  }

  .choose-city__item-value {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 14px;
  }

  .choose-city__btn {
    font-size: 14px;
  }

  .header__content {
    padding: 28px 4px;
  }

  .header__count {
    display: none;
  }

  .header__menu {
    margin-left: auto;
  }

.menu__toggle-wrapper {
    /* width: 24px;*/
  }

  .main {
    padding: 120px 0 60px;
  }

  .main__callback {
    margin-top: 60px;
  }

  .sidehide {
    padding-top: 30px;
    display:none;
  }

  .sidebar__title {
    margin-bottom: 26px;
  }

  .sidebar__searches {
    padding: 8px;
  }

  .sidebar__searches-item:not(:first-child) {
    margin-left: 22px;
  }

  .sidebar__wallets-list {
    margin-top: 5px;
    max-height: 268px;
  }

  .sidebar-wallets__list-title {
    font-size: 16px;
  }

  .about-img {
    width: 100%;
    height: 328px;
  }

  .about-img__item:nth-child(1) {
    top: -5px;
    width: 80px;
    left: 43px;
    bottom: unset;
  }

  .about-img__item:nth-child(2) {
    bottom: 0;
    left: -46px;
    width: 134px;
  }

  .about-img__item:nth-child(3) {
    bottom: unset;
    left: 101px;
    top: 82px;
    width: 170px;
  }

  .about-img__item:nth-child(4) {
    top: 225px;
    bottom: unset;
    left: 266px;
    width: 51px;
  }

  .about-img__item:nth-child(5) {
    top: 58px;
    bottom: unset;
    left: 272px;
    width: 48px;
  }

  .about-img__bg {
    max-width: 325px;
    top: -72px;
    bottom: unset;
    right: -123px;
    left: unset;
    transform: rotate(-90deg);
  }

  .article-card {
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .article-card__info {
    padding: 20px;
  }

  .article-card__info--short {
    max-width: 100%;
  }

  .article-card__text {
    line-height: 1.4;
  }

  .article-card__text--sm-small {
    margin-top: 24px;
    font-size: 14px;
  }

  .article-card__btn {
    margin-top: 20px;
    width: 295px;
  }

  .article-card__img {
    position: relative;
    bottom: 0;
    order: -1;
  }

  .exchange-table th {
    font-size: 16px;
  }

  .exchange-table td {
    font-size: 13px;
    max-width: 125px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .exchange-table th,
  .exchange-table td {
    padding: 18.5px 0;
  }

  .exchange-table th:first-child,
  .exchange-table td:first-child {
    padding-left: 16px;
    width: 125px;
  }

  .exchange-table th:nth-last-child(2),
  .exchange-table td:nth-last-child(2) {
    width: 45px;
  }

  .exchange-table th:nth-last-child(1),
  .exchange-table td:nth-last-child(1) {
    width: 40px;
  }

  .exchange-table__th-icon {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .rate-table__head {
    display: none;
  }

  .rate-table__body {
    border-top: 2px solid var(--color-gray);
  }

  .rate-table__tr {
    padding: 7px 13px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .rate-table__tr:not(:first-child) {
    border-top: 1px solid var(--color-gray);
  }

  .rate-table__tr:not(:first-child) .rate-table__td {
    border-top: none;
    white-space: nowrap;

  }

  .rate-table__th,
  .rate-table__td {
    padding: 8px 3px;
    font-size: 14px;
    border-top: none;
    white-space: nowrap;

  }

  .rate-table__th:first-child,
  .rate-table__td:first-child {
    margin-left: auto;
    text-align: right;
  }

  .rate-table__th:nth-child(2),
  .rate-table__td:nth-child(2) {
    order: -1;
  }

  .rate-table__th:nth-child(2),
  .rate-table__th:nth-child(3),
  .rate-table__th:nth-child(5),
  .rate-table__td:nth-child(2),
  .rate-table__td:nth-child(3),
  .rate-table__td:nth-child(5) {
    flex-basis: 55%;
  }

  .rate-table__th:nth-child(4),
  .rate-table__th:last-child,
  .rate-table__td:nth-child(4),
  .rate-table__td:last-child {
    flex-basis: 45%;
    text-align: right;
  }

  .rate-table__label {
    display: block;
  }

  .exchange__main-head {
    padding: 30px 16px 26px;
    flex-direction: column;
    align-items: flex-start;
  }

  .exchange__city {
    margin-top: 16px;
    margin-left: 0;
    padding-left: 0;
  }

  .exchange__ps {
    margin-top: 14px;
    font-size: 13px;
  }

  .callback__content {
    padding: 0 4px;
  }

  .callback__title {
    line-height: 1.3;
  }

  .callback__text {
    margin: 24px auto 0;
    max-width: 310px;
    font-size: 16px;
    line-height: 1.3;
  }

  .callback__btn {
    margin-top: 32px;
    width: 100%;
    max-width: 380px;
  }

  .footer__top {
    flex-direction: column;
  }

  .footer__menu {
    margin-top: 20px;
    margin-left: 0;
    padding-top: 40px;
    width: 100%;
    border-top: 1px solid var(--color-gray);
  }

  .footer__menu-list {
    flex-direction: column;
    margin: -20px 0 0;
  }

  .footer__menu-item {
    margin: 20px 0 0;
  }

  .footer__callback {
    margin-top: 82px;
    margin-right: auto;
  }

  .footer__bottom {
    margin-top: 36px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .popup__dialog {
    margin-top: 30px;
    padding-bottom: 30px;
    min-height: calc(100% - 30px);
  }

  .popup__content {
    padding: 24px;
    max-width: calc(100% - 40px);
  }

  .popup__close {
    right: 24px;
    top: 24px;
    width: 20px;
    height: 20px;
  }

  .search-city__header {
    margin-bottom: 28px;
  }

  .search-city__title {
    font-size: 20px;
  }

  .search-city__text {
    margin-top: 18px;
    font-size: 14px;
  }

  .search-city__field {
    display: none;
  }

  .search-city__label {
    margin-bottom: 8px;
    display: block;
    font-size: 12px;
    font-weight: 600;
  }

  .search-city__main {
    flex-direction: column;
  }

  .search-city__list {
    border: 1px solid var(--color-gray);
  }

  .search-city__active-item {
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
  }

  .search-city__active-item:not(:first-child) {
    border-top: none;
  }

  .search-city__active-item:after {
    margin-left: 5px;
    content: "";
    display: inline-block;
    background: url("../img/icons/down.svg") center/contain no-repeat;
    width: 14px;
    height: 8px;
  }

  .search-city__active-item--open {
    border-bottom: 1px solid var(--color-gray);
  }

  .search-city__active-item--open:after {
    transform: rotate(180deg);
  }

  .search-city__btns {
    max-height: 294px;
    flex-direction: column;
    align-items: flex-start;
  }

  .search-city__btns,
  .search-city__btns[data-scrollbar] {
    display: none;
  }

  .search-city__btns .scroll-content {
    width: 100%;
  }

  .search-city__btns--open,
  .search-city__btns--open[data-scrollbar] {
    display: flex;
  }

  .search-city__btn {
    padding: 10px 16px;
    justify-content: space-between;
    background-color: transparent;
  }

  .search-city__btn:hover {
    background-color: transparent;
  }

  .search-city__btn-name {
    font-size: 14px;
  }

  .search-city__btn-count {
    font-size: 11px;
  }

  .search-city__btn-count span {
    font-size: 11px;
  }

  .search-city__btn--active {
    background-color: transparent;
  }

  .search-city__arrow {
    margin: 24px 0 8px;
    transform: rotate(90deg);
  }

  .product__content {
    padding: 40px 0;
  }

  .product__main {
    padding: 0 16px;
  }

  .product__back {
    display: none;
  }

  .btn_postblog_return{
    width: 100%!important;
    border-block-color: #3ca4ff!important;
    display:flex;
  }

  .product__main-data {
    flex-direction: column;
    align-items: flex-start;
  }

  .product__info--about {
    margin-top: 35px;
  }

  .product__meta {
    margin-top: 35px;
    margin-left: 0;
    padding-left: 0;
  }

  .product__label {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .product__about {
    padding-right: 5px;
    font-size: 13px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
  }

  .product__reviews {
    margin-top: 35px;
  }

  .reviews {
    padding: 0 4px;
  }

  .reviews__header {
    padding: 0 16px;
  }

  .reviews__title {
    font-size: 16px;
  }

  .reviews__value {
    font-size: 12px;
  }

  .reviews__create {
    padding: 7px 16px;
    font-size: 13px;
  }

  .reviews__create img {
    width: 14px;
  }

  .reviews__filters {
    flex-direction: column;
    align-items: flex-start;
    border-bottom: none;
  }

  .reviews__btns {
    padding: 0 16px;
    width: 100%;
    border-bottom: 1px solid var(--color-dark-gray);
  }

  .reviews__btn {
    flex: 1 1 100%;
    flex-direction: column;
    font-size: 13px;
  }

  .reviews__btn:not(:first-child) {
    margin-left: 0;
  }

  .reviews__btn-value {
    margin-bottom: 5px;
    margin-right: 0;
    padding: 4px 7px;
  }

  .reviews__sort {
    margin-top: 10px;
    margin-left: 0;
    padding: 0 16px;
  }

  .reviews__sort-btn {
    font-size: 13px;
  }

  .reviews__sort-btn img {
    width: 14px;
  }

  .reviews__item {
    padding-top: 10px;
  }

  .reviews__item:not(:first-child) {
    padding-top: 20px;
  }

  .reviews__pagination {
    margin-top: 40px;
    padding: 0 16px;
  }

  .review {
    padding-left: 16px;
    padding-right: 16px;
  }

  .review__header {
    font-size: 13px;
  }

  .review__text {
    padding-right: 8px;
    font-size: 13px;
  }

  .review__answer {
    font-size: 13px;
  }

  .review__send {
    right: 16px;
  }

  .review__sub-list {
    padding-left: 24px;
  }

  .review__sub-item {
    padding-left: 0;
    padding-right: 0;
  }

  .pagination__left:before,
  .pagination__right:before {
    background-image: url("../img/icons/right-gray.svg");
    width: 8px;
    height: 14px;
  }

  .pagination__left {
    margin-right: auto;
  }

  .pagination__right {
    margin-left: auto;
  }

  .pagination__active,
  .pagination__link {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 13px;
  }

  .pagination__active:not(:first-child),
  .pagination__link:not(:first-child) {
    margin-left: 8px;
  }

  .form-field__label {
    margin-bottom: 6px;
  }

  .form-field__input {
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .form__title {
    margin-bottom: 32px;
    font-size: 20px;
  }

  .form__items {
    flex-wrap: wrap;
  }

  .form__item:not(:first-child) {
    margin-top: 20px;
    margin-left: 0;
  }

  .form__privacy {
    margin-top: 32px;
  }

  .form__btn {
    margin-top: 16px;
  }

  .form__error-text {
    margin-top: 14px;
  }

  .blogmain ul > li {
    margin-left: 30px;
  }

  .blogmain ol > li {
    margin-left: 0px;
  }
}

@media (max-width: 360px) {
    .deposit_index {
        display: none;
    }

   .appeal_star{
        height: 20px;
    }

  .exchange-table th:first-child,
  .exchange-table td:first-child {
    padding-left: 12px;
    width: 125px;
  }

  .blogmain ul > li {
    margin-left: 30px;
  }

  .blogmain ol > li {
    margin-left: 0px;
  }

  .exchange-table th:nth-last-child(1),
  .exchange-table th:nth-last-child(2),
  .exchange-table td:nth-last-child(1),
  .exchange-table td:nth-last-child(2) {
    width: 40px;
  }

  .review__text {
    padding-right: 0;
  }



}

@media (max-width: 340px) {
    .deposit_index {
        display: none;
    }
  .pagination__active,
  .pagination__link {
    width: 30px;
    height: 30px;
  }

  .pagination__active:not(:first-child),
  .pagination__link:not(:first-child) {
    margin-left: 7px;
  }
}
