.ship-n-pay-color-table {
    background: white; /* Цвет фона таблицы */
    color: white; /* Цвет текста */
    width: 100%;
    border-collapse: collapse;
   }
  
   TD, TH {
    border: 1px solid #ededed;
    color: black;
    padding: 5px; /* Поля вокруг текста */
    vertical-align: top;
   }
  
   TH {
    background: rgba(237, 8, 137, 0.15); /* Цвет фона ячеек с прозрачностью 15% */
    text-align: left; /* Выравнивание названий дней недели по левому краю */
    font-weight: 600;
   }

/* Добавляем адаптивность для таблицы на малых экранах */
@media (max-width: 768px) {
    .ship-n-pay-color-table {
        display: block;
        overflow-x: auto;
        white-space: normal;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .ship-n-pay-color-table td {
        min-width: 150px;
        word-wrap: break-word;
        font-size: 14px;
        line-height: 1.4;
    }
    
    .ship-n-pay-color-table th {
        min-width: 120px;
        position: sticky;
        top: 0;
        z-index: 1;
        background: rgba(237, 8, 137, 0.15);
    }
    
    .ship-n-pay-block, .ship-n-pay-color-block {
        padding: 20px 15px 20px 50px;
        margin-bottom: 15px;
    }
    
    .ship-n-pay-block__heading {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .ship-n-pay__heading {
        margin-bottom: 20px;
        font-size: 22px;
    }
    
    .ship-n-pay-color-block_exclam, 
    .ship-n-pay-color-block_truck {
        background-position: 15px 20px;
        background-size: 20px;
    }
}

@media (max-width: 480px) {
    .ship-n-pay-color-table td, 
    .ship-n-pay-color-table th {
        padding: 8px 5px;
        font-size: 13px;
    }
    
    .ship-n-pay-block {
        padding: 15px 12px;
    }
    
    .ship-n-pay-color-block {
        padding: 15px 12px 15px 40px;
    }
    
    .ship-n-pay-block__heading {
        font-size: 18px;
    }
    
    .ship-n-pay-color-block_exclam, 
    .ship-n-pay-color-block_truck {
        background-position: 12px 15px;
    }
    
    .ship-n-pay-block__li {
        margin-bottom: 8px;
    }
}

.banners-big__text-block, .banners-tizers__desc-text {
    color: #000;
}

.develop-link   {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 10px;
    border: 1px dashed #666;
}

.develop-link:hover   {
    border: 1px dashed #fff;
    transition: border-color .3s;
}

.develop-link__text {
    margin: 0px 7px 0 0;
    color: #666;
}

.develop-link:hover .develop-link__text {
    color: #fff;
    transition: color .3s;
}

.develop-link:hover .develop-link__icon path  {
    fill: #fff;
    opacity: 1;
    transition: fill .3s;
}

/*
 * Autofill fix for Vue Phone input component
 */
:-webkit-autofill {
    animation-name: onAutoFillStart;
}

:not(:-webkit-autofill) {
    animation-name: onAutoFillCancel;
}
@keyframes onAutoFillStart {}
@keyframes onAutoFillCancel {}

/*
 * Auth modal
 */
.auth-modal {
    max-width: 460px;
    padding: 15px 25px 40px;
    border-radius: 15px;
}
.auth-modal__header {
    padding: 15px 30px 10px 0;
}
.auth-modal__body {
    color: var(--basic_text_black);
    font-size: 14px;
    font-family: Inter;
    line-height: 20px;
}
.auth-form .btn_change-auth-phone {
    border: none;
}
.auth-form__stage {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.auth-form__stage_last {
    row-gap: 15px;
}
.auth-form__stage-bottom {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    padding-top: 15px;
}
.auth-form__stage p {
    margin: 0;
    text-align: center;
}
.auth-form__stage p .phone {
    white-space: nowrap;
}
.auth-form__phone-input .input {
    width: 100%;
}
.auth-form__error {
    color: #F00;
}
.auth-form__timer {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
.auth-form__callpass-qr {
    display: none;
    justify-content: center;
}
@media (min-width: 992px) {
    .auth-form__callpass-qr {
        display: flex;
    }
}
.auth-form__callpass-qr img {
    width: 160px;
}
.auth-form__callpass-phone-link {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}
@media (min-width: 992px) {
    .auth-form__callpass-phone-link,
    .auth-form__callpass-phone-button {
        display: none;
    }
}

/*
 * Code input
 */
.code-input-wrapper {
    display: flex;
    column-gap: 10px;
}
.code-input {
    width: 100%;
    height: 52px;
    background: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
    font-size: 20px;
    text-align: center;
}
.code-input.error {
    border-color: #fba0b0;
}

[data-ajax-load-block="HEADER_TOGGLE_CABINET"] + [data-ajax-load-block="HEADER_TOGGLE_CABINET"] {
    display: none;
    visibility: hidden;
}

#soa-property-3 {
    pointer-events: none;
    opacity: 0.5;
}

.error-container {
    margin-top: 20px;
}

.errortext {
    color: red;
}

.logo-group-mobile {
    position: relative;
    transform: translateY(-3px);
}
.logo-group-mobile__link {
    position: relative;
    z-index: 0;
}
.logo-group-mobile__region {
    position: absolute;
    bottom: -12px;
    left: 22.16%;
    z-index: 1;
    padding: 4px 0;
}
.logo-group-mobile__region a {
    width: auto;
    height: auto;
    font-weight: 700;
    font-size: 13px;
    line-height: 13px;
    border-bottom: 1px dashed;
}
.logo-group-mobile__region a:hover,
.logo-group-mobile__region a:focus {
    color: var(--fill_dark_lite_white_hover);
    border-bottom-color: transparent;
}
.line-block-action{
    padding-bottom:15px;
}

.bottom-menu .items > div {
    row-gap: 20px;
}
.footer__main-part-inner {
    padding: 73px 0 82px;
}
.footer--color-dark .subscribe-btn {
    --fill_dark_light: #fff;
}
.footer--color-dark .subscribe-btn:hover use {
    --fill_dark_lite_hover: #999;
}
.subscribe-btn__icon {
    transform: rotate(180deg);
}
.bottom-menu .item-link a:not(:hover) {
    color: #fff;
}
.footer--color-light .bottom-menu .item-link a:not(:hover) {
    color: #333;
    color: var(--white_text_black);
}
@media (max-width: 1200px) {
    .footer__main-part .footer__part-bottom {
        flex-direction: column;
    }
    .footer__subscribe,
    .footer__social  {
        margin-top: 25px;
    }
}
@media (min-width: 1200px) {
    .footer__part-bottom > div {
        padding-top: 41px;
    }
}
@media (max-width: 991px) {
    .footer__main-part-inner {
        padding: 41px 0 20px 0;
        flex-direction: column;
        border: none;
    }
    .footer__info {
        margin-top: 25px;
    }
}
@media (max-width: 767px) {
    .bottom-menu.bottom-menu--bold {
        padding-bottom: 16px;
    }
    .bottom-menu--bold .item-link {
        margin: 16px 0;
    }
}
@media (max-width: 600px) {
    .footer__main-part-inner {
        padding: 22px 0 25px 0;
    }
    .bottom-menu .items > div {
        --gap: 21px;
        row-gap: 16px;
    }
    .bottom-menu .items .item {
        font-size: 0.9375rem;
    }
}
/**/
.footer-menu {
    font-weight: 600;
    line-height: calc(24 / 16);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 25px;
    gap: 20px 25px;
    color: #fff;
}
.footer-menu__group {
    min-width: 1px;
}
.footer-menu__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-gap: 4px;
    gap: 4px;
}
.footer-menu__item {
    min-width: 1px;
    padding: 0;
    margin: 0;
}
.footer-menu__item.active {
    color: var(--fill_dark_lite_hover);
}
.footer--color-dark .footer-menu__item.active {
    color: #999;
}
.footer-menu__item:before {
    content: none;
}
.footer-menu .footer-menu__link {
    color: inherit;
}
.footer-menu__link:hover {
    color: var(--fill_dark_lite_hover);
}
.footer--color-dark .footer-menu__link:hover {
    color: #999;
}

@media (min-width: 768px) {
    .footer-menu {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .footer-menu {
        grid-template-columns: repeat(3, 1fr);
    }
}
/**/
.sticker-item {
    position: relative;
    font-size: 14px;
    font-weight: 800;
    line-height: calc(17 / 14);
    padding: 3px;
    border-radius: 5px;
    display: inline-block;
    text-transform: uppercase;
}
.sticker-item--opt {
    background: #ED0989;
    color: #fff;
}
/**/
.sections-block__wrapper {
    display: flex;
}
.sections-block__wrapper > * {
    min-width: 1px;
    flex: 1 1 auto;
}
.sections-block__item-link {
    --item-pl: 20px;
    --item-pr: 20px;
    --item-pt: 32px;
    --item-pb: 27px;

    padding: var(--item-pt) var(--item-pr) var(--item-pb) var(--item-pl);
    text-align: center;
    display: block;
}
.items-6 .sections-block__item-link {
    --item-pt: 36px;
    --item-pb: 31px;
}
.items-5 .sections-block__item-link {
    --item-pt: 40px;
    --item-pb: 35px;
}
.items-4 .sections-block__item-link {
    --item-pt: 44px;
    --item-pb: 39px;
}

.sections-block__item-image-wrapper {
    --section-image-width: 80px;
    --section-image-height: 80px;
    width: var(--section-image-width);
    height: var(--section-image-height);
    margin: auto auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sections-block__item-image {
    max-width: 100%;
    max-height: 100%;
}
.sections-block__item-image-wrapper--ICONS {
    --section-image-width: 40px;
    --section-image-height: 40px;
}
.sections-block__item-image-wrapper--ICONS svg {
    width: var(--section-image-width);
    height: var(--section-image-height);
}
.sections-block__item-text {
    display: block;
}

.sections-block__nav {
    margin-top: 20px;
    text-align: center;
}
.sections-block__nav .btn {
    width: 350px;
    max-width: 100%;
}

@media (min-width: 1200px) {
    .items-6 .sections-block__item-image-wrapper--PICTURES {
        --section-image-width: 104px;
        --section-image-height: 104px;
    }
    .items-5 .sections-block__item-image-wrapper--PICTURES,
    .items-4 .sections-block__item-image-wrapper--PICTURES {
        --section-image-width: 120px;
        --section-image-height: 120px;
    }
}
@media (max-width: 600px) {
    .sections-block__item-image-wrapper--PICTURES {
        --section-image-width: 70px;
        --section-image-height: 70px;
    }
    .sections-block__item-link {
        --item-pl: 16px;
        --item-pr: 16px;
        --item-pt: 16px;
        --item-pb: 16px;
    }
    .normal .sections-block__item-image-wrapper {
        --section-image-width: auto;
        --section-image-height: auto;
    }
    .sections-block--mobile-compact.grid-list{
        grid-gap: 12px;
    }
    .sections-block--mobile-compact.mobile-scrolled{
        grid-gap: 0;
    }
    .sections-block--mobile-compact .sections-block__item-image-wrapper {
        --section-image-width: 32px;
        --section-image-height: 32px;
        margin: 0 18px 0 0;
    }
    .sections-block--mobile-compact .sections-block__item-inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    .sections-block--mobile-compact .sections-block__item-link{
        --item-pt: 16px;
        --item-pb: 16px;
    }
    .sections-block--mobile-compact .sections-block__item-text{
        /* font-size: 1rem; */
    }
}
/**/
.sections-item {
    font-size: 15px;
    line-height: calc(18 / 15);
    min-height: 164px;
    padding: 20px 20px 20px 20px;
    background: #fff;
    background-image:  url("/bitrix/templates/aspro-lite/images/pattern-svlk.png"), linear-gradient(to right bottom, #FFDDF9, #FFF7E0, #fff, #fff, #fff);
    display: grid;
    grid-template-columns: 1fr auto;
    align-content: flex-start;
    align-items: center;
    grid-gap: 5px;
    gap: 5px;
    color: #222;
}
.sections-item collapse-box {
    display: contents;
}
.sections-item__inner {
    min-width: 1px;
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    gap: 10px;
    flex: 1 1 auto;
}
.sections-item__title {
    font-size: 24px;
    font-weight: 600;
    line-height: calc(32 / 24);
}
.sections-item__link {
    text-decoration: none;
    color: inherit;
}
.sections-item__body {}
.sections-item__menu {
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
    gap: 5px;
}
.sections-item__menu-item {}
.sections-item__menu-link {
    text-decoration: none;
    color: #555;
}
.sections-item__menu-toggle {
    font: inherit;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    display: none;
    outline: none;
    color: #D83287;
}
.is-overflow > .sections-item__menu-toggle {
    display: inline;
}
.sections-item__image {
    width: 80px;
    /*height: 104px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    flex: 0 0 auto;
}
.sections-item__image img, .sections-item__image svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.sections-item [data-is-close="hide"] {
    display: var(--_wc-collapse-close-hide);
}
.sections-item [data-is-close="show"] {
    display: var(--_wc-collapse-open-hide);
}

@media (min-width: 992px) {
    .sections-item {
        padding: 30px 25px 30px 30px;
    }
    .sections-item__image {
        width: 95px;
    }
}

.footer__developer {
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media screen and (max-width: 1168px) {
    .footer__developer {
        align-items: flex-start;
    }
}

@media screen and (max-width: 779px) {
    .footer__developer {
        align-items: flex-end;
    }
}

@media screen and (max-width: 489px) {
    .footer__developer {
        flex-direction: column;
        align-items: flex-start;
    }

}

.rbru_custom_logo {
    gap: 5px;
    display: flex;
    align-items: center;
}

.rbru_custom_logo:hover {
    color: #999;
}

.rbru_custom_logo img {
    width: 64px;
    height: auto;
}

.payment-pays i {
    display: inline-block;
    vertical-align: middle;
    margin: 0px 10px;
    background: url("../images/svg/payment.svg") 0px 0px no-repeat;
}
.payment-pays i:hover {
    opacity: 1;
}
.payment-pays i.mir {
    width: 51px;
    height: 20px;
    background-position-x: -165px;
}
.payment-pays i.visa {
    width: 39px;
    height: 20px;
    background-position-x: -24px;
}
.payment-pays i.jcb {
    width: 26px;
    height: 20px;
    background-position-x: -220px;
}
.payment-pays i.mastercard {
    width: 27px;
    height: 20px;
    background-position-x: -67px;
}

.dostavka-img {
    max-width: 100%;
    height: auto;
}

/* Доставка и оплата ship-n-pay */

.ship-n-pay__heading {
  /* font-size: 24px; */
  margin-bottom: 40px;
}

.ship-n-pay__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ship-n-pay-color-block {
  border: 1px solid #ed0889;
  border-radius: 12px;

  padding: 20px;
  padding-left: 60px;
}

.ship-n-pay-color-block__heading {
  font-size: 16px;
  margin: 0;
  margin-bottom: 10px;
}

.ship-n-pay-color-block_exclam {
  background: url(../images/svg/exclam-in-circle.svg) no-repeat;
  background-position: 20px center;
}
.ship-n-pay-color-block_truck {
    margin-top: 20px;
    margin-bottom: 20px;
  background: url(../images/svg/truck.svg) no-repeat;
  background-position: 20px center;
}

/* ship-n-pay-block */
.ship-n-pay-block {
  border: 1px solid #ededed;
  border-radius: 12px;
  padding: 30px;
}

.ship-n-pay-block__heading {
  margin: 0;
  margin-bottom: 20px;
  font-size: 24px;
}

.ship-n-pay-block__content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.ship-n-pay-block_color-pink {
  color: #ed0889;
}

.ship-n-pay-block__ul {
  margin: 0;
  padding-left: 22px;
}
.ship-n-pay-block__li {
  margin-bottom: 10px;
  list-style-type: disc;
}
.ship-n-pay-block__li:last-child {
  margin-bottom: 0;
}
.ship-n-pay-block__li::before {
  display: none;
}

.ship-n-pay-block__h4 {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
}

.ship-n-pay-block__p {
  margin: 0;
}

/* ship-n-pay-block */

.ship-n-pay_mb-10 {
  margin-bottom: -10px;
}
.ship-n-pay_fw500 {
  font-weight: 500;
}

/* end of Доставка и оплата ship-n-pay */