:root {
    --text-secondary: #919191;
}

@media (min-width: 992px) {
    .visible-991 {
        display: none;
    }
}

@media (max-width: 991px) {
    .hide-991{
        display: none;
    }
}

/* COMPONENTS START */

.flags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.flags__item {
    border-radius: 6px;
    padding: 4px 8px;
    background-color: var(--sticker_color);
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--white_text_black);
    width: fit-content;
    line-height: 1;
    text-transform: uppercase;
}

.flags__item.--new {
    background: var(--theme-base-color);
}

.flags__item.--discount {
    background: #FFEE88;
}

.flags__item.--exclusive {
    color: #fff;
    background: #F164E3;
}

.flags__item.--danger {
    color: #fff;
    background: #E33333;
}

/******/
.custom-tooltip {
    background: transparent;
    height: 18px;
    width: 18px;
    line-height: 1;
    padding: 0;
    position: relative;
}

.custom-tooltip-text {
    background: #000;
    border-radius: 4px;
    padding: 4px 8px;
    width: max-content;
    max-width: 260px;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    color: #fff;
    font-size: 14px;
    z-index: 10;
    display: none;
}

.custom-tooltip-text span {
    position: relative;
    z-index: 2;
    background: #000;
}

.custom-tooltip-text:after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    background: #000;
    bottom: -8px;
    left: 49%;
    transform: rotate(45deg) translateX(-52%);
    z-index: -1;
}


.custom-tooltip svg {
    fill: transparent;
    cursor: pointer;
}

.custom-tooltip svg:hover ~ .custom-tooltip-text {
    display: block;
}

/* COMPONENTS END */

/* TOPIC START */

.topic-options {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.topic-options__el {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-secondary);
}

.topic-options__el span:before {
    content: attr(data-text-desc);
    display: block;
}

@media (max-width: 600px) {
    .topic-options__el span:before {
        content: attr(data-text-mob);
    }

    .topic-options {
        margin-top: 16px;
        gap: 24px;
    }
}

/* TOPIC END */

/* BASKET PRODUCT START */

.s-basket {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    margin-top: 32px;
}

.s-basket-wrap {
    width: calc(100% - 332px - 24px);
    padding-right: 27px;
    border-right: 1px solid #0000001A;

}

.s-basket-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 24px;
}

.s-basket-list {
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.s-basket-list .basket-btn-checkout {
    display: none;
}

.basket-product {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

.basket-product__img {
    width: 150px;
    height: 150px;
    flex: none;
}

.basket-product__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.basket-product__body {
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%;

}

.basket-product__content {
    max-width: 507px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.basket-product__flags {
}

.basket-product__section-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 8px;
    color: #22222280;
}

.basket-product__name {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
}

.basket-product__name a {
    color: var(--white_text_black);
}

.basket-product__char-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.basket-product__char {
    color: #22222280;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    padding-left: 12px;
    border-left: 1px solid #E1E1E1;
}

.basket-product__char:first-child {
    padding-left: 0;
    border-left: none;
}

.basket-product__char span {
    color: var(--white_text_black);
}

.basket-product__calc-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 105px;
    min-width: 100px;
    margin-left: auto;
}

.basket-product__calc {
    display: flex;
    align-items: center;
    background-color: var(--darkgrey_bg_black);
    border-radius: var(--border-radius);
}

.basket-product__calc-symbol {
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: 0 0;
    border: none;
    transition: 300ms all ease;
    -webkit-user-select: none;
    position: relative;
    flex: none;
}

.basket-product__calc-symbol:hover:after,
.basket-product__calc-symbol._plus:hover:before {
    background: var(--theme-base-color);
}

.basket-product__calc-symbol:after {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
    width: 12px;
    height: 2px;
    background-color: #979797;
    content: "";
    transition: 300ms all ease;
}

.basket-product__calc-symbol._minus {
}

.basket-product__calc-symbol._plus:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: 0px;
    width: 2px;
    height: 12px;
    background-color: #979797;
    content: "";
    transition: 300ms all ease;
}

.basket-product__calc-block {
}

.basket-product__calc-filed {
    border: none;
    background: #f8f8f8;
    font-weight: 600;
    width: 100%;
    padding: 7px 0 7px;
    font-size: 14px;
    line-height: 14px;
    height: 36px;
    color: #333;
    color: var(--white_text_black);
    text-align: center;
    background: 0 0;
}

.basket-product__calc-price {
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    text-align: center;
    color: var(--text-secondary);


}

.basket-product__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 30px 0;
    width: 140px;
    flex: none;
}

.basket-product__price-old {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #22222280;
    margin-bottom: 8px;
}

.basket-product__price-old-res {
    text-decoration: line-through;
    white-space: nowrap;
}

.basket-product__price-old span {
}

.basket-product__price-current {
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    text-align: right;
    color: var(--white_text_black);
}

.basket-product__remove {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.basket-product__remove svg {
    color: #999999;
}

.basket-product__remove svg:hover {
    color: var(--theme-base-color);
}

.basket-expend {
    justify-content: center;
}

.basket-expend .basket-items-list-item-removed-container {
    display: flex;
    gap: 40px;
    row-gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: #22222280;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.basket-expend .basket-items-list-item-removed-block a {
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 1560px) {
    .basket-product__body {
        gap: 20px;
    }
}

@media (max-width: 1220px) {
    .basket-product__body {
        flex-wrap: wrap;
    }

    .basket-product__content {
        width: 100%;
        max-width: 100%;
    }

    .basket-product__price {
        padding: 0;
    }
}

@media (max-width: 1024px) {
    .s-basket {
        flex-direction: column;
    }

    .basket-product {
        border: 1px solid #EDEDED;
        border-radius: 16px;
        padding: 14px 12px;
    }

    .s-basket-wrap {
        width: 100%;
        padding: 0;
        border: 0;
    }

    .basket-product__remove {
        top: 12px;
        right: 12px;
    }

    .s-basket-list .basket-btn-checkout {
        display: block;
    }
}

@media (max-width: 600px) {

    .basket-product {
        gap: 10px;
    }

    .basket-product__img {
        width: 100px;
        height: 100px;
    }

    .s-basket-title {
        display: none;
    }
}

@media (max-width: 460px) {

    .basket-product__img {
        width: 50px;
        height: 50px;
    }

    .basket-product__section-title {
        font-size: 14px;
    }

    .basket-product__name {
        font-size: 14px;
    }

    .basket-product__char {
        font-size: 12px;
    }

    .basket-product__price-old {
        font-size: 12px;
    }

    .basket-product__price-current {
        font-size: 18px;
    }

    .basket-product__calc-wrap {
        order: 3;
    }

    .basket-product__price {
        width: auto;
        align-items: flex-start;

    }

    .basket-product__price-current {
        text-align: left;
    }
}

/* BASKET PRODUCT END */

/* DETAIL ORDER PRODUCT START */
.product-details {
    width: 332px;
    flex: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-details__box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-details__title {
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--white_text_black);
}

.product-details__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-details__el {
    color: #919191;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
}

.product-details__el:before {
    display: none;
}

.product-details__el .custom-tooltip {
}

.product-details__name {
    line-height: 1;
}

.product-details__value {
    line-height: 1;
    display: flex;
    gap: 8px;
}

.product-details__value {
    width: max-content;
    flex: none;
}

.product-details__value span {
    padding-right: 8px;
}

.product-details__value ._lightning {
    color: var(--theme-base-color);
    width: 16px;
    height: 16px;
}

.product-details__result {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    color: var(--white_text_black);
}

.product-details .basket-checkout-block {
}

.form-group {
    position: relative;
}

.form-group .form-control {
    padding-right: 40px;
}

.form-group .basket-coupon-block-coupon-btn {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    opacity: 0.35;
    cursor: pointer;
}

.form-group .basket-coupon-block-coupon-btn:hover {
    opacity: 1;
}

.product-details .basket-btn-checkout {
    width: 100%;
}

@media (max-width: 1024px) {
    .product-details .basket-checkout-block {
        display: none;
    }
}

@media (max-width: 600px) {
    .product-details__el {
        font-size: 14px;

    }

    .product-details__name {
        color: #222222;
    }

    .product-details {
        border: 1px solid #EDEDED;
        border-radius: 16px;
        padding: 16px;
    }

    .product-details__result {
        font-size: 20px;
    }

    .product-details__list {
        margin: 0;
    }
}

/****************/

.product-details-log {
    background-color: #EEF2FF;
    border-radius: 12px;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.product-details-log__text {
    padding-right: 56px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: var(--theme-base-color);
}

.product-details-log__text p {
    margin: 0;
}

.product-details-log__text a {
    text-decoration: underline;
}

.product-details-log__decor {
    width: 88px;
    height: auto;
    object-fit: contain;
    position: absolute;
    bottom: 0;
    right: 0;
}

/***************/

.product-details-note {
    background-color: #FF00000D;
    border-radius: 12px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    color: var(--white_text_black);
}

.product-details-note__icon {
    position: absolute;
    width: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
}

.product-details-note__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
    padding-right: 44px;
}

.product-details-note__text {
    padding-right: 44px
}

.product-details-note__text p {
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}


@media (max-width: 1024px) {
    .product-details {
        width: 100%;
    }
}


/* DETAIL ORDER PRODUCT END */


/* SAMPLES START */

.samples {
    margin-top: 100px;
}

.samples__title {
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 16px;
}

.samples__desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #919191;
}

.samples-filter {
    margin-top: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

}

.samples-filter__btn {
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.samples-filter__btn input {
    display: none;
}

.samples-filter__btn input:checked ~ .samples-filter__btn-inner {
    border-color: var(--theme-base-color);
    background: var(--theme-base-color);
}

.samples-filter__btn input:checked ~ .samples-filter__btn-inner span {
    padding-right: 11px;
    border-right: 1px solid #FFFFFF80;
    color: #fff;
}

.samples-filter__btn input:checked ~ .samples-filter__btn-inner svg {
    display: block;
}

.samples-filter__btn-inner {
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid #EEEEEE;
    padding: 8px 11px;
    border-radius: 8px;
}


.samples-filter__btn-inner span {
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    display: block;
    color: var(--white_text_black);
}

.samples-filter__btn-inner svg {
    display: none;
    width: 9px;
    height: 9px;
    fill: #fff;
}

.samples-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    padding-right: 88px;
}

.samples-card {
    display: flex;
    flex-direction: column;
}

.samples-card__img {
    margin-bottom: 16px;
    display: flex;
}

.samples-card__img img {
    width: 100%;
    height: 148px;
    object-fit: contain;
}

.samples-card__price {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: var(--white_text_black);
    margin-bottom: 12px;
}

.samples-card__name {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: var(--white_text_black);
    margin-bottom: 8px;
}

.samples-card__brand {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #999999;
}

.btn.samples-card__btn {
    margin-top: auto;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 1440px) {
    .samples-grid {
        padding: 0;
    }
}


@media (max-width: 600px) {
    .samples {
        margin-top: 57px;
    }

    .samples-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .samples-filter__btn {
        width: max-content;
        flex: none;
    }

    .samples-grid {
        gap: 16px;
        row-gap: 20px;
    }

    .samples__desc {
        font-weight: 400;
    }

    .samples__title {
        font-size: 26px;
        margin-bottom: 12px;
    }
}

/* SAMPLES END */


/* PROGRAM LOYALTY START */

.s-program {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.s-program-top {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.s-program-top-box {
    padding: 20px 24px;
    width: fit-content;
    box-shadow: 0px 0px 8px 0px #0000001A;
    border-radius: 12px;
}

.s-program-top-box__label {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #555555;
    margin-bottom: 12px;
}

.s-program-top-box__value {
    font-weight: 600;
    font-size: 28px;
    line-height: 1;
    color: var(--white_text_black);
    margin: 0;
}

.s-program-top-box-accent {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 12px;
    padding: 20px 24px;
    width: fit-content;
    border: 1px solid #2196E0;
    background-color: #ECF9FE;
    width: 308px;
}

.s-program-top-box-accent img {
    width: 71px;
    height: 65px;
    object-fit: contain;
}

.s-program-top-box-accent p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    margin: 0;
}

@media (max-width: 460px) {
    .s-program {
        gap: 40px;
    }

    .s-program-top-box, .s-program-top-box-accent {
        width: 100%;
        padding: 16px;
    }

    .s-program-top-box {
        box-shadow: 0px 0px 8px 0px #0000000D;

    }

    .s-program-top-box__value {
        font-size: 26px;
        font-weight: 500;
    }
}

/*--------------*/

.program-main {
    box-shadow: 0px 0px 8px 0px #0000001A;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 44px;
}

.program-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 205px;
}

.program-card.--standard {
    background: linear-gradient(138.8deg, #CCE8FE 5.7%, #CDA0FF 27.03%, #8489F5 41.02%, #CDF1FF 68.68%, #B591E9 94%),
    linear-gradient(0deg, rgba(0, 70, 150, 0.2), rgba(0, 70, 150, 0.2));
}

.program-card.--silver {
    background: linear-gradient(319.96deg, #A8A8A6 15.87%, #696969 48.67%, #F9F8F6 64.17%, #D4D4D4 75.79%, #7F7F7F 88.5%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
}

.program-card.--gold {
    background: linear-gradient(135.34deg, #856220 15.43%, #F4E683 34.91%, #BF923D 50.85%, #4E341B 68.56%, #F1EA82 86.26%);
}

.program-card.--platinum {
    background: linear-gradient(137.95deg, #7A96AC 2.28%, #dfe0e8 19.8%, #C2D4E1 32.94%, #f1f1f1 50.16%, #D4DEE5 62.15%, #ABBDC8 78.69%, #BCCAD7 95.24%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.29));
}

.program-card__percent {
    position: absolute;
    font-weight: 600;
    font-size: 97px;
    line-height: 1.3;
    letter-spacing: -5%;
    top: 0;
    right: 0;
    transform: translateX(16%);
    color: #FFFFFF;
    opacity: 0.3;
}

.program-card__logo {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 2%;
}

.program-card__logo img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.program-card__footer {
    margin-top: auto;
    border-top: 1px solid #FFFFFF80;
    backdrop-filter: blur(4px);
    background: #FFFFFF26;
    color: #fff;
    padding: 16px 20px 20px;
}

.program-card__label {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 7px;
}

.program-card__name {
    margin: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
}

.program-main-card {
    height: 325px;
    width: 570px;
    flex: none;
}

.program-main-card .program-card__name {
    font-weight: 500;
    font-size: 28px;
    line-height: 1;
}

.program-main-card .program-card__footer {
    padding: 16px 32px 20px;
}

.program-main-card .program-card__percent {
    font-size: 158px;
    letter-spacing: -5%;
    line-height: 1.2;
}

.program-main-card .program-card__logo {
    padding: 32px;
    gap: 8px;
    font-size: 18px;
}

.program-main-card .program-card__logo img {
    height: 42px;
}

.program-main-info {
    display: flex;
    flex-direction: column;
}

.program-main-info__head {
    display: flex;
    gap: 12px;
}

.program-main-info__head-text {
}

.program-main-info__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 12px;
}

.program-main-info__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--white_text_black);
    margin: 0;
}

.program-main-info__min-card {
    width: 110px;
    height: 60px;
    object-fit: contain;
    flex: none;
}

.program-main-progress {
    position: relative;
    padding-bottom: 27px;
    margin-top: 20px;
    margin-bottom: 16px;
}

.program-main-progress__line {
    background-color: #ECF9FE;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    height: 8px;
}

.program-main-progress__line:before {
    position: absolute;
    content: "";
    height: 100%;
    top: 0;
    left: 0;
    background-color: #2196E0;
    border-radius: 8px;
    width: var(--progress);
}

.program-main-progress__max, .program-main-progress__min {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #555555;
    position: absolute;
    bottom: 0;
}

.program-main-progress__min {
    left: 0;
}

.program-main-progress__max {
    right: 0;
}

.program-main-info__bottom {
    margin-top: auto;
}

.program-main-info__bottom-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 16px;
}

.program-main-info__bottom ol {
    list-style-type: decimal;
    list-style-position: inside;
    list-style: none;
    counter-reset: my-awesome-counter;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 18px;
}

.program-main-info__bottom ol li {
    counter-increment: my-awesome-counter;
    padding-left: 32px;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    margin: 0;
}

.program-main-info__bottom ol li:before {
    content: counter(my-awesome-counter);
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #2196E0;
    border-radius: 50%;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    color: #fff;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-more__btn {
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2196E0;
    cursor: pointer;
}

.box-more__btn:before {
    content: attr(data-show-text);
    display: block;
}

.box-more__btn.active:before {
    content: attr(data-hidden-text);
}

.box-more__btn.active svg {
    transform: rotateX(180deg);
}

.box-more__btn.active {
    margin-top: 16px;
}

.box-more__btn svg {
    width: 12px;
    height: 12px;
    transition: all 0.2s;
}

.box-more__hidden {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s 0s;
    overflow: hidden;
}

.box-more__hidden.active {
    grid-template-rows: 1fr;

}

.box-more__inner {
    min-height: 0;
}

.box-more__inner p {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1440px) {
    .program-main {
        gap: 16px;
    }

    .program-main-card {
        height: 274px;
        width: 513px;
    }

    .program-main-card .program-card__percent {
        font-size: 116px;
    }
}


@media (max-width: 1360px) {
    .program-main-card {
        height: 251px;
        width: 420px;
    }

    .program-main-card .program-card__percent {
        font-size: 97px;
    }
}

@media (max-width: 1220px) {
    .program-main {
        flex-direction: column;
        row-gap: 24px;
    }
}

@media (max-width: 768px) {
    .program-main-card {
        width: 100%;
        max-width: 375px;
        height: 179px;
    }

    .program-main-card .program-card__logo, .program-card__logo {
        padding: 20px;
        font-size: 10px;
    }

    .program-main-card .program-card__logo img {
        height: 24px;
    }

    .program-main-card .program-card__footer {
        padding: 12px 16px 16px;
    }

    .program-card__label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .program-main-card .program-card__name {
        font-size: 20px;
    }

    .program-card__name {
        font-size: 18px;
    }
}

@media (max-width: 460px) {

    .program-card {
        height: 179px;
    }

    .program-main {
        padding: 0;
        box-shadow: 0 0 0 0;
    }

    .program-main-info__min-card {
        display: none;
    }

    .program-main-info__title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .program-main-info__bottom-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .program-card__name {
        font-size: 16px;
    }
}

/*--------------*/

.program-cards {
    box-shadow: 0px 0px 8px 0px #0000001A;
    border-radius: 12px;
    padding: 16px 20px;
}

.program-cards__title {
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 20px;
}

.program-cards__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    row-gap: 24px;
}

.program-cards__box {
    display: flex;
    flex-direction: column;
    max-width: 375px;
    flex: 1 1 328px;
}

.program-cards__box-desc {
    padding: 12px 20px 0;
    color: #555555;
}

@media (max-width: 460px) {

    .program-cards__title {
        font-size: 26px;
    }

    .program-cards {
        padding: 0;
        box-shadow: 0 0 0 0;
    }

    .program-cards__box-desc {
        font-size: 14px;
        padding: 10px 12px 0;
    }
}

/* PROGRAM LOYALTY END */


/*** PRODUCT START ***/

/* top start */
.product-page {
}

.product-wrap {
    width: 100%;
    display: flex;
    --gap: 80px;
    --width-info: 643px;
    gap: var(--gap);
    margin-bottom: 60px;
}

.product-box-sliders {
    width: calc(100% - var(--width-info) - var(--gap));
    display: flex;
    gap: 12px;
}

.swiperProduct {
    height: 700px;
}

.swiperProduct .swiper-pagination {
    display: none;
}

.swiperProduct .swiper-wrapper {
    height: 100%;
}

.swiperProduct .swiper-slide {
    height: 100%;
}

.swiperProduct .swiper-slide .swiper-img {
    height: 100%;
}

.swiperProduct .swiper-slide .swiper-img img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiperProduct .flags {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
}

.swiperNavProduct {
    width: 64px;
    flex: none;
}

.swiperNavProduct .swiper-slide {
    width: 100%;
    height: 64px;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiperNavProduct .swiper-slide .swiper-img {
    width: 100%;
    height: 100%;
}

.swiperNavProduct .swiper-slide.swiper-slide-thumb-active {
    border-color: #000;
}

.swiperNavProduct .swiper-slide.swiper-slide-thumb-active img {
    transform: scale(0.85);
}

.swiperNavProduct .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.product-info {
    width: var(--width-info);
}

.product-info__type {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #919191;
    margin-bottom: 10px;
}

.product-info__title {
    font-weight: 500;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 40px;
}

.product-filter {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.product-filter__label {
    color: #22222280;
    margin-bottom: 12px;
}

.product-filter__options {
    display: flex;
    gap: 8px;
}

.product-filter__size {
    border: none;
    cursor: pointer;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    padding: 10px 20px;
    color: #222222;
    background-color: #fff;
    margin: 0;
    line-height: 1;
    font-weight: 400;
    font-size: 16px;
}

.product-filter__size._active {
    border-color: #000;
}

.select-color {
    width: fit-content;
    position: relative;
}

.select-color__head {
    padding: 15px 21px;
    border-radius: 8px;
    border: 1px solid #DDDDDD;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: max-content;
    max-width: 383px;
    min-width: 260px;
    cursor: pointer;
    margin: 0;
}

.select-color__head .svg {
    width: 11px;
    height: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-color__hidden {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    max-width: 100%;
    display: none;
}

.select-color._active .select-color__hidden {
    display: block;
}

.select-color__options {
    padding: 15px 21px;
    border-radius: 8px;
    border: 1px solid #DDDDDD;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    z-index: 10;
}

.select-color__btn, .select-color__res {
    border: none;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #222222;
    font-weight: 600;
}

.select-color__btn {
    font-size: 14px;
}

.select-color__btn-color {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.product-price__current {
    font-weight: 600;
    font-size: 28px;
    line-height: 1;
    color: #222222;
}

.product-price__old {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    text-decoration: line-through;
    color: #22222280;
}

.product-price__info {
    padding: 11px 16px;
    border-radius: 8px;
    background-color: #2196E01A;
    color: #2196E0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    margin-left: 32px;
}

.product-price__info svg {
    width: 24px;
    height: 24px;
    stroke: #2196E0;
    flex: none;
}

.product-login {
    display: flex;
    align-items: center;
    gap: 13px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #222222;
    margin-bottom: 32px;
}

.product-login svg {
    stroke: #17241980;
    flex: none;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-actions__to-cart {
    width: 324px;
}

.product-actions .item-action--basket:not(.active) + .in_cart {
    display: none;
}

.product-actions .item-action--basket.active {
    display: none;
}

.product-actions .item-action--favorite {
    width: 47px;
    height: 47px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E9F5FC;
}

.product-actions .item-action--favorite .svg {
    opacity: 1;
}

.product-actions .item-action--favorite:not(.active) .svg svg use {
    fill: transparent;
    stroke: #2196E0;

}

@media (max-width: 1560px) {
    .product-wrap {
        --width-info: 500px;
    }

    .product-price__info {
        margin: 0;
    }
}

@media (max-width: 1360px) {
    .swiperProduct {
        height: auto;
    }

    .swiperProduct .swiper-slide {
        height: auto;
    }

    .swiperProduct .swiper-slide .swiper-img img {
        object-fit: cover;
    }
}

@media (max-width: 1220px) {
    .product-wrap {
        --gap: 20px;
    }

    .product-info__title {
        font-size: 32px;
    }
}

@media (max-width: 1024px) {

    .product-wrap {
        flex-direction: column;
    }

    .product-info {
        display: contents;
    }

    .product-info__head {
        order: -1;
    }

    .product-box-sliders {
        width: 100%;
    }

    .swiperProduct {
        padding-bottom: 10px;
    }

    .swiperProduct .swiper-pagination {
        display: block;
        bottom: 0;
    }

    .swiperProduct .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 2px;
        opacity: 1;
        background: #88888080;
        border-radius: 0;
        margin: 0 1px;
    }

    .swiperProduct .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #222222;
    }

    .swiperProduct .swiper-slide .swiper-img img {
        object-fit: contain;
        max-height: 60vw;
    }

    .product-info__body {
        display: flex;
        flex-direction: column;
    }

    .product-price {
        order: -1;
    }

}

@media (max-width: 768px) {

    .product-wrap {
        gap: 0;
        margin-bottom: 40px;
    }

    .product-box-sliders {
        margin-bottom: 24px;
    }

    .swiperNavProduct {
        display: none;
    }

    .product-info__type {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .product-info__title {
        margin-bottom: 16px;
    }

    .product-price__info {
        font-size: 14px;
    }

    .product-price__info svg {
        width: 16px;
        height: 16px;
    }

    .product-login {
        color: #17241980;
    }

    .swiperProduct .swiper-slide .swiper-img img {
        max-height: 100vw;
    }

}

@media (max-width: 460px) {
    .select-color__head, .select-color {
        width: 100%;
        max-width: 100%;

    }
}

/* top end */

/* detail start */

.product-detail {
}


.product-detail-info .tabs{
    margin-bottom: 32px;
}

.content-text{
    font-weight: 500;
    color: #222222;

}

.content-char ul{
    list-style: none;
    font-weight: 400;
}


.content-char ul li{
    color: #222222;
}
.content-char ul li span:first-child{
    color: #22222280;
}

.content-char ul li:before {
    display: none;
}



.js-acc-panel {
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s;
}


.accordion{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion__element{
    padding: 12px;
    border-radius: 8px;
    background-color: #F4F4F4;
}

.accordion__btn{
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #222222;
}

.accordion__btn.active .accordion__icon svg{
    transform: rotate(45deg);
}

.accordion__icon{
    width: 24px;
    height: 24px;
}

.accordion__icon svg {
    transition: all 0.3s;
}

.accordion__panel{}

.accordion__inner{
    padding-top: 10px;
}

.accordion__inner .content-text{
    color: #555555;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}



/* detail end */


/*** PRODUCT END ***/

.heading-icons {
    display: none;
}