.toast-box {
    z-index: 9999;
    position: fixed;
    top: 52px;
    right: 0;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-end;
}
@media screen and (max-width: 1024px) {
    .toast-box {
        top: 120px;
    }
}
@media screen and (max-width: 640px) {
    .toast-box {
        top: 110px;
    }
}
@media screen and (max-width: 480px) {
    .toast-box {
        top: 98px;
    }
}
html.is-sticky .toast-box {
    top: 90px;
}
.toast {
    display: inline-flex;
    align-items: center;
    max-width: 472px;
    border-radius: 6px 0 0 6px;
    background-color: #ffffff;
    animation: notification-open 0.4s cubic-bezier(.01,1.01,.97,.94);
    animation-fill-mode: forwards;
    opacity: 0;
    transform: translateY(100%);
    margin-bottom: 12px;
    overflow: hidden;
}
.toast:last-child {
    margin-bottom: 0;
}
.toast.is-closed {
    animation: notification-close 0.4s ease-in;
}
@keyframes notification-open {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes notification-close {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}
.toast__text {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #21211e;
}
.toast__text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.29;
    margin: 0;
}
.toast__image {
    width: 66px;
    flex: 1 0 auto;
    transform: translateY(-100%);
    padding: 8px;
    opacity: 0;
    animation: showToastImage 0.2s ease-out 0.4s forwards;
    background-color: #fff;
    border-radius: 6px;
}
@keyframes showToastImage {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.toast__text-block {
    opacity: 0;
    transform: translateY(100%);
    animation: showToastText 0.2s ease-out 0.4s forwards;
    padding-inline-end: 48px;
}
@keyframes showToastText {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.toast__container {
    display: flex;
    align-items: center;
    min-height: 80px;
    padding: 10px;
    column-gap: 16px;
}
.toast__title {
    font-size: 18px;
    color: #000000;
    margin: 0;
    line-height: 1.13;
    font-weight: 400;
}
.toast #mb-ajaxwishlist-wrapper,
.toast #mb-ajaxcart-wrapper {
    max-width: none;
    min-width: 0;
    overflow: initial;
}
.toast .button-close {
    position: absolute;
    right: 14px;
    top: 50%;
    margin-top: -12px;
    cursor: pointer;
    box-shadow: none !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0;
}
.toast-success .toast__container {
    background-color: #cfedcd;
}
.toast-error .toast__container {
    background-color: #FFCFCF;
}

@media screen and (min-width:1024px) {
    .extensa_staticlanding-staticlanding-view .sales-subheader__nav {
        padding-left: 244px;
    }
    .extensa_staticlanding-staticlanding-view .sales-subheader__list {
        display: table;
        width: 100%;
    }
    .extensa_staticlanding-staticlanding-view .sales-subheader__item {
        display: table-cell;
        vertical-align: top;
    }
    .extensa_staticlanding-staticlanding-view .sales-subheader__nav--large .sales-subheader__anchor {
        min-height: 80px;
        padding-top: 0;
        padding-bottom: 0;
    }
    .extensa_staticlanding-staticlanding-view  .sales-subheader__actions{
        margin-left: 20px;
    }
}

.extensa_staticlanding-staticlanding-view .tocart {
    cursor: pointer;
}
.extensa_staticlanding-staticlanding-view .cart {
    display: flex;
    width: 100%;
    color: #fff;
    text-decoration: none;
}
.extensa_staticlanding-staticlanding-view .cart::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
}
.extensa_staticlanding-staticlanding-view .cart.active .mh-sales__action-holder::after,
.extensa_staticlanding-staticlanding-view .cart.active .sales-subheader__action-holder::after {
     animation: fillCart 0.4s ease-out forwards;
}
.extensa_staticlanding-staticlanding-view .mh-sales__action-holder,
.extensa_staticlanding-staticlanding-view .sales-subheader__action-holder {
    position: relative;
}
.extensa_staticlanding-staticlanding-view .mh-sales__action-holder.loading-mask,
.extensa_staticlanding-staticlanding-view .sales-subheader__action-holder.loading-mask {
    display: none !important;
}
.extensa_staticlanding-staticlanding-view .mh-sales__action-holder::after,
.extensa_staticlanding-staticlanding-view .sales-subheader__action-holder::after {
    content: '';
    position: absolute;
    left: 6px;
    bottom: 11px;
    width: 21px;
    height: 10px;
    background-image: url('../images/cart-fill.svg');
    background-repeat: no-repeat;
    background-size: contain;
    transform: scaleX(0.9) translateY(1px);
    opacity: 0;
}
.extensa_staticlanding-staticlanding-view .mh-sales__action-holder::after {
    bottom: -11px;
}
@media screen and (max-width:1024px) {
    .extensa_staticlanding-staticlanding-view .mh-sales__action-holder,
    .extensa_staticlanding-staticlanding-view .sales-subheader__action-holder {
        bottom: 9px;
        width: 18px;
        height: 7px;
    }
}
@media screen and (max-width:640px) {
    .extensa_staticlanding-staticlanding-view .mh-sales__action-holder::after {
        background-size: 15px;
    }
}
.loading-mask {
    background-color: rgba(255,239,227, 0.5);
    z-index: 9999999 !important;
    bottom: 0;
    left: 0;
    margin: auto;
    position: fixed;
    right: 0;
    top: 0;
}
.spinner {
    background: url('../images/logo-loading.png');
    background-size: 100%;
    width: 40px;
    height: 40px;
    display: block;
    animation: loader 2s linear both infinite;
    margin-left: -20px;
    margin-top: -20px;
    margin-right: 0;
}
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader__img {
    display: block;
    animation: loader 2s linear both infinite;
}
.loader img {
    display: none;
}
.loader:after {
    content: '';
    background: url('../images/logo-loading.png');
    background-size: 100%;
    width: 36px;
    height: 36px;
    display: block;
    animation: loader 2s linear both infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
}
@keyframes loader {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(360deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}
.loader--full-screen {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 100000;
}
.loader--full-screen .loader__img {
    width: 70px;
    height: 70px;
}
.loader--component {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10000;
}
.loader--component .loader__img {
    width: 40px;
    height: 40px;
 }

.copyright--extensa span {
    padding-bottom: 3px;
}
.copyright--extensa a {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}
.product-item-subnames {
    height: 18px;
    overflow: hidden;
    margin-bottom: 5px;
}

.product-item-vertical .product-item-name {
    height: 38px;
}

.page-wrapper .promo-slider .product-item-vertical .product-item-name {
    margin-bottom: 0;
}
.mh-sales__menu-btn .button-menu__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 19px;
    width: 23px;
    height: 23px;
    position: relative;
    z-index: 2;
}
.mh-sales__menu-btn .button-menu__icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #f97400;
    border-radius: 2px;
    transition: background-color ease .2s;
}
.mh-sales__menu-btn .button-menu__icon span:nth-child(2) {
    margin: 3px 0;
}
.mh-sales__menu-btn-text {
    text-align: left;
}

.background-ending {
    visibility: hidden;
    z-index: 99999999;
    background-color: rgba(0, 0, 0, 0.85);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.background-ending > div {
    box-shadow: 0px 0px 2px rgba(255, 255, 255, 0.2);
    display: inline-block;
    border-radius: 30px;
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.background-ending a {
    color: #000;
    text-decoration: none;
    padding: 0 5px;
    margin-top: 5px;
    display: inline-block;
}

.background-ending img {
    border-radius: 30px;
    display: block;
    width: 100%;
}

@media screen and (min-width: 640px) {
    .product-item-vertical .product-item-info .label-discount,
    .product-item-vertical .product-item-inner .label-discount {
        height: 47px;
        width: 47px;
    }

    .product-item-vertical .product-item-actions .actions-primary {
        padding: 11px;
    }
    .product-item-vertical .product-item-actions .actions-primary .icon {
        height: 24px;
        width: 24px;
    }
}
@media screen and (max-width: 640px) {
    .product-item-vertical .product-item-info .label-discount,
    .product-item-vertical .product-item-inner .label-discount {
        height: 40px;
        width: 40px;
    }
}

.modal-slide,
.modal-popup {
    bottom: 0;
    left: 0;
    min-width: 0;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s .3s, opacity .3s ease;
    transition: visibility 0s .3s, opacity .3s ease;
}
.modal-slide._show,
.modal-popup._show {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}
.modal-slide._show .modal-inner-wrap,
.modal-popup._show .modal-inner-wrap {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-slide .modal-inner-wrap,
.modal-popup .modal-inner-wrap {
    background-color: #ffffff;
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.35);
    opacity: 1;
    pointer-events: auto;
}
.modal-slide {
    left: 44px;
    z-index: 900;
}
.modal-slide._show .modal-inner-wrap {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.modal-slide .modal-inner-wrap {
    height: 100%;
    overflow-y: auto;
    position: static;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    width: auto;
}
.modal-slide._inner-scroll .modal-inner-wrap {
    overflow-y: visible;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.modal-slide._inner-scroll .modal-header,
.modal-slide._inner-scroll .modal-footer {
    -webkit-flex-grow: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.modal-slide._inner-scroll .modal-content {
    overflow-y: auto;
}
.modal-slide._inner-scroll .modal-footer {
    margin-top: auto;
}
.modal-slide .modal-header,
.modal-slide .modal-content,
.modal-slide .modal-footer {
    padding: 0 2.6rem 2.6rem;
}
.modal-slide .modal-header {
    padding-bottom: 2.1rem;
    padding-top: 2.1rem;
}
.modal-popup {
    z-index: 900;
    left: 0;
    overflow-y: auto;
}
.modal-popup.confirm .modal-inner-wrap {
    max-width: 50rem;
}
.modal-popup.confirm .modal-inner-wrap .modal-content {
    padding-right: 7rem;
}
.modal-popup._show .modal-inner-wrap {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.modal-popup .modal-inner-wrap {
    margin: 5rem auto;
    width: 75%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    box-sizing: border-box;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: transform .2s ease;
}
.modal-popup._inner-scroll {
    overflow-y: visible;
}
.ie11 .modal-popup._inner-scroll {
    overflow-y: auto;
}
.modal-popup._inner-scroll .modal-inner-wrap {
    max-height: 90%;
}
.ie11 .modal-popup._inner-scroll .modal-inner-wrap {
    max-height: none;
}
.modal-popup._inner-scroll .modal-content {
    overflow-y: auto;
}
.modal-popup .modal-header,
.modal-popup .modal-content,
.modal-popup .modal-footer {
    padding-left: 3rem;
    padding-right: 3rem;
}
.modal-popup .modal-header,
.modal-popup .modal-footer {
    -webkit-flex-grow: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.modal-popup .modal-header {
    padding-bottom: 1.2rem;
    padding-top: 3rem;
}
.modal-popup .modal-footer {
    margin-top: auto;
    padding-bottom: 3rem;
    padding-top: 3rem;
}
.modal-popup .modal-footer-actions {
    text-align: right;
}
.modal-custom .action-close,
.modal-popup .action-close,
.modal-slide .action-close {
    background-image: none;
    background: none;
    -moz-box-sizing: content-box;
    border: 0;
    box-shadow: none;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-shadow: none;
    font-weight: 400;
    display: inline-block;
    text-decoration: none;
    position: absolute;
    right: 0;
    top: 0;
}
.modal-custom .action-close:focus,
.modal-popup .action-close:focus,
.modal-slide .action-close:focus,
.modal-custom .action-close:active,
.modal-popup .action-close:active,
.modal-slide .action-close:active {
    background: none;
    border: none;
}
.modal-custom .action-close:hover,
.modal-popup .action-close:hover,
.modal-slide .action-close:hover {
    background: none;
    border: none;
}
.modal-custom .action-close.disabled,
.modal-popup .action-close.disabled,
.modal-slide .action-close.disabled,
.modal-custom .action-close[disabled],
.modal-popup .action-close[disabled],
.modal-slide .action-close[disabled],
fieldset[disabled] .modal-custom .action-close,
fieldset[disabled] .modal-popup .action-close,
fieldset[disabled] .modal-slide .action-close {
    pointer-events: none;
    opacity: 0.5;
}
.modal-custom .action-close > span,
.modal-popup .action-close > span,
.modal-slide .action-close > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.modal-custom .action-close:before,
.modal-popup .action-close:before,
.modal-slide .action-close:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    line-height: 14px;
    color: #757575;
    content: '\e616';
    font-family: 'luma-icons';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
}
.modal-custom .action-close:hover:before,
.modal-popup .action-close:hover:before,
.modal-slide .action-close:hover:before {
    color: inherit;
}
.modal-custom .action-close:active:before,
.modal-popup .action-close:active:before,
.modal-slide .action-close:active:before {
    color: inherit;
}
.modal-custom .action-close:hover:before,
.modal-popup .action-close:hover:before,
.modal-slide .action-close:hover:before {
    color: #1a1a1a;
}
.modal-custom .action-close {
    margin: 15px;
}
.modal-popup {
    pointer-events: none;
}
.modal-popup .modal-title {
    border-bottom: 1px solid #c1c1c1;
    font-weight: 300;
    padding-bottom: 10px;
    font-size: 26px;
    margin-bottom: 0;
    min-height: 1em;
    word-wrap: break-word;
}
.modal-popup .action-close {
    padding: 20px;
}
.modal-slide .action-close {
    margin: 15px;
    padding: 0;
}
.modal-slide .page-main-actions {
    margin-bottom: -12.9rem;
    margin-top: 2.1rem;
}
.modals-overlay {
    background-color: rgba(51, 51, 51, 0.55);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
}
body._has-modal-custom .modal-custom-overlay {
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 899;
}

.modals-wrapper {
    position: relative;
    z-index: 1000000;
}
.modal-slide,
.modal-popup {
    bottom: 0;
    left: 0 !important;
    min-width: 0;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    transition: visibility 0s .3s, opacity .3s ease;
    opacity: 0;
    background-color: rgba(6, 58, 69, 0.9);
}
.modal-popup .modal-inner-wrap {
    max-height: 90% !important;
    overflow-y: visible !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    top: 50% !important;
    transform: translate(0%, -50%) !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
}
.modals-overlay {
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    transition: visibility 0s .3s, opacity .3s ease;
    opacity: 0;
    background-color: rgba(6, 58, 69, 0.9);
}
.modal-popup._inner-scroll .modal-content {
    overflow-y: auto;
}
.modal-popup._inner-scroll .modal-content::-webkit-scrollbar-track {
    background-color: #d8d8d8;
    border-radius: 20px;
}
.modal-popup._inner-scroll .modal-content::-webkit-scrollbar {
    width: 2px;
    width: 6px;
    border-radius: 20px;
    background-image: linear-gradient(to right, #ffffff 50%, #808080 50%, #ffffff 51%);
}
.modal-popup._inner-scroll .modal-content::-webkit-scrollbar-thumb {
    background-color: #393434;
    border-radius: 20px;
}
.modal-popup._inner-scroll .modal-content .modal-content-holder {
    padding-top: 20px;
}
@media screen and (max-width: 640px) {
    .modal-popup._inner-scroll .modal-content .modal-content-holder {
        padding-top: 10px;
    }
}
.modal-popup._inner-scroll .modal-content .modal-header {
    padding: 45px 56px 20px;
}
@media screen and (max-width: 640px) {
    .modal-popup._inner-scroll .modal-content .modal-header {
        padding: 35px 20px 10px;
    }
}
.modal-slide._show,
.modal-popup._show {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    z-index: 99999;
}
.modal-popup._inner-scroll .modal-header {
    border-bottom: 1px solid #c6c6c6;
}
.modal-popup._inner-scroll .modal-footer {
    border-top: 1px solid #c6c6c6;
}
.modal-popup._inner-scroll.share-modal .modal-header {
    border-bottom: 0;
}
.modal-popup._inner-scroll.share-modal .modal-footer {
    border-top: 0;
}
.modal-popup .modal-inner-wrap {
    border-radius: 4px;
    box-shadow: 0 4px 14px 4px rgba(0, 0, 0, 0.15);
    background-color: #ffffff !important;
    max-width: 656px;
    margin: 0 auto !important;
}
@media screen and (max-width: 640px) {
    .modal-popup .modal-inner-wrap {
        margin: 0 10px !important;
        width: auto !important;
        font-size: 16px;
    }
    .modal-popup .modal-inner-wrap .modal-content {
        padding-right: 20px !important;
    }
}
.modal-popup .action-close {
    padding: 0;
    border: 0;
    text-decoration: none;
    background-color: transparent;
    color: currentColor;
    cursor: pointer;
    outline: 0;
    position: absolute;
    top: 32px;
    right: 24px;
    transition: transform ease-out 0.2s;
    margin: 0;
}
.modal-popup .action-close .icon {
    fill: #393434;
    transition: transform ease-out 0.2s;
}
.modal-popup .action-close:before {
    background: url('../images/0061.svg') no-repeat center center !important;
    width: 24px !important;
    height: 24px !important;
    font-size: 0;
    background-size: 100% !important;
}
@media screen and (max-width: 640px) {
    .modal-popup .action-close {
        top: 16px;
        right: 16px;
    }
}
.modal-popup .action-close:hover {
    transform: translateY(-3px);
}
.modal-popup .form {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
}
.modal-popup .form .fieldset {
    float: none;
    margin: 0;
    width: auto;
    padding-top: 15px;
}
.modal-popup .form .modal-footer {
    position: relative;
    width: 650px;
    margin-left: -325px;
    left: 212px;
}
@media screen and (max-width: 657px) {
    .modal-popup .form .modal-footer {
        width: 100%;
        margin-left: 0;
        left: 0;
        position: absolute;
        padding: 18px 15px 30px;
    }
}
.modal-popup .modal-content {
    padding: 0 113px;
}
@media screen and (max-width: 657px) {
    .modal-popup .modal-content {
        position: relative;
        padding-bottom: 115px;
    }
}
@media screen and (max-width: 1024px) {
    .modal-popup .modal-content {
        padding: 0 50px;
    }
}
@media screen and (max-width: 640px) {
    .modal-popup .modal-content {
        padding: 0 20px;
    }
}
.modal-popup.modal-wide .modal-inner-wrap {
    max-width: 800px;
}
.modal-popup.modal-wide .modal-content {
    padding: 0 45px;
}
@media screen and (max-width: 1024px) {
    .modal-popup.modal-wide .modal-content {
        padding: 0 35px;
    }
}
@media screen and (max-width: 640px) {
    .modal-popup.modal-wide .modal-content {
        padding: 0 20px;
    }
}
.modal-popup .modal-footer {
    padding: 40px 113px 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 1024px) {
    .modal-popup .modal-footer {
        padding: 28px 56px 40px;
    }
}
@media screen and (max-width: 640px) {
    .modal-popup .modal-footer {
        padding: 18px 28px 30px;
    }
}
.modal-popup .modal-header {
    position: relative;
    padding: 45px 40px 40px;
}
@media screen and (max-width: 640px) {
    .modal-popup .modal-header {
        padding: 35px 20px 20px;
    }
}
.modal-popup .modal-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.41;
    text-align: center;
    color: #191e21;
    margin: 0;
    border-bottom: 0;
}
@media screen and (max-width: 1024px) {
    .modal-popup .modal-title {
        font-size: 28px;
    }
}
@media screen and (max-width: 640px) {
    .modal-popup .modal-title {
        font-size: 20px;
    }
}
.modal-popup hr {
    margin: 24px 0 40px;
    border-color: #c6c6c6;
}
@media screen and (max-width: 640px) {
    .modal-popup hr {
        margin: 16px 0 24px;
    }
}
.modal-popup .modal-offset {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal-popup .modal-offset .modal-title {
    margin-top: -24px;
}
@media screen and (max-width: 640px) {
    .modal-popup .modal-offset .modal-title {
        margin-top: -16px;
    }
}
.modal-popup .modal-subtitle {
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.25;
    text-align: center;
    color: #393434;
    display: block;
    margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
    .modal-popup .modal-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
}
.modal-newsletter.modal-popup .modal-inner-wrap {
    background-color: transparent !important;
    max-width: 1440px;
    box-shadow: none;
}
.modal-newsletter.modal-popup .modal-content {
    padding: 0;
}
.modal-newsletter.modal-popup .modal-footer,
.modal-newsletter.modal-popup .modal-header {
    padding: 0;
    position: relative;
    z-index: 100;
}
.modal-newsletter.modal-popup .modal-footer {
    display: none;
}
.modal-newsletter.modal-popup .action-close {
    position: absolute;
    right: 155px;
    top: 0;
}
@media (max-width: 1460px) {
    .modal-newsletter.modal-popup .action-close {
        right: 40px;
    }
}
.modal-newsletter.modal-popup .action-close:before {
    background: url('../images/close-btn.svg') !important;
    background-size: 100% !important;
}
.modal-newsletter.modal-popup .action-close .icon {
    fill: #ffffff;
}
.modal-newsletter.modal-popup .newsletter {
    margin-bottom: 0;
}
.modal-newsletter.modal-popup .newsletter__subtitle,
.modal-newsletter.modal-popup .newsletter__title {
    color: #ffffff;
}
@media screen and (max-width: 640px) {
    .modal-newsletter.modal-popup .newsletter__bot {
        margin: 0;
    }
}
.mfp-move-from-top.mfp-ready.mfp-bg {
    opacity: 1 !important;
}
.mfp-move-from-top .mfp-content {
    vertical-align: middle !important;
    margin-top: 0 !important;
    max-height: 90% !important;
    overflow-y: auto;
}
#social-login-popup {
    max-width: 656px;
}
#social-login-popup .button.button--white.button--mid-text {
    color: #f97400 !important;
}
.modal-login.modal-popup {
    position: static;
}
.modal-login.modal-popup .modal-inner-wrap {
    position: static !important;
    transform: none !important;
}
.modal-login.modal-popup .fieldset {
    margin-bottom: 24px;
}
.modal-login.modal-popup .form-login {
    margin-bottom: 64px;
}
@media screen and (max-width: 640px) {
    .modal-login.modal-popup .form-login {
        margin-bottom: 32px;
    }
}
.modal-login.modal-popup._inner-scroll .modal-header {
    padding-top: 40px;
    padding-bottom: 20px;
    border: 0;
}
.modal-login.modal-popup .modal-content {
    padding: 0;
}
.modal-login.modal-popup .modal-content-holder {
    padding: 0 113px;
}
@media screen and (max-width: 1024px) {
    .modal-login.modal-popup .modal-content-holder {
        padding: 0 50px;
    }
}
@media screen and (max-width: 640px) {
    .modal-login.modal-popup .modal-content-holder {
        padding: 0 20px;
    }
}
.modal-login.modal-popup .modal-offset {
    background-color: #f6f6f6;
    display: flex;
    flex-direction: column;
    padding: 0 40px 40px;
}
@media screen and (max-width: 640px) {
    .modal-login.modal-popup .modal-offset {
        padding: 0 20px 32px;
    }
}
@media screen and (max-width: 359px) {
    .modal-login.modal-popup .modal-offset .button {
        width: 100%;
    }
}
.modal-login.modal-popup .modal-footer .modal-title {
    margin-bottom: 11px;
    display: block;
}
@media screen and (max-width: 359px) {
    .modal-login.modal-popup .buttons-row {
        flex-direction: column;
    }
    .modal-login.modal-popup .buttons-row > * {
        margin-bottom: 18px;
        width: 100%;
    }
}
.modal-empty-product .modal-header {
    background: transparent;
    border-bottom: 0;
    margin-bottom: 0;
}
.modal-empty-product .modal-header h1 {
    padding-bottom: 0;
}
.modal-empty-product .modal-content {
    padding: 0 84px;
}
@media screen and (max-width: 1024px) {
    .modal-empty-product .modal-content {
        padding: 0 50px;
    }
}
@media screen and (max-width: 640px) {
    .modal-empty-product .modal-content {
        padding: 0 20px;
    }
}
.modal-empty-product .modal-footer {
    padding: 32px 84px 56px;
    border-top: 0 !important;
}
@media screen and (max-width: 1024px) {
    .modal-empty-product .modal-footer {
        padding: 28px 56px 40px;
    }
}
@media screen and (max-width: 640px) {
    .modal-empty-product .modal-footer {
        padding: 18px 28px 30px;
    }
}
.modal-product-info {
    display: flex;
    flex-direction: column;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid #ebebeb;
}
.modal-product-info__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #393434;
    display: block;
    margin-bottom: 2px;
}
@media screen and (max-width: 480px) {
    .modal-product-info__title {
        font-size: 18px;
    }
}
.modal-product-info__subtitle {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.38;
    color: #393434;
    display: block;
}
@media screen and (max-width: 480px) {
    .modal-product-info__subtitle {
        font-size: 14px;
    }
}
.modal-product-info__label {
    font-size: 14px;
    line-height: 1.57;
    color: #393434;
}
@media screen and (max-width: 480px) {
    .modal-product-info__label {
        font-size: 12px;
    }
}
.modal-present .modal-header {
    padding: 40px 56px 0px;
    border: 0 !important;
}
@media screen and (max-width: 640px) {
    .modal-present .modal-header {
        padding-bottom: 0;
    }
}
@media screen and (max-height: 450px) {
    .modal-present .modal-header {
        padding: 20px 56px 0;
    }
}
.modal-present .modal-title {
    font-size: 32px;
    text-align: left;
}
.modal-present .modal-content {
    padding: 0 46px;
    margin: 0 10px;
}
.modal-present._inner-scroll .modal-content .modal-content-holder {
    padding-top: 0;
}
@media screen and (max-width: 640px) {
    .modal-present._inner-scroll .modal-content .modal-content-holder {
        padding-top: 0;
    }
}
.modal-present .modal-footer {
    padding: 40px 56px 48px;
    border: 0 !important;
}
@media screen and (max-height: 450px) {
    .modal-present .modal-footer {
        padding: 10px 56px 10px;
    }
}

.modal-popup.gift-popup-cart-modal #gift-popup-cart {
    position: fixed;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
.modal-popup.gift-popup-cart-modal #gift-popup-cart .gift-block-product {
    float: left;
    width: 49%;
    height: 295px;
    text-align: center;
    padding-top: 30px;
}
.modal-popup.gift-popup-cart-modal #gift-popup-cart .gift-block-product .gift-product-img {
    max-width: 100%;
    max-height: 220px;
}
@media screen and (max-width: 640px) {
    .modal-popup.gift-popup-cart-modal #gift-popup-cart .gift-block-product .gift-product-img {
        max-height: 170px;
    }
}
@media screen and (max-width: 480px) {
    .modal-popup.gift-popup-cart-modal #gift-popup-cart .gift-block-product .gift-product-img {
        max-height: 130px;
    }
}
@media screen and (max-width: 480px) {
    .modal-popup.gift-popup-cart-modal #gift-popup-cart .gift-block-product .gift-product-img {
        max-height: 110px;
    }
}
.modal-popup.gift-popup-cart-modal #gift-popup-cart .gift-block-product .add-gift-to-cart {
    margin-top: 10px;
    display: inline-block;
    width: 100%;
}
.modal-popup.gift-popup-cart-modal #gift-popup-cart .gift-block-product .add-gift-to-cart.disabled {
    opacity: 0.5;
}
@media screen and (max-width: 640px) {
    .modal-popup.gift-popup-cart-modal #gift-popup-cart .gift-block-product .add-gift-to-cart {
        margin-top: 5px;
    }
    .modal-popup.gift-popup-cart-modal #gift-popup-cart .gift-block-product .add-gift-to-cart img {
        width: 100px;
    }
}
@media screen and (max-width: 480px) {
    .modal-popup.gift-popup-cart-modal #gift-popup-cart .gift-block-product .add-gift-to-cart img {
        width: 90px;
    }
}
@media screen and (max-width: 640px) {
    .modal-popup.gift-popup-cart-modal #gift-popup-cart .gift-block-product {
        height: 232px;
        padding-top: 20px;
    }
}
@media screen and (max-width: 480px) {
    .modal-popup.gift-popup-cart-modal #gift-popup-cart .gift-block-product {
        height: 180px;
        padding-top: 30px;
    }
}
@media screen and (max-width: 359px) {
    .modal-popup.gift-popup-cart-modal #gift-popup-cart .gift-block-product {
        height: 172px;
        padding-top: 25px;
    }
}
.modal-popup.gift-popup-cart-modal #gift-popup-cart .gift-block-title {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    margin-top: 3px;
}
.modal-popup.gift-popup-cart-modal .modal-inner-wrap {
    height: 600px !important;
    width: 700px !important;
}
.modal-popup.gift-popup-cart-modal .modal-inner-wrap .modal-header {
    border-bottom: none !important;
    height: 0px !important;
    position: absolute;
    right: 0;
    z-index: 1;
}
.modal-popup.gift-popup-cart-modal .modal-inner-wrap .modal-header .action-close {
    top: 15px;
    right: 15px;
}
.modal-popup.gift-popup-cart-modal .modal-inner-wrap .modal-content {
    padding: 0 !important;
}
@media screen and (max-width: 768px) {
    .modal-popup.gift-popup-cart-modal .modal-inner-wrap {
        width: 600px !important;
    }
}
@media screen and (max-width: 640px) {
    .modal-popup.gift-popup-cart-modal .modal-inner-wrap {
        height: 460px !important;
        width: 460px !important;
        margin: 0 auto !important;
    }
}
@media screen and (max-width: 480px) {
    .modal-popup.gift-popup-cart-modal .modal-inner-wrap {
        height: 400px !important;
        width: 360px !important;
    }
}
@media screen and (max-width: 359px) {
    .modal-popup.gift-popup-cart-modal .modal-inner-wrap {
        height: 350px !important;
        width: 300px !important;
    }
}
.modal-popup.gift-popup-cart-modal.total-gift-products-2 .modal-inner-wrap,
.modal-popup.gift-popup-cart-modal.total-gift-products-3 .modal-inner-wrap {
    height: 400px !important;
}
.modal-popup.gift-popup-cart-modal.total-gift-products-2 .modal-inner-wrap #gift-popup-cart .gift-block-product,
.modal-popup.gift-popup-cart-modal.total-gift-products-3 .modal-inner-wrap #gift-popup-cart .gift-block-product {
    width: 33%;
    padding-top: 75px;
}
.modal-popup.gift-popup-cart-modal.total-gift-products-2 .modal-inner-wrap #gift-popup-cart .gift-block-product .gift-product-img,
.modal-popup.gift-popup-cart-modal.total-gift-products-3 .modal-inner-wrap #gift-popup-cart .gift-block-product .gift-product-img {
    max-height: none;
}
@media screen and (max-width: 640px) {
    .modal-popup.gift-popup-cart-modal.total-gift-products-2 .modal-inner-wrap #gift-popup-cart .gift-block-product,
    .modal-popup.gift-popup-cart-modal.total-gift-products-3 .modal-inner-wrap #gift-popup-cart .gift-block-product {
        padding-top: 75px;
    }
}
@media screen and (max-width: 768px) {
    .modal-popup.gift-popup-cart-modal.total-gift-products-2 .modal-inner-wrap,
    .modal-popup.gift-popup-cart-modal.total-gift-products-3 .modal-inner-wrap {
        width: 600px !important;
    }
}
@media screen and (max-width: 640px) {
    .modal-popup.gift-popup-cart-modal.total-gift-products-2 .modal-inner-wrap,
    .modal-popup.gift-popup-cart-modal.total-gift-products-3 .modal-inner-wrap {
        height: 320px !important;
        width: 460px !important;
    }
}
@media screen and (max-width: 480px) {
    .modal-popup.gift-popup-cart-modal.total-gift-products-2 .modal-inner-wrap,
    .modal-popup.gift-popup-cart-modal.total-gift-products-3 .modal-inner-wrap {
        height: 300px !important;
        width: 360px !important;
    }
}
@media screen and (max-width: 359px) {
    .modal-popup.gift-popup-cart-modal.total-gift-products-2 .modal-inner-wrap,
    .modal-popup.gift-popup-cart-modal.total-gift-products-3 .modal-inner-wrap {
        height: 290px !important;
        width: 300px !important;
    }
}
.modal-popup.gift-popup-cart-modal.total-gift-products-2 .modal-inner-wrap #gift-popup-cart .gift-block-product {
    width: 49%;
}
.modal-popup.gift-popup-cart-modal.total-gift-products-2 .modal-inner-wrap #gift-popup-cart .gift-block-product .gift-product-img {
    max-height: 100%;
}
.modal-popup.gift-info-popup-modal {
    background-color: transparent;
}
.modal-popup.gift-info-popup-modal .action-close::before {
    background: url('../images/0061-white.png') no-repeat center center !important;
    height: 20px !important;
    width: 20px !important;
}
.modal-popup.gift-info-popup-modal #gift-info-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 0 40px;
    color: #fff;
    border-radius: 25px 0 25px;
}
.modal-popup.gift-info-popup-modal #gift-info-popup .gift_text {
    font-size: 1.4rem;
}
.modal-popup.gift-info-popup-modal #gift-info-popup .gift_text {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: auto 30px;
}
.modal-popup.gift-info-popup-modal #gift-info-popup .gift_icon {
    margin-right: 20px;
    width: 100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.modal-popup.gift-info-popup-modal #gift-info-popup .gift_icon + .gift_text {
    margin-left: 115px;
}

@media screen and (max-width: 640px) {
    .modal-popup.gift-info-popup-modal #gift-info-popup .gift_text {
        font-size: 16px;
    }
    .modal-popup.gift-info-popup-modal #gift-info-popup .gift_icon + .gift_text {
        margin-left: 90px;
    }
    .modal-popup.gift-info-popup-modal #gift-info-popup {
        padding: 40px;
    }
}
.modal-popup.gift-info-popup-modal .modal-inner-wrap {
    height: 250px !important;
    width: 600px !important;
    border-radius: 25px 0 25px;
}
.modal-popup.gift-info-popup-modal .modal-inner-wrap .modal-header {
    border-bottom: none !important;
    height: 0px !important;
    position: absolute;
    right: 0;
    z-index: 1;
}
.modal-popup.gift-info-popup-modal .modal-inner-wrap .modal-header .action-close {
    top: 15px;
    right: 15px;
}
.modal-popup.gift-info-popup-modal .modal-inner-wrap .modal-content {
    padding: 0 !important;
}
@media screen and (max-width: 768px) {
    .modal-popup.gift-info-popup-modal .modal-inner-wrap {
        width: 500px !important;
    }
}
@media screen and (max-width: 640px) {
    .modal-popup.gift-info-popup-modal .modal-inner-wrap {
        height: 200px !important;
        width: 460px !important;
        margin: 0 auto !important;
    }
    .modal-popup.gift-info-popup-modal .modal-inner-wrap .gift_icon {
        max-width: 75px;
    }
}
@media screen and (max-width: 480px) {
    .modal-popup.gift-info-popup-modal .modal-inner-wrap {
        width: 360px !important;
    }
    .modal-popup.gift-info-popup-modal .modal-inner-wrap .gift_icon {
        max-width: 50px;
    }
    .modal-popup.gift-info-popup-modal #gift-info-popup .gift_icon + .gift_text {
        margin-left: 70px;
    }
}
@media screen and (max-width: 359px) {
    .modal-popup.gift-info-popup-modal .modal-inner-wrap {
        width: 300px !important;
    }
}

/* gift promobanner */
.promo-banner {
    --bg-color: var(--bg-color);
    --text-color: var(--text-color);
    opacity: 0;
    visibility: hidden;
    position: fixed;
    inset: auto 8px 12px;
    pointer-events: none;
    transition: opacity , visibility , transform ;
    transform: translateY(150%);
    z-index: 150;
}
.promo-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.promo-banner__box {
    display: flex;
    align-items: center;
    max-width: 700px;
    margin-inline: auto;
    color: var(--text-color, #fff);
    font-weight: 700;
    background-color: var(--bg-color, #06B777);
    border-radius: 6px;
    pointer-events: all;
}
@media (min-width: 359px) {
    .promo-banner__box {
        column-gap: 12px;
        padding-block: 8px;
        padding-inline: 12px;
        font-size: 14px;
        line-height: 18px;
    }
}

@media (min-width: 1360px) {
    .promo-banner__box {
        column-gap: 20px;
        padding-block: 12px;
        padding-inline: 20px;
        font-size: 18px;
        line-height: 24px;
    }
}
@media (min-width: 359px) {
    .promo-banner__actions {
        padding-inline-start: 1px;
    }
}
@media (min-width: 1360px) {
    .promo-banner__actions {
        padding-inline-start: 24px;
    }
}
.promo-banner__media {
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .promo-banner__media {
        max-width: 61px;
   }
}
.promo-banner .close-button {
    color: var(--text-color, #fff);
}
.promo-banner__cont p {
    margin-top: 1em;
    margin-bottom: 1em;
}
@media (min-width: 359px) {
    .promo-banner__cont p {
        font-size: 14px;
        line-height: 18px;
    }
}
@media (min-width: 1360px) {
    .promo-banner__cont p {
        font-size: 18px;
        line-height: 24px;
    }
}

.js-modal-cookies-settings .text {
    font-weight: 600;
    font-size: 16px
}

.js-modal-cookies-settings  .text {
    line-height: 22px;
    font-weight: 400;
    color: #000;
    box-sizing: border-box
}

.js-modal-cookies-settings  .text > :last-child {
    margin-bottom: 0 !important
}

.js-modal-cookies-settings .text a {
    color: #ff7f11;
    font-weight: 500;
    box-shadow: inset 0 -1px #ff7f11;
    transition: box-shadow .2s ease-in;
    text-decoration: none
}

.non-touch .js-modal-cookies-settings  .text a:hover {
    box-shadow: inset 0 -1px transparent
}

.js-modal-cookies-settings  .text p {
    margin-top: 0;
    margin-bottom: 16px
}

.js-modal-cookies-settings .text h5 {
    font-size: 18px;
    line-height: 138%;
    margin: 24px 0
}

.js-modal-cookies-settings .text h5:first-child {
    margin-top: 0
}

.js-modal-cookies-settings .text h5:last-child,
.js-modal-cookies-settings .text--regular p:last-child {
    margin-bottom: 0
}

.js-modal-cookies-settings .text li:not(.star-list li):not(.ab-list li):not(.dash-list li):not(.delivery-block__list li) {
    margin-bottom: 1em
}

.js-modal-cookies-settings .text ul:not(.star-list):not(.ab-list):not(.dash-list):not(.delivery-block__list) > li {
    padding-left: 18px;
    position: relative
}

.js-modal-cookies-settings .text ul:not(.star-list):not(.ab-list):not(.dash-list):not(.delivery-block__list) > li:before {
    content: "*";
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.13
}

.js-modal-cookies-settings .text--regular {
    font-size: 16px;
    line-height: 22px
}

.js-modal-cookies-settings .text--regular p {
    margin: 0 0 8px
}

.js-modal-cookies-settings .text--xxs,
.js-modal-cookies-settings .text--xxs p {
    font-size: 14px;
    line-height: 140%
}


@media screen and (min-width: 320px) {
    .js-modal-cookies-settings .text h5 {
        font-size: calc(18px + 2 * ((100vw - 320px) / 704))
    }
}

@media screen and (min-width: 359px) {
    .js-modal-cookies-settings .text {
        line-height: calc(22px + 3 * ((100vw - 359px) / 1241))
    }

    .js-modal-cookies-settings .text--regular {
        line-height: calc(22px + 0 * ((100vw - 359px) / 1241))
    }
}

@media (min-width: 767px) {
    .js-modal-cookies-settings .text ul {
        padding-left: 12px
    }
}

@media screen and (min-width: 1024px) {
    .js-modal-cookies-settings .text h5 {
        font-size: 20px
    }
}

@media screen and (min-width: 1440px) {
    .js-modal-cookies-settings .text {
        font-size: calc(16px + 2 * ((100vw - 1440px) / 160))
    }


    .js-modal-cookies-settings .text--regular {
        font-size: calc(16px + 0 * ((100vw - 1440px) / 160))
    }
}

@media screen and (min-width: 1600px) {
    .js-modal-cookies-settings .text {
        font-size: 18px;
        line-height: 25px
    }

    .js-modal-cookies-settings .text--regular {
        font-size: 16px;
        line-height: 22px
    }
}

@media (max-width: 767px) {
    .js-modal-cookies-settings .text ul {
        margin-bottom: 32px
    }
}

/* notification cookies */
.site-cookie-wrapper {
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    pointer-events: none;
    z-index: 99999;
}
.site-cookie {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: 400ms cubic-bezier(0, 0, 0.5, 1);
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    width: 100%;
    max-width: 375px;
    padding: 16px;
    background: #F4EAE4;
    border-radius: 8px;
    pointer-events: all;
}
.site-cookie__header {
    display: flex;
    align-items: center;
    -moz-column-gap: 12px;
    column-gap: 12px;
}
.site-cookie__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
}
.site-cookie .aspect-ratio {
    flex-shrink: 0;
}
.site-cookie .button {
    min-height: 40px;
}
.site-cookie.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.site-cookie .amcookie-js-bar {
    display: contents;
}
.site-cookie .mt-18 {
    margin-top: 18px !important;
}
.site-cookie p {
    margin: 0;
}
.site-cookie .text {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #000;
    box-sizing: border-box;
}

@media screen and (min-width: 359px) {
    .site-cookie {
        row-gap: calc(16px + 6 * ((100vw - 359px ) / 1001 ));
    }
    .site-cookie__title {
        font-size: calc(17px + 1 * ((100vw - 359px ) / 1001 ));
    }

    .site-cookie .text {
        line-height: calc(22px + 3 * ((100vw - 359px ) / 1241 ));
      }
}

@media screen and (min-width: 1360px) {
    .site-cookie {
        row-gap: 22px;
    }
    .site-cookie__title {
        font-size: 18px;
    }
}

@media screen and (min-width: 1440px) {
    .site-cookie .text {
        font-size: calc(16px + 2 * ((100vw - 1440px ) / 160 ));
    }
}

@media screen and (min-width: 1600px) {
    .site-cookie .text {
        line-height: 25px;
        font-size: 18px;
    }
}

.product-card__labels .product-card__label-image.sparsh-product-label-image img {
    max-width: 48px;
}

.products-slider .swiper-container .swiper-slide .product-card__labels.product-card__labels--tl {
    --tx: 0;
}

@media (min-width: 1360px) {
    .product-card__labels .product-card__label-image.sparsh-product-label-image {
        height: 52px;
        width: 52px;
        font-size: 17px;
        line-height: 22px;
    }

    .product-card__labels .product-card__label-image.sparsh-product-label-image img {
        max-width: 100%;
    }
}



.js-modal-cookies-settings .ua-accordion {
    display: grid
}

.js-modal-cookies-settings .ua-accordion--settings {
    gap: 16px 0
}

.js-modal-cookies-settings .ua-accordion--settings .ua-item {
    border: 1px solid #f4eae4;
    background-color: #fff9f3;
    border-radius: 6px
}

.js-modal-cookies-settings .ua-accordion--settings .ua-item__header {
    grid-column-gap: 16px;
    padding-top: 17px;
    padding-bottom: 17px;
    padding-inline: 14px
}

.js-modal-cookies-settings .ua-item__header-title {
    flex-grow: 1;
    align-self: center;
    display: block;
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.js-modal-cookies-settings .ua-accordion--settings .ua-item__header-title {
    font-size: 16px;
    line-height: 140%
}

.js-modal-cookies-settings .ua-accordion--settings .ua-item__header .icon {
    height: 24px;
    width: 24px;
    fill: #393434
}

.js-modal-cookies-settings .ua-accordion--settings .ua-item__body-inner {
    padding-inline: 14px;
    padding-bottom: 24px
}

.js-modal-cookies-settings .ua-accordion--sm {
    gap: 8px 0
}

.js-modal-cookies-settings .ua-accordion--sm .ua-item {
    border: 1px solid #f4eae4;
    background-color: #fff9f3;
    border-radius: 6px
}

.js-modal-cookies-settings .ua-item__header {
    isolation: isolate;
    padding: 0;
    border: 0;
    text-decoration: none;
    background-color: transparent;
    color: currentColor;
    outline: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-block: 20px;
    text-align: left;
    cursor: default;
}

.js-modal-cookies-settings .ua-accordion--sm .ua-item__header {
    grid-column-gap: 16px;
    padding-top: 17px;
    padding-bottom: 17px;
    padding-inline: 14px
}

.js-modal-cookies-settings .ua-accordion--sm .ua-item__header-title {
    font-size: 14px;
    line-height: 140%
}

.js-modal-cookies-settings .ua-item__header .icon {
    fill: #000000;
    transition: transform 250ms cubic-bezier(0, 0, 0.5, 1);
    transform: rotateZ(90deg);
}

.js-modal-cookies-settings .ua-accordion--sm .ua-item__header .icon {
    height: 24px;
    width: 24px
}

.js-modal-cookies-settings .ua-item.is-active .ua-item__header .icon {
    transform: rotateZ(270deg);
}

.js-modal-cookies-settings .ua-item__header-spacer {
    align-self: center;
    width: 1px;
    height: 24px;
    background-color: #bfbfbf;
}

.js-modal-cookies-settings .ua-accordion--sm .ua-item__header-spacer {
    height: 28px
}

.js-modal-cookies-settings .ua-item__header-button {
    isolation: isolate;
    padding: 0;
    border: 0;
    text-decoration: none;
    background-color: transparent;
    color: currentColor;
    cursor: pointer;
    outline: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
}

.js-modal-cookies-settings .ua-item__body {
    display: none;
}

.js-modal-cookies-settings .ua-accordion--sm .ua-item__body-inner {
    padding-inline: 14px;
    padding-bottom: 16px
}

@media screen and (min-width: 359px) {
    .js-modal-cookies-settings .ua-accordion--settings .ua-item__header .icon, .js-modal-cookies-settings .ua-item__header-spacer {
        height: calc(24px + 6 * ((100vw - 359px) / 408))
    }

    .js-modal-cookies-settings .ua-accordion--settings .ua-item__header .icon, .js-modal-cookies-settings .ua-item__header-button {
        width: calc(24px + 6 * ((100vw - 359px) / 408))
    }

    .js-modal-cookies-settings .ua-accordion--settings .ua-item__header {
        padding-inline: calc(14px + 10 * ((100vw - 359px) / 408))
    }

    .js-modal-cookies-settings .ua-accordion--settings .ua-item__header-title {
        font-size: calc(16px + 6 * ((100vw - 359px) / 408));
        line-height: calc(140% + -17 * ((100vw - 359px) / 408))
    }

    .js-modal-cookies-settings .ua-accordion--settings .ua-item__body-inner {
        padding-inline: calc(14px + 10 * ((100vw - 359px) / 408));
        padding-bottom: calc(24px + 8 * ((100vw - 359px) / 408))
    }

    .js-modal-cookies-settings .ua-accordion--sm .ua-item__header {
        padding-inline: calc(14px + 0 * ((100vw - 359px) / 408))
    }

    .js-modal-cookies-settings .ua-accordion--sm .ua-item__header-title {
        font-size: calc(14px + 2 * ((100vw - 359px) / 408));
        line-height: calc(140% + -17 * ((100vw - 359px) / 408))
    }

    .js-modal-cookies-settings .ua-accordion--sm .ua-item__header .icon {
        height: calc(24px + 0 * ((100vw - 359px) / 408));
        width: calc(24px + 0 * ((100vw - 359px) / 408))
    }

    .js-modal-cookies-settings .ua-accordion--sm .ua-item__body-inner {
        padding-inline: calc(14px + 0 * ((100vw - 359px) / 408));
        padding-bottom: calc(16px + 0 * ((100vw - 359px) / 408))
    }
}


@media (min-width: 767px) {
    .js-modal-cookies-settings .ua-accordion--settings .ua-item__header {
        grid-column-gap: 24px;
        padding-top: 16px;
        padding-bottom: 16px
    }

    .js-modal-cookies-settings .ua-accordion--sm .ua-item__header {
        grid-column-gap: 10px;
        padding-top: 10px;
        padding-bottom: 10px
    }

    .js-modal-cookies-settings .ua-accordion--settings .ua-item__header .icon,
    .js-modal-cookies-settings .ua-item__header-spacer {
        height: 30px
    }

    .js-modal-cookies-settings .ua-accordion--settings .ua-item__header .icon,
    .js-modal-cookies-settings .ua-item__header-button {
        width: 30px
    }

    .js-modal-cookies-settings .ua-accordion--settings .ua-item__header {
        padding-inline: 24px
    }

    .js-modal-cookies-settings .ua-accordion--settings .ua-item__header-title {
        font-size: 22px;
        line-height: 123%
    }

    .js-modal-cookies-settings .ua-accordion--settings .ua-item__body-inner {
        padding-inline: 24px;
        padding-bottom: 32px
    }

    .js-modal-cookies-settings .ua-accordion--sm .ua-item__header {
        padding-inline: 14px
    }

    .js-modal-cookies-settings .ua-accordion--sm .ua-item__header-title {
        font-size: 16px;
        line-height: 123%
    }

    .js-modal-cookies-settings .ua-accordion--sm .ua-item__header .icon {
        height: 24px;
        width: 24px
    }

    .js-modal-cookies-settings .ua-accordion--sm .ua-item__body-inner {
        padding-inline: 14px;
        padding-bottom: 16px
    }
}

.js-modal-cookies-settings .form__switch {
    --sheight: 24px;
    --swidth: 48px;
    --sdheight: 20px;
    --sdwidth: 20px;
    --sgap: 3px;
    display: inline-flex;
    align-self: center;
    min-height: var(--sheight)
}

.js-modal-cookies-settings .form__switch-input {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap
}

.js-modal-cookies-settings .form__switch-input:checked ~ .form__switch-label:before {
    background-color: #06b777
}

.js-modal-cookies-settings .form__switch-input:checked ~ .form__switch-label:after {
    transform: translate(calc(100% + calc(var(--sdwidth) / 2) - calc(var(--sgap) * 2.25)), -50%)
}

.js-modal-cookies-settings .form__switch-input[disabled] ~ .form__switch-label:before,
.js-modal-cookies-settings .form__switch-input[readonly] ~ .form__switch-label:before {
    cursor: default
}

.js-modal-cookies-settings .form__switch-input[disabled]:checked ~ .form__switch-label:before,
.js-modal-cookies-settings .form__switch-input[readonly]:checked ~ .form__switch-label:before {
    background-color: #e6e6e6
}

.js-modal-cookies-settings .form__switch-label {
    display: block;
    position: relative;
    padding-inline-start: calc(var(--swidth) + 12px);
    padding-top: 4px
}

.js-modal-cookies-settings .form__switch-label:empty {
    padding-inline-start: var(--swidth)
}

.js-modal-cookies-settings .form__switch-label:before {
    content: '';
    height: var(--sheight);
    width: var(--swidth);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 250ms cubic-bezier(0, 0, .5, 1);
    background-color: #e6e6e6;
    border-radius: 24px;
    cursor: pointer
}

.js-modal-cookies-settings .form__switch-label:after {
    content: '';
    height: var(--sdheight);
    width: var(--sdwidth);
    position: absolute;
    top: 50%;
    left: 0;
    margin: 0 var(--sgap);
    transform: translate(0, -50%);
    transition: transform 250ms cubic-bezier(0, 0, .5, 1);
    background-color: #fff;
    border-radius: 50%;
    pointer-events: none
}

.js-modal-cookies-settings .form__switch--sm {
    --sheight: 24px;
    --swidth: 48px;
    --sdheight: 20px;
    --sdwidth: 20px
}

@media screen and (min-width: 359px) {
    .js-modal-cookies-settings .form__switch {
        --sheight: calc(24px + 6 * ((100vw - 359px) / 408));
        --swidth: calc(48px + 12 * ((100vw - 359px) / 408));
        --sdheight: calc(20px + 4 * ((100vw - 359px) / 408));
        --sdwidth: calc(20px + 4 * ((100vw - 359px) / 408))
    }

    .js-modal-cookies-settings .form__switch--sm {
        --sheight: calc(24px + 0 * ((100vw - 359px) / 408));
        --swidth: calc(48px + 0 * ((100vw - 359px) / 408));
        --sdheight: calc(20px + 0 * ((100vw - 359px) / 408));
        --sdwidth: calc(20px + 0 * ((100vw - 359px) / 408))
    }
}

@media screen and (min-width: 767px) {
    .js-modal-cookies-settings .form__switch {
        --sheight: 30px;
        --swidth: 60px;
        --sdheight: 24px;
        --sdwidth: 24px
    }

    .js-modal-cookies-settings .form__switch--sm {
        --sheight: 24px;
        --swidth: 48px;
        --sdheight: 20px;
        --sdwidth: 20px
    }
}

.js-modal-cookies-settings .mb-16 {
    margin-bottom: 16px !important
}

.js-modal-cookies-settings .mb-24 {
    margin-bottom: 16px
}

@media screen and (min-width: 480px) {
    .js-modal-cookies-settings .mb-24 {
        margin-bottom: calc(16px + 8 * ((100vw - 480px) / 880))
    }
}

@media screen and (min-width: 1360px) {
    .js-modal-cookies-settings .mb-24 {
        margin-bottom: 24px
    }
}

.modal-restyle._inner-scroll.js-modal-cookies-settings .modal-content {
    margin-bottom: 148px !important;
}

.modal-restyle._inner-scroll.js-modal-cookies-settings .modal-footer {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, .1);
}

.modal-restyle._inner-scroll.js-modal-cookies-settings .modal-footer.custom-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFF;
    border-radius: 0 0 12px 12px;
}

@media only screen and (max-width: 640px) {
    .modal-restyle._inner-scroll.js-modal-cookies-settings .modal-content {
        margin-bottom: 170px !important;
    }

    .modal-restyle._inner-scroll.js-modal-cookies-settings .modal-footer.custom-footer {
        position: fixed;
        border-radius: 0;
    }

    .modal-overlap.js-modal-cookies-settings  .modal-inner-wrap,
    .modal-tabs.js-modal-cookies-settings  .modal-inner-wrap,
    .modal-tabs._inner-scroll.js-modal-cookies-settings  .modal-inner-wrap {
        min-height: 100vh !important;
        max-height: 100vh !important;
        margin: 0 auto !important;
        border-radius: 0;
    }
}

