/* RESET */
html {
    box-sizing: border-box;
    touch-action: manipulation;
}

*,
*::after,
*::before {
    box-sizing: inherit;
}

html, body, div, span,
h1, h2, h3, h4, h5, h6, p,
img,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
footer, header, menu, nav, section {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    touch-action: manipulation;
}

html, body {
    height: 100%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, main, section {
    display: block;
}

a,
button {
    border: 0;
    cursor: pointer;
    outline: none;
    border: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

/* POP UP */
@-webkit-keyframes popupAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes popupAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes list {
    0% {
        max-height: 0;
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        max-height: 270px;
        opacity: 1;
    }
}

@keyframes list {
    0% {
        max-height: 0;
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        max-height: 270px;
        opacity: 1;
    }
}

.popup {
    display: none;
    padding: 0 10px;
    width: calc(100% - 50px);
    height: 65px;
    position: absolute;
    top: 20px;
    left: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    background-color: #404040;
    border-radius: 12px;
    opacity: 0;
    -webkit-animation-name: popupAnimation;
    animation-name: popupAnimation;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

    .popup.error__popup_active {
        position: fixed;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 300;
        opacity: 1;
    }

    .popup.warning__popup_active {
        position: fixed;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 300;
        opacity: 1;
    }

    .popup.success__popup_active {
        position: fixed;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 300;
        opacity: 1;
    }

.popup_image svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    display: block;
}

.popup__text {
    font-family: 'Montserrat';
    font-size: 19px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    color: #FFFFFF;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* HOME PAGE */
body {
    position: relative;
    margin: 0;
    padding: 0;
    min-width: 360px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #FEFEFE;
}

.container {
    min-width: 360px;
    padding: 0 25px;
    margin: 0 auto;
}

.header__nav,
.header__card_nav {
    position: relative;
    width: 100%;
    padding-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.header__search,
.header__card_search {
    position: relative;
    width: 100%;
}

.header__input,
.header__card_input {
    width: 100%;
    height: 50px;
    padding-left: 50px;
    border: 1px solid #C5C6C6;
    border-radius: 12px;
    font-family: 'Montserrat';
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    text-align: left;
}

    .header__input:focus {
        outline: 1px solid #afafaf;
    }

    .header__card_input:focus {
        outline: 1px solid #afafaf;
    }

.input--icon {
    position: absolute;
    top: 14px;
    left: 14px;
}

.search__list {
    display: none;
}

    .search__list.list_active {
        display: block;
        -webkit-animation: list 0.3s linear forwards;
        animation: list 0.3s linear forwards;
        position: absolute;
        top: 50px;
        z-index: 100;
        width: 100%;
        background-color: #FEFEFE;
        max-height: 270px;
        overflow-y: scroll;
        border-radius: 12px;
    }

.list__item {
    height: 65px;
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #C5C6C6;
    cursor: pointer;
}

    .list__item:first-child {
        margin-top: 5px;
    }

    .list__item:last-child {
        margin-bottom: 5px;
        border: none;
    }

.item__image {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border: 1px solid #C5C6C6;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .item__image img {
        height: 40px;
    }

.item__name {
    font-family: 'Montserrat';
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    color: #000;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.border__item {
    margin-top: 10px;
    width: 100%;
    height: 1px;
    background-color: #C5C6C6;
}

.header__icon,
.header__card_icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.icon--cart {
    position: relative;
}

.counter__cart {
    display: none;
    position: absolute;
    top: 10px;
    right: 5px;
    width: 12px;
    height: 12px;
    opacity: 1;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat';
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    padding: 0;
    /*color: #E9ECE7;
    background-color: #F69BAA;*/
    background-color: #D8E738;
    color: #827080;
}

    .counter__cart.counter__cart_active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

.user--btn,
.cart--btn,
.card__user--btn,
.card__cart--btn {
    height: 50px;
    background-color: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart--btn,
.card__cart--btn {
    padding-left: 5px;
    padding-right: 9px;
}

.user--btn,
.card__user--btn {
    padding: 0 11.5px;
}

.header__banner {
    padding-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    margin-bottom: 16px;
}

.banner {
    height: 110px;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    background-color: #E58A99;
    border-radius: 12px;
}

.banner--one {
    position: relative;
    background-color: #827080;
}

    .banner--one p, .banner--two p {
        padding-left: 15px;
        color: #FEFEFE;
        text-transform: uppercase;
    }

.banner .default--element {
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.first--element {
    padding-top: 10px;
    text-align: left;
}

.custom--element {
    font-family: 'Philosopher';
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    text-align: left;
}

.banner__price {
    position: absolute;
    right: 0;
    bottom: 0;
}

    .banner__price p {
        color: #F69BAA;
        border-radius: 12px;
        text-align: center;
        background-color: #FEFEFE;
        padding: 8px 11px;
        font-family: 'Montserrat';
        font-size: 22px;
        font-weight: 700;
        line-height: 1.2;
    }

.main__add_title {
    font-family: Philosopher;
    font-weight: 400;
    font-style: italic;
    font-size: 11px;
    line-height: 12.32px;
    letter-spacing: 0%;
}

.products__bg {
    width: 100%;
    /*background-color: #e7e6e7a1;*/
    margin-bottom: 20px;
}

.main__title {
    margin: 0;
    padding: 0 0 15px 25px;
    font-family: 'Philosopher';
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    color: #3B524A;
}

.main__title_bg {
    margin: 0;
    padding: 15px 0 15px 35px;
    font-family: 'Philosopher';
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    color: #3B524A;
}

.products__bg_title {
    width: 50%;
    padding: 20px 25px 10px 7.5px;
    /* padding: 30px 20px 10px 20px; */
    margin-left: auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* -webkit-box-align: end;
    -ms-flex-align: end; */
    align-items: center;
}

.products__bg_text span {
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #E9ECE7;
    background-color: #F69BAA;
}

.products__text_one {
    border-radius: 5px;
    padding: 3px 10px;
}

.products__text_two {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 3px 10px;
}



.swiper.homeSwiper {
    width: 100%;
}

.swiper-slide.homeSlide {
    width: 100%;
}

.accessories__info {
    font-family: Philosopher;
    font-weight: 700;
    font-size: 13px;
    line-height: 14.56px;
    margin-bottom: 8px;
    text-align: left;
}

.slide__info-two,
.accessories__info-two {
    margin-bottom: 16px;
}

.accessories--text {
    height: 45px;
}

.accessories--text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product--about {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-btn {
    height: 42px;
    padding: 0 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #F69BAA;
    border-radius: 12px;
}

.delete-btn {
    background-color: #E0C3BC;
}

.main-add-btn {
    width: 101px;
    height: 42px;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.number {
    display: none;
    width: 38px;
    height: 38px;
    position: absolute;
    right: -8px;
    top: -5px;
    padding: 0;
    opacity: 1;
    border: none;
    border-radius: 12px;
    background-color: #F69BAA;
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 400;
    color: #E9ECE7;
    text-align: center;
}

    .number.number-active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

.accessories {
    margin-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
}

.accessories__items {
    position: relative;
    width: 100%;
}

.footer {
    margin-bottom: 42px;
}

.footer__btn {
    display: block;
    width: 100%;
    background-color: #3B524A;
    padding: 12px 0;
    border-radius: 12px;
    font-family: 'Montserrat';
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: #FEFEFE;
}

/* SUBSCRIBE */
.header__subscribe {
    background-color: #EDDEDB;
}

.header__back {
    padding-top: 16px;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .header__back p {
        font-family: 'Montserrat';
        font-size: 19px;
        font-weight: 400;
        line-height: 1.2;
        text-align: left;
        color: #FEFEFE;
    }

.header__title {
    padding: 16px 75px;
    font-family: 'Philosopher';
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #3B524A;
}

.main__subscribe {
    background-color: #FEFEFE;
}

.main__about {
    position: relative;
    padding-top: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.photo {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
}

.photo__text {
    width: 100%;
}

.photo__image {
    width: 80%;
    position: absolute;
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
}

.info__subscribe {
    height: auto;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.logo {
    padding-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.logo__text {
    font-family: 'Philosopher';
    font-size: 22px;
    font-weight: 700;
    line-height: 25.32px;
    color: #F5EFED;
}

.main__subtitle {
    font-family: 'Montserrat';
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    color: #3B524A;
}

.subtitle-about {
    font-family: 'Montserrat';
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    color: #530B42;
}

.subscribe__btn {
    display: block;
    margin-bottom: 24px;
    width: 95%;
    padding: 10px 0;
    background-color: #F69BAA;
    border-radius: 12px;
    border: none;
    font-family: 'Montserrat';
    font-size: 19px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: #FEFEFE;
}

.border {
    width: 100%;
    height: 3px;
    background-color: #EDDEDB;
}

.section__subscribe {
    background-color: #FEFEFE;
    margin-bottom: 32px;
}

.section__title {
    padding-top: 24px;
    margin-bottom: 10px;
    font-family: 'Montserrat';
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #3B524A;
}

.section__text {
    font-family: 'Montserrat';
    font-size: 21px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    color: #3B524A;
}

.footer__subscribe {
    margin-bottom: 42px;
}

.catalog__btn {
    display: block;
    width: 100%;
    background-color: #3B524A;
    padding: 12px 0;
    border-radius: 12px;
    font-family: 'Montserrat';
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: #FEFEFE;
}

/* ERROR */
.section__error {
    height: 100vh;
    overflow-y: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2vh;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section__error_title {
    padding-top: 200px;
    font-family: 'Montserrat';
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #F95151;
}

.error__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

    .error__image svg {
        width: 100vw;
        height: auto;
    }


.section__success, .section__problem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /*gap: 2vh;*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section__success_title {
    padding-top: 200px;
    font-family: 'Montserrat';
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #3B524A;
}

.success__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

    .success__image svg {
        width: 60vw;
        height: auto;
    }

/* CART */
.app__subtitle {
    padding-top: 25px;
    margin-bottom: 18px;
    font-family: 'Montserrat';
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #3B524A;
}

/* Нет выбранных товаров */
/* .cart__app_subtitle {
    display: none;
} */

.positions__cart,
.positions__delivery {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
}

.positions__cart_image,
.positions__delivery_image {
    padding: 0 10px;
    width: 107px;
    height: 90px;
    background-color: #827080;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4px;
}

.positions__delivery_image {
    background-color: #E58A99;
}

    .positions__delivery_image > img {
        height: 80%;
    }

.positions__cart_image p {
    font-family: 'Philosopher';
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    color: #E9ECE7;
}

.positions__cart_info {
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.positions__delivery_info {
    padding-left: 10px;
}

.info--text {
    max-width: 200px;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #2B2A29;
}

.info--text-add {
    max-width: 200px;
    padding-top: 5px;
    font-family: 'Montserrat';
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: #2B2A29;
}

.info--price {
    padding: 8px 36px;
    background-color: #827080;
    border-radius: 12px;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: #FEFEFE;
}

.positions__cart_number {
    font-family: Philosopher;
    font-weight: 400;
    font-size: 15px;
    line-height: 16.8px;
    letter-spacing: 0%;
    margin-left: auto;
    width: 54px;
    height: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #E58A99;
    border-radius: 12px;
    color: #FFFFFF;
    text-align: center;
}

.cart__summ {
    padding-top: 10px;
    /*margin-bottom: 60px;*/
    width: 100%;
}

.cart__summ_block {
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 8px;
    background: #E58A99;
}

.summ--text,
.summ--number {
    padding: 12px 0;
    font-family: 'Philosopher';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
}

.form__cart_subtitle {
    padding: 0 10px;
    margin-bottom: 20px;
    font-family: 'Philosopher';
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #827080;
}

.form__cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 42px;
}

.form__cart_input {
    font-family: Philosopher;
    font-weight: 700;
    line-height: 17.92px;
    width: 100%;
    border: 2.5px solid #827080;
    border-radius: 12px;
    padding: 20px 30px;
    text-align: left;
    margin-bottom: 15px;
    outline: none;
}

    .form__cart_input::placeholder {
        color: #C5C6C6;
    }

/* .input__last {
    margin-bottom: 32px;
} */

.form__cart_radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    /*margin-bottom: 80px;*/
}

.cart__radio_group {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.radio--input {
    display: none;
}

.radio--lable {
    font-family: Philosopher;
    font-weight: 700;
    font-size: 11px;
    line-height: 12.32px;
    letter-spacing: 0%;
    padding: 20px 0;
    width: 100%;
    display: block;
    background-color: transparent;
    border: 2.5px solid #827080;
    border-radius: 12px;
    text-align: center;
    color: #530B42;
}

.radio--input:checked ~ .radio--lable {
    background-color: #530B42;
    border: 2.5px solid #530B42;
    color: #FEFEFE;
}

.cart__radio_two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /*padding: 12px 10px 0;*/
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.radio--text {
    width: 70%;
    font-family: 'Montserrat';
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    color: #2B2A29;
}

.radio--price {
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #530B42;
}

/* PRODUCT CARD */
.header__card_input {
    background-color: transparent;
    border: 2.5px solid #F29BA9;
}

.card__user--btn,
.card__cart--btn {
    background-color: transparent;
    border-radius: 12px;
}

.card__title {
    padding: 18px 12px 0;
    margin-bottom: 12px;
    font-family: 'Philosopher';
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: #2B2A29;
}

.card__info {
    padding: 0 12px;
    margin-bottom: 15px;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    color: #2B2A29;
}

.card__main_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
}

.card__btn.group-one {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
}

.card__btn_counter {
    padding: 0 40px;
    height: 42px;
    background-color: #F69BAA;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.minus--btn {
    background-color: #E0C3BC;
}

.card-btn {
    padding: 0 40px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 12px;
    background-color: #3B524A;
    font-family: 'Montserrat';
    font-size: 19px;
    font-weight: 400;
    text-align: center;
    color: #FEFEFE;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.card__footer {
    padding-top: 20px;
    padding-bottom: 42px;
    width: 100%;
    background-color: #E9ECE7;
}

.footer__card_info {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 32px;
}

.card__list {
    padding-left: 45px;
}

.card__item {
    font-family: 'Montserrat';
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    text-align: left;
    color: #2B2A29;
    margin-bottom: 8px;
}

li.card__item::marker {
    color: #2B2A29;
}

.card__image_two {
    position: absolute;
    top: 35px;
    right: 40px;
    -webkit-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
}

.swiper.cardSwiper {
    width: 100%;
    max-height: 340px;
    min-height: 200px;
    /* height: 30vh; */
    margin-bottom: 20px;
}

.swiper-slide.cardSlide {
    background: #F5F5F5;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .swiper-slide.cardSlide img {
        display: block;
        /* width: 70%;
    max-width: 270px; */
    }

.swiper-button-next,
.swiper-button-prev {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cardSlide img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: none;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: none;
}

.container-arrow .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
}

:root {
    --swiper-navigation-size: 50px;
    --swiper-theme-color: #F69BAA;
}

/* LK */
.lk__user {
    margin-bottom: 42px;
}

.lk__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.lk__input:first-child {
    margin-bottom: 12px;
}


.lk__input {
    padding: 0px 30px;
    height: 60px;
    background-color: transparent;
    border-radius: 12px;
    border: 2.5px solid #F29BA9;
    font-family: 'Montserrat';
    font-size: 19px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
}

    .lk__input:focus {
        outline: 1px solid #afafaf;
    }

.add_app__subtitle {
    text-align: left;
    padding-top: 20px;
}

.lk__radio {
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.lk__link {
    padding: 10px 95px;
    display: block;
    background-color: #F69BAA;
    border-radius: 12px;
    font-family: 'Montserrat';
    font-size: 19px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: #FEFEFE;
}

.add_lk__link {
    background-color: #3B524A;
}

.lk__edit {
    opacity: 0;
}

    .lk__edit.lk__edit_active {
        opacity: 1;
    }

.subscription__product {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}

    .subscription__product:last-child {
        margin-bottom: 32px;
    }

.subscription__products_items {
    height: 95px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.info__item_text p,
.info__item_price p {
    width: 150px;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    color: #2B2A29;
}

.info__item_text p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info__item_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 7px;
}

.subscription__products_counter {
    font-family: Philosopher;
    font-weight: 400;
    font-size: 15px;
    line-height: 16.8px;
    letter-spacing: 0%;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 6px;
    background-color: #F69BAA;
    color: #E9ECE7;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.image__item {
    width: 110px;
    height: 95px;
    border: 1px solid #E0C3BC;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .image__item img {
        display: block;
    }

.lk__footer_btn {
    margin-bottom: 42px;
}

/* SUB__MANAGEMENT */
.sub__section {
    height: 100vh;
}

.app_active,
.app_inactive {
    margin-bottom: 0;
}

.sub__menu {
    height: 90vh;
    padding-top: 25px;
    /*padding-bottom: 42px;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sub__menu_top {
    width: 100%;
    height: 60px;
    padding: 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2.5px solid #F29BA9;
    border-radius: 12px;
}

    .sub__menu_top p {
        font-family: 'Montserrat';
        font-size: 19px;
        font-weight: 400;
        line-height: 1.2;
        text-align: left;
        color: #5B5B5B;
    }

.sub__menu_center {
    width: 100%;
    margin-bottom: 2vh;
}

.menu__center_items {
    width: 100%;
    height: 60px;
    padding-left: 14px;
    padding-right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2.5px solid #F29BA9;
    border-radius: 12px;
    margin-bottom: 20px;
}

    .menu__center_items:last-child {
        margin-bottom: 0;
    }

.menu__center_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

    .menu__center_item p {
        font-family: 'Montserrat';
        font-size: 19px;
        font-weight: 400;
        line-height: 1.2;
        text-align: left;
        color: #5B5B5B;
    }

.menu__bottom_items {
    width: 100%;
    height: 60px;
    padding: 0 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    border-radius: 12px;
    background-color: #F5F5F5;
    margin-bottom: 20px;
}

    .menu__bottom_items:last-child {
        margin-bottom: 0;
    }

    .menu__bottom_items p {
        font-family: 'Montserrat';
        font-size: 19px;
        font-weight: 400;
        line-height: 1.2;
        text-align: left;
        color: #B2B3B3;
    }

/* .app_inactive {
    display: none;
} */

/* .inactive__item {
    opacity: 0;
} */

@-webkit-keyframes cityList {
    0% {
        height: 0;
        opacity: 0;
    }

    100% {
        height: 448px;
        opacity: 1;
    }
}

@keyframes cityList {
    0% {
        height: 0;
        opacity: 0;
    }

    100% {
        height: 448px;
        opacity: 1;
    }
}

.city__items, .region__items {
    position: relative;
}

#city__list p, #region__list p, #pvz__list p {
    user-select: none;
}

    #city__list p:hover, #region__list p:hover, #pvz__list p:hover {
        background-color: #f0f0f0;
        cursor: pointer;
    }

#city__list, #region__list, #pvz__list {
    height: 0;
    display: none;
    position: absolute;
    z-index: 100;
    /*top: 66px;*/
    width: 100%;
    background-color: #FFF;
}

    #city__list.city__list_active, #region__list.region__list_active, #pvz__list.pvz__list_active {
        display: block;
        -webkit-animation: cityList 1s forwards;
        animation: cityList 1s forwards;
        background-color: #FFF;
    }

    #city__list p, #region__list p, #pvz__list p {
        padding: 10px 10px;
        font-family: 'Philosopher', sans-serif;
        font-size: 19px;
        font-weight: 400;
        color: #000;
    }

.form__cart_select {
    background-color: transparent;
    width: 100%;
    height: 60.8px;
    max-height: 100px;
    overflow-y: auto;
    border: 2.5px solid #D0D8CE;
    border-radius: 12px;
    padding: 0 20px;
    font-family: 'Montserrat';
    font-size: 19px;
    font-weight: 400;
    line-height: 1.2;
    color: #C5C6C6;
    text-align: left;
    margin-bottom: 15px;
    outline: none;
}

.custom__select {
    position: relative;
    width: 100%;
}

.selected__item {
    height: 66.8px;
    border: 2.5px solid #D0D8CE;
    border-radius: 12px;
    padding: 0 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.2;
    color: #C5C6C6;
    text-align: left;
    margin-bottom: 15px;
    outline: none;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
}

    .selected__item.active {
        color: #000;
    }

.select__list {
    display: none;
    max-height: 230px;
    overflow-y: scroll;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 999;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .select__list::-webkit-scrollbar {
        width: 4px;
        background-color: transparent;
    }

    .select__list::-webkit-scrollbar-thumb {
        background-color: #D0D8CE;
    }

    .select__list li {
        padding: 10px 10px;
        font-family: 'Montserrat', sans-serif;
        font-size: 19px;
        font-weight: 400;
        color: #000;
        user-select: none;
        cursor: pointer;
    }

        .select__list li:hover {
            background-color: #f0f0f0;
        }

.custom__select.open .select__list {
    display: block;
    -webkit-animation: cityList 1s forwards;
    animation: cityList 1s forwards;
}

.acc__price {
    padding-left: 13px;
    width: 100%;
    height: 42px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #F69BAA;
    border-radius: 3px;
    margin-bottom: 12px;
}

.acc__btn {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.price__text {
    font-family: Philosopher;
    font-weight: 400;
    font-size: 11px;
    line-height: 12.32px;
    letter-spacing: 0%;
    color: #FFF;
}

.acc__counter {
    font-family: 'Montserrat', sans-serif;
    color: #FEFEFE;
    font-size: 20px;
}

.acc__about {
    font-family: Philosopher;
    font-weight: 400;
    font-size: 11px;
    line-height: 12.32px;
    letter-spacing: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    background-color: #827080;
    border-radius: 3px;
    text-align: center;
    color: #FEFEFE;
    user-select: none;
    cursor: pointer;
}

/* -------------------- */
.main__swiper {
    width: 100%;
    padding-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 15px;
}

    .main__swiper:last-child {
        padding-bottom: 30px;
    }

.product__block {
    width: 100%;
}

.counter__products {
    position: relative;
}

.main__btn {
    /* padding: 0 13px; */
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* background-color: #F69BAA; */
    border-radius: 12px;
    margin-bottom: 12px;
}



.add_main__btn {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}

.counter-btn {
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.svg__btn {
    width: 20px;
    height: 20px;
}

.acc__btn_count {
    width: 20px;
    height: 20px;
}

.product--info {
    height: 45px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide__info {
    padding: 0 10px;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.count__info {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 16px;
}

.counter__info {
    font-family: 'Montserrat', sans-serif;
    color: #FEFEFE;
    font-size: 16px;
}

.info-link {
    height: 42px;
    border-radius: 12px;
    background-color: #3B524A;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: #FEFEFE;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slide__image {
    width: 100%;
    height: 25vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
    background-color: #FEFEFE;
    border: 1.5px solid #E0C3BC;
    border-radius: 12px;
    margin-bottom: 6px;
}

    .slide__image img {
        height: 20vw;
    }

.counter__info_acc {
    font-family: 'Montserrat', sans-serif;
    color: #FEFEFE;
    font-size: 20px;
}

.minus-btn {
    padding: 6px 15px;
    border-radius: 3px;
    background-color: #827080;
}

.plus-btn {
    padding: 6px 15px;
    border-radius: 3px;
    background-color: #D8E738;
}

.main__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main-btn {
    height: 42px;
    padding: 0 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #F69BAA;
    border-radius: 3px;
}

.delete-btn {
    background-color: #827080;
}

.add-btn {
    background-color: #E58A99;
}

.info-btn {
    background-color: #3B524A;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: #FEFEFE;
    user-select: none;
}

.help__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 10px;
}

    .help__link h3 {
        font-family: Philosopher;
        font-weight: 700;
        font-size: 14px;
        line-height: 26.88px;        
        color: #530B42;
    }

    .help__link .find-pvz-call {
        font-family: Philosopher;
        font-weight: 700;
        line-height: 26.88px;
        padding: 5px;
        font-size: 14px;
        cursor: pointer;
        color: #530B42;
    }

.product__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 6px;
}

    .product__image img {
        width: 100%;
        border-radius: 12px;
        height: 100px;
    }

.position__cart_number {
    padding: 0 10px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    background-color: #F69BAA;
    border-radius: 12px;
}

.cart__btn {
    background-color: transparent;
    display: block;
    width: 25px;
    height: 25px;
}

    .cart__btn svg {
        width: 25px;
        height: 25px;
    }

.cart__count {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: #FEFEFE;
}

.positions__cart_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.positions__cart {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.checkbox__cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    margin-bottom: 32px;
}

.checkbox__items {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.checkbox__text span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2B2A29;
}

.checkbox__text a {
    font-family: Philosopher;
    font-weight: 700;
    font-size: 11px;
    line-height: 12.32px;
    letter-spacing: 0%;
    color: #827080;
}

.lable__checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox__items::before {
    content: "";
    display: block;
    position: relative;
    left: 0;
    top: 0;
    width: 20px;
    min-width: 20px;
    height: 20px;
    /* background-color: transparent; */
    border: 2.5px solid #827080;
    border-radius: 50%;
}

.checkbox__items::after {
    content: "";
    display: none;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 20 20' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cpath fill='%233B524A' fill-rule='evenodd' d='M16.707 5.293a1 1 0 0 1 0 1.414l-8 8a1 1 0 0 1-1.414 0l-4-4a1 1 0 0 1 1.414-1.414L8 12.586l7.293-7.293a1 1 0 0 1 1.414 0z' clip-rule='evenodd' opacity='1' data-original='%233B524A'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.lable__checkbox input:checked + .checkbox__items::after {
    display: block;
}

.lable__checkbox input:focus + .checkbox__items::before {
    border-color: #827080;
}

.product__counter {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: transparent;
}

.product__counter_items {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

    .product__counter_items.active {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

.product__btn svg {
    background-color: transparent;
    width: 25px;
    height: 25px;
}

.product__btn {
    height: 30px;
    width: 100px;
    background-color: #F69BAA;
    border-radius: 12px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.product__count {
    width: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #2B2A29;
}

.swiper-slide.cardSlide img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price__item {
    height: 30px;
    width: 100px;
    min-width: 100px;
    background-color: #3B524A;
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FEFEFE;
}

    .price__item.off {
        display: none;
    }

/* .image__cart_acc {
    border-radius: 12px;
    width: 107px;
    min-width: 107px;
    height: 90px;
    object-fit: cover;
} */

.image__cart_acc {
    padding: 0 10px;
    padding-left: 0;
    width: 107px;
    height: 90px;
    background-color: #827080;
    border-radius: 8px;
}

    .image__cart_acc img {
        width: 107px;
        height: 90px;
        /* object-fit: cover; */
    }

#actionBlock {
    z-index: 999;
}

.text-hint-input {
    font-family: Philosopher;
    font-weight: 400;
    font-style: italic;
    font-size: 11px;
    line-height: 12.32px;
    letter-spacing: 0%;
    color: #827080;
    padding: 0 10px;
}

#full-h {
    height: 100%
}

.main-faq {
    background-color: #D9C7CA;
}

.main-faq-theme {
    font-family: Philosopher;
    font-weight: 700;
    font-size: 18px;
    line-height: 20.16px;
    letter-spacing: 0%;
    color: #530B42;
}

.faq-header-theme {
    font-family: Philosopher;
    font-weight: 700;
    font-size: 23px;
    line-height: 25.76px;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.order-problem-theme {
    font-family: Philosopher;
    /*font-weight: 400;
    font-size: 24px;
    line-height: 26.88px;*/
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}

.banners-main-theme {
    font-family: Philosopher;
    font-weight: 400;
    font-size: 15px;
    line-height: 16.8px;
    letter-spacing: 0%;
}

.main-banner {
    height: 68px;
}

.come-off-btn {
    background-color: #530B42;
    color: #FFFFFF;
    font-family: Philosopher;
    font-weight: 700;
    font-size: 15px;
    line-height: 16.8px;
    letter-spacing: 0%;
    display: block;
    width: 100%;
    background-color: #530B42;
    padding: 12px 0;
    border-radius: 12px;
    font-family: 'Montserrat';
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: #FEFEFE;
}

.index-title-header {
    font-family: Philosopher;
    font-weight: 700;
    font-size: 23px;
    line-height: 25.76px;
    letter-spacing: 0%;
    color: #827080;
}

.index-subtitle-area,
.cart__summ_progress,
.index-title-header,
.accessories,
.progress-stacked,
.main__add_title,
.swiper__container {
    margin: 5px 25px 0;
}

.index-subtitle-area {
    font-family: Philosopher;
    font-weight: 400;
    font-size: 12px;
    line-height: 13.44px;
    letter-spacing: 0%;
}

.cart__summ_progress {
    font-family: Philosopher;
    font-weight: 700;
    font-size: 23px;
    line-height: 25.76px;
    letter-spacing: 0%;
    color: #E58A99;
}

#right-progress-bar > .progress-bar {
    background-color: #827080;
}

#left-progress-bar > .progress-bar {
    background-color: #D9D9D9;
}

#left-progress-bar, #right-progress-bar {
    height: 100%;
}

#cart-progress-title {
    font-family: Philosopher;
    font-weight: 700;
    font-size: 14px;
    line-height: 15.68px;
    letter-spacing: 0%;
    /*color: #827080;*/
}

#cart-progress-bar {
    height: 22px;
}

.sub-item-name {
    font-family: Philosopher;
    font-weight: 700;
    font-size: 13px;
    line-height: 14.56px;
    letter-spacing: 0%;
}

.sub-item-about-count {
    font-family: Philosopher;
    font-weight: 400;
    font-size: 11px;
    line-height: 12.32px;
    letter-spacing: 0%;
    margin-top: 5px;
}

.cart-top-title {
    font-family: Philosopher;
    font-weight: 700;
    font-size: 23px;
    line-height: 25.76px;
    letter-spacing: 0%;
    color: #827080;
}

.positions__delivery_info .info--text,
.positions__cart_info .info--text {
    font-family: Philosopher;
    font-weight: 700;
    font-size: 13px;
    line-height: 14.56px;
    letter-spacing: 0%;
    color: #530B42;
}

.positions__delivery_info .info--text-add,
.positions__cart_info .info--text-add {
    font-family: Philosopher;
    font-weight: 400;
    font-size: 10px;
    line-height: 11.2px;
    letter-spacing: 0%;
}

.info--price-promo {
    background-color: #E58A99;
    font-family: Philosopher;
    font-weight: 700;
    font-size: 11px;
    line-height: 12.32px;
    letter-spacing: 0%;
    padding: 6px 26px;
    border-radius: 4px;
    color: #FFFFFF;
}

.about-subscribe-list {
    font-family: Philosopher;
    font-weight: 400;
    font-size: 14px;
    line-height: 15.68px;
    letter-spacing: 0%;
}

.nav-subscribe-count {
    font-family: Philosopher;
    font-weight: 700;
    font-size: 23px;
    line-height: 25.76px;
    letter-spacing: 0%;
    color: #827080;
}

.nav-subscribe-sum {
    color: #E58A99;
}

.subscription__products_items .info__item button {
    font-family: Philosopher;
    font-weight: 400;
    font-size: 11px;
    line-height: 12.32px;
    letter-spacing: 0%;
    color: #FFFFFF;
}

#success-save-modal .modal-content,
#question-modal .modal-content {
    background-color: #E58A99;
}

#success-save-modal p,
#question-modal p {
    font-family: Philosopher;
    font-weight: 700;
    font-size: 23px;
    line-height: 25.76px;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}

#success-save-modal hr {
    color: #D8E738;
    height: 3px;
    background-color: #D8E738;
    margin: 2px;
}

#success-save-modal button {
    background-color: #FFFFFF;
    font-family: Philosopher;
    font-weight: 700;
    font-size: 20px;
    line-height: 22.4px;
    letter-spacing: 0%;
    color: #E58A99;
}