/* @import url("nav.css"); */

:root {
    --body-bg-color: #232822;
    --header-bg-color: rgb(52, 68, 51, .8);
    --header-font-color: #A4A287;
    --horizontal-menu-submenu-font-color: #344433;
    --dividing-line-header: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    --dividing-line-footer: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    --main-bg-color: #232822;
    --main-font-color: #A4A287;
    --input-bg: #344433;
    --input-font-color: #A4A287;
    --plus-bg-color: rgb(228, 148, 39);
    --bottom-liner-color: #E49427;
    --hotline-number-color: #A4A287;
    --basket-bg-color: #344433;
    --search-bg-product-color: #768674;
    --search-subtitle-font-color: #344433;
    --footer-bg-color: #232822;
    --footer-font-color: #A4A287;
    --swiper-pagination-color: rgb(228, 148, 39);
}

#backToTop {
    position: fixed;
    bottom: -60px;
    right: 30px;
    z-index: 999;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    background: rgba(24, 21, 20, 0.8);
    color: #fff;
    border-radius: 90px;
    cursor: pointer;
    transition: all 200ms ease;
}

/* Свёрнутая кнопка */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23A4A287'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* Раскрытая кнопка */
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23A4A287'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.error-404 {
    max-width: 500px;
    margin: 0 auto;
}

.error-404 button {
    height: 60px;
}

body.modal-open,
body.modal-open .fixed-top,
body.modal-open .sticky-top {
    padding-right: 0 !important;
}

body {
    margin-top: 119px;
    font-family: "WixMadeforDisplay";
    background-color: var(--main-bg-color);
    color: var(--main-font-color);
}

a {
    color: var(--main-font-color);
    text-decoration: none;
}

a:hover {
    color: var(--main-font-color);
}

button {
    display: block;
    padding: 0;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

.form-floating>.form-control {
    border-radius: 8px;
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext {
    padding: 0rem 0.75rem;
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext,
.form-floating>.form-select {
    height: calc(2.5rem + 2px);
    line-height: 1;
}

.form-floating>label {
    padding: 0.5rem 0.75rem;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--plus-bg-color) !important;
}

.swiper-pagination {
    top: 50% !important;
    transform: translate3d(0px, -50%, 0) !important;
    right: 6px;
    left: inherit !important;
    width: auto !important;
    bottom: inherit !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tab-bar {
    position: fixed;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    background: var(--basket-bg-color);
    border-radius: 20px;
}

.tab-bar-gradient {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 85px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

.tab-bar .items {
    display: flex;
    justify-content: space-between;
    padding: 18px 16px 19px;
}

.tab-bar .items a {
    position: relative;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    height: 48px;
    font-weight: 400;
    font-size: 11px;
    line-height: 14px;
    text-transform: uppercase;
    color: #AAA;
}

.tab-bar .items a.tab-bar-icon>div {
    position: relative;
    display: flex;
    flex: 0 0 48px;
    height: 48px;
    margin: auto 8px;
}

.tab-bar .items a.tab-bar-icon>div>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--plus-bg-color);
    border-radius: 16px;
    pointer-events: none;
}

.tab-bar .items a.tab-bar-icon>div:before {
    content: "";
    position: absolute;
    left: 14px;
    top: 14px;
    width: 20px;
    height: 20px;
    mask-image: url(/icon/header/logo_icon.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url(/icon/header/logo_icon.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    background-color: var(--header-font-color);
}

/* START HEADER */
nav {
    padding: 0 8px !important;
    background: var(--header-bg-color);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 1;
}

nav::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--dividing-line-header);
    content: "";
    opacity: 1;
    transition: opacity 500s;
}

nav ul {
    display: flex;
}

nav li:hover {
    opacity: 1;
}

@media screen and (min-width: 768px) {
    nav li {
        margin-right: 32px;
        opacity: .8;
    }

    nav .phone {
        margin-right: 0;
    }
}

nav .phone a {
    font-family: "WixMadeforDisplay";
    color: var(--plus-bg-color)
}

nav .phone-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

nav .phone-text {
    font-size: 12px;
    opacity: .5;
}

nav .logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 60px;
}

nav .logo span {
    display: block;
    width: 140px;
    height: 35px;
    mask-image: url('/icon/header/logo.svg');
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url('/icon/header/logo.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    background-color: var(--header-font-color);
}

nav a,
.vertical-menu a {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 10px;
    cursor: pointer;
    box-sizing: content-box;
}



nav .pickup,
nav .basket,
nav .search,
nav .profile,
nav .menu,
nav span.phone,
nav span.max {
    display: block;
    height: 22px;
    width: 20px;
    cursor: pointer;
    mask-image: url('/icon/header/pickup.svg');
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url('/icon/header/pickup.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    background-color: var(--header-font-color);
}

nav .basket {
    mask-image: url('/icon/header/basket.svg');
    -webkit-mask-image: url('/icon/header/basket.svg');
    background-color: var(--plus-bg-color);
}

nav .circle-icon.active {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    top: 30px;
    left: 17px;
    background: var(--plus-bg-color);
    border-radius: 50%;
}

nav .search {
    mask-image: url('/icon/header/search.svg');
    -webkit-mask-image: url('/icon/header/search.svg');
}

nav .profile {
    mask-image: url('/icon/header/profile.svg');
    -webkit-mask-image: url('/icon/header/profile.svg');
}

nav span.phone {
    mask-image: url('/icon/header/phone.svg');
    -webkit-mask-image: url('/icon/header/phone.svg');
}

nav span.max {
    mask-image: url('/icon/header/max.svg');
    -webkit-mask-image: url('/icon/header/max.svg');
}

nav .menu {
    mask-image: url('/icon/header/menu.svg');
    -webkit-mask-image: url('/icon/header/menu.svg');
}

@media screen and (max-width: 340px) {

    nav span.phone,
    nav span.search {
        display: none !important;
    }
}


#header-modern:hover nav,
#header-modern:hover .horizontal-menu {
    background: var(--body-bg-color);
}

@media screen and (min-width: 1400px) {
    #header-modern {
        height: 120px;
    }
}

#header-modern::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background-color: unset;
    opacity: 1;
    content: "";
}

.horizontal-menu {
    position: absolute;
    top: 60px;
    width: 100%;
    background-color: var(--header-bg-color);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: top 0.3s ease;
}

.horizontal-menu>ul li a {
    display: block;
    text-transform: uppercase;
    margin: 21px 0 18px 0;
    padding: 0 14px;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--header-font-color);
}

.horizontal-menu>ul li a.not-active {
    opacity: .5;
}

.horizontal-menu>ul li a::after,
.horizontal-menu .submenu-item::after {
    position: relative;
    bottom: -4px;
    display: block;
    height: 1px;
    background-color: var(--bottom-liner-color);
    transition: width .5s;
    content: "";
    right: 0;
    width: 0;
}

.horizontal-menu>ul li a.active::after,
.horizontal-menu .submenu-item:hover::after {
    width: 100%;
}

.horizontal-menu>ul li:first-child a {
    padding-left: 0;
}

.horizontal-menu>ul li:last-child a {
    padding-right: 0;
}

.horizontal-menu .move-menu {
    position: absolute;
    color: white;
    width: 100%;
    height: 100%;
    min-height: 550px;
    /*  min-height: 650px; */
    background-color: var(--body-bg-color);

    transition: all 350ms ease-out, opacity 0ms;
    z-index: -2;
}

.horizontal-menu .move-menu:not(.move-menu--opacity),
.horizontal-menu .move-menu:not(.move-menu--opacity) .container {
    transform: translateY(calc(-100% - 124px)) translateZ(0);
}

.horizontal-menu .move-menu--show {
    transform: translateY(0) translateZ(0) !important;
}

.horizontal-menu .move-menu--opacity.move-menu--show {
    z-index: -1;
    opacity: 1;
}

.horizontal-menu .container {
    opacity: 0;

    transition: all 200ms ease-out, opacity 200ms;
}

.horizontal-menu .move-menu--opacity.move-menu--show .container {
    opacity: 1;

}

.horizontal-menu .dropdown-menu-item {
    width: 260px;
    margin-right: 80px;
}

.horizontal-menu .submenu-title {
    color: var(--horizontal-menu-submenu-font-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 16px;
}

.horizontal-menu .submenu-menu-list>div {
    margin-bottom: 16px;
}

.horizontal-menu .submenu-item {
    display: inline-block;
    color: var(--header-font-color);
}

.horizontal-menu .dropdown-menu-img {
    max-width: 500px;
    height: 445px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
    margin-left: 80px;
}

.vertical-menu img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: -1;
}

.vertical-menu a {
    color: #fff;
    font-size: 16px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.vertical-menu ul {
    display: block;
    margin: 10px 10px 20px;
    padding: 0 20px;
}

.vertical-menu ul li {
    opacity: 1;
}

.vertical-menu ul.bottom a {
    display: block;
    padding: 10px 10px;
    height: inherit;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.vertical-menu .offcanvas-header {
    padding-bottom: 0;
}

.vertical-menu .back {
    position: relative;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    color: transparent;
    font-size: 0;
    background: transparent;
    border: none;
}

.vertical-menu .back::before {
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(-135deg);
    content: "";
}

#search .modal-content {
    background-color: var(--main-bg-color);
}

#search .modal-content .wrap-input {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

#search .modal-content .wrap-input input,
.search-module .wrap-input input {
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 25px;
    outline: none;
    border: none;
    padding: 9px 20px;
}

#search .modal-content .wrap-input a,
.search-module .wrap-input a {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--plus-bg-color);
    width: 130px;
    height: 100%;
    color: #fff;
    text-transform: uppercase;
    padding-left: 23px;
    padding-top: 11px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color .3s;
}

#search .modal-content .wrap-input a:hover,
.search-module .wrap-input a:hover {
    background-color: rgba(228, 148, 39, .9);

}

#search .modal-content .wrap-input a span,
.search-module .wrap-input a span {
    position: relative;
    top: 4px;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    mask-image: url(/icon/header/search.svg);
    -webkit-mask-image: url(/icon/header/search.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    display: inline-block;
}

#search .search-products {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

#search .search-product-item {
    width: 138px;
}

#search .search-product-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

#search .search-product-item .bg {
    position: relative;
    width: 100%;
    height: 146px;
    border-radius: 12px;
    background: var(--search-bg-product-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

#search .search-product-item .name {
    font-size: 14px;
    margin: 6px 0;
}

#search .search-product-item .price {
    font-size: 14px;
    opacity: .5;
}

#search .search-empty-header {
    margin-bottom: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-left: 13px;
}

#search .search-empty-header .title {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

#search .search-empty-header .subtitle {
    margin-top: 12px;
    opacity: .5;
}

#search .search-categories {
    padding-left: 13px;
}

#search .search-categories .title {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--search-subtitle-font-color);
}

#search .search-categories a {
    height: 40px;
    display: flex;
    align-items: center;
}

#profile {
    background-color: var(--body-bg-color);
}

#profile .back {
    position: relative;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    color: transparent;
    font-size: 0;
    background: transparent;
    border: none;
}

#profile .back::before {
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(-135deg);
    content: "";
}

#profile .logo {
    display: block;
    margin: 100px auto 50px auto;
    width: 140px;
    height: 35px;
    mask-image: url(/icon/header/logo.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url(/icon/header/logo.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    background-color: var(--header-font-color);
}

#profile .title {
    width: 350px;
    margin: 0 auto;
    text-align: center;
}

#profile .subtitle {
    width: 350px;
    margin: 0 auto;
    text-align: center;
    opacity: .5;
    font-size: 15px;
    margin-top: 12px;
}

#profile .subtitle .phone {
    display: block;
}

#profile input {
    display: inline-block;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    background-color: var(--input-bg);
    border: none;
    outline: none;
    box-shadow: none;
}

#profile .button-border-orange {
    height: 50px;
    margin-top: 20px;
}

#profile .agreement {
    width: 350px;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    margin-top: 12px;
}

#profile .agreement span {
    opacity: .5;
}

#profile a {
    color: var(--plus-bg-color);
    opacity: 1;
}

#profile .code-input>div:not(:last-child) {
    margin-right: 12px;
}

#profile .code-input>div {
    width: 54px;
    height: 50px;
    background-color: var(--input-bg);
    border-radius: 8px;
}

#profile .code-input>div:has(.code:focus) {
    background: #fff;
}

#profile .code-input .code:focus {
    color: black;
}

#profile .code-input input {
    width: 100%;
    padding: 0 16px;
    height: 100%;
    line-height: 1.5;
    background-color: transparent;
    border: none;
    text-align: center;
}

#profile .error-message {
    color: red;
    opacity: .8;
    font-size: 12px;
    margin-left: 13px;
}


/* END HEADER */



/* START PROFILE */
.profile-content {
    max-width: 760px;
    margin: 0 auto;
}

.profile-content .personal input,
#addTicket input,
#addTicket textarea,
#addAnswerTicket textarea {
    display: inline-block;
    border-radius: 8px;
    color: #fff !important;
    font-size: 14px;
    background-color: var(--input-bg) !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.profile-content .personal input:disabled {
    color: rgba(255, 255, 255, .5) !important;
}

.profile-exit {
    text-transform: uppercase;
    opacity: .5;
    font-size: 14px;
}

.profile-order {
    background-color: var(--basket-bg-color);
    padding: 28px 26px;
    border-radius: 12px;
}

.profile-content .border-custom {
    border-top: 1px solid rgba(164, 162, 135, .1);
    margin: 20px 0;
}

.profile-order-products {
    --outer-gap: 24px;
    --ribbon-gap: 12px;
    margin-bottom: 16px;
}

.profile-order-products>div {
    display: flex;
    align-items: center;
    flex-direction: row;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    gap: var(--ribbon-gap);
    margin-left: calc(-1 * var(--outer-gap));
    margin-right: calc(-1 * var(--outer-gap));
    width: calc(100% + (var(--outer-gap) * 2));
    padding: 0 var(--outer-gap);
}

.profile-order-product-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: var(--body-bg-color);
    border-radius: 8px;
}

.profile-order-product-item .amount {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: var(--basket-bg-color);
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 13px;
}

.profile-order-no-foto {
    position: relative;
    width: 56px;
    height: 56px;
}

.profile-order-no-foto::before {
    content: '—';
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 12px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-order-status {
    text-transform: uppercase;
}

.profile-order-date {
    opacity: .5;
}

.profile-order-pay {
    position: relative;
    padding-left: 23px;
    display: inline-block;
}

.profile-order-pay.yes:before {
    content: '✓';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    color: var(--plus-bg-color);
}

.profile-order-pay.no:before {
    content: '⨉';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    color: var(--plus-bg-color);
}

.profile-order.main .number span {
    opacity: .5;
}

.profile-order.main .item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(164, 162, 135, .1);
}

.profile-order.main .item .price {
    opacity: .5;
}

.profile-order.main .profile-order-product-item {
    width: 88px;
}

.profile-order.main .opacity {
    opacity: .5;
}

.profile-content .no-orders,
.profile-content .no-addresses,
.profile-content .no-tickets,
.profile-content .no-cards {
    text-align: center;
    margin: 100px 0;
}

.profile-content .no-orders .desc,
.profile-content .no-addresses .desc,
.profile-content .no-tickets .desc,
.profile-content .no-cards .desc {
    opacity: .5;
}

.profile-content .button-border-orange.add-address {
    width: 210px;
    margin: 20px auto;
}

.profile-address,
.profile-tickets,
.profile-cards {
    position: relative;
    background-color: var(--basket-bg-color);
    padding: 28px 26px;
    border-radius: 12px;
}

.add-address-link,
.add-ticket-link {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--plus-bg-color) !important;
    justify-content: end;
}

.add-address-link:hover,
.add-ticket-link:hover {
    opacity: .8;
}

.icon-plus-address {
    height: 20px;
    width: 16px;
    -webkit-mask-image: url('/icon/plus_and_cart.svg');
    mask-image: url('/icon/plus_and_cart.svg');
    background-color: var(--plus-bg-color);
    margin-right: 5px;
}

.close-link-address {
    height: 20px;
    width: 16px;
    -webkit-mask-image: url('/icon/plus_and_cart.svg');
    mask-image: url('/icon/plus_and_cart.svg');
    background-color: var(--main-font-color);
    margin-right: 5px;
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 10px;
    opacity: .5;
    rotate: 45deg;
}

#addTicket .modal-content,
#addAnswerTicket .modal-content {
    background-color: var(--main-bg-color);
}

.profile-tickets a.detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.profile-tickets.support {
    /* background: rgba(27, 35, 26, .6); */
    background: rgba(52, 68, 51, .5);
}

.profile-tickets .tickets-info,
.profile-cards .cards-info {
    font-size: 14px;
    opacity: .5;
}

.profile-tickets .files {
    margin-top: 10px;
    font-size: 15px;
    opacity: .5;
}

.file-drop {
    border: 1px dashed var(--plus-bg-color);
    border-radius: 12px;
    padding: 20px;
    opacity: .5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-drop.dragover {
    border-color: #4caf50;
    background: #f6fff6;
    color: #333;
}

.file-drop input {
    display: none;
}

/* END PROFILE */






/* START GIFT */
.gift-content .gift-img {
    background-image: url(/uploads/menu-gift-ideas-2023-1755777802.jpg);
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.gift-content .gift-title {
    font-size: 26px;
}

.gift-content .subtitle {
    opacity: .5;
}

.gift-content .gift-container {
    padding: 24px;
    border-radius: 20px;
    background-color: var(--basket-bg-color);
}

.gift-content .gift-summa {
    padding: 5px 15px;
    font-size: 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    cursor: pointer;
}

.gift-content .gift-summa.active {
    border: 1px solid var(--plus-bg-color);
}

.gift-content input,
.gift-content textarea {
    border: 0 !important;
    outline: 0 !important;
    color: #fff !important;
    background: var(--body-bg-color) !important;
    box-shadow: none !important;
}

.gift-content .error-message {
    font-size: 14px;
    padding-left: 10px;
}

.gift-content #congratulatory_text {
    resize: none;
    overflow: hidden;
    padding-bottom: 25px;
}

.gift-content .count_letter {
    position: absolute;
    bottom: 4px;
    right: 10px;
    font-size: 12px;
    opacity: .5;
}

.gift-content .terms-of-use {
    position: relative;
    opacity: .5;
}

.gift-content .terms-of-use::after {
    content: '';
    position: absolute;
    right: -22px;
    bottom: 2px;
    width: 13px;
    height: 13px;
    mask-image: url(/icon/arrow_right.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url(/icon/arrow_right.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    background-color: var(--main-font-color);
}

/* END GIFT */




/* START CATALOG */
.catalog-limit {
    max-width: 1300px;
    margin: 0 auto;
}

.catalog-limit-wrap .catalog-limit {
    overflow: hidden;
    transition: max-height .25s ease;
}

#catalogMore {
    position: relative;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .5;
    margin-top: 30px;
    display: block;
    text-align: center;
}

.catalog-title {
    font-size: 25px;
    text-align: center;
    margin-bottom: 45px;
}

.catalog-filters {
    margin-bottom: 40px;
    text-align: center;
}

.catalog-filters>a {
    border: 2px solid hsla(0, 0%, 100%, .1);
    border-radius: 30px;
    border-width: 1px;
    color: var(--main-font-color);
    display: inline-block;
    font-size: 11px;
    letter-spacing: .11em;
    line-height: .8;
    padding: 12px 25px;
    position: relative;
    text-transform: uppercase;
    transition: border-color .3s ease;
    will-change: border-color;
}

.catalog-filters>a:hover,
.catalog-filters>a.active {
    background-color: transparent;
    border-color: var(--plus-bg-color);
    /*  color: #fff; */
}

.catalog-card {
    background-color: var(--body-bg-color);
    width: 300px;
    border: none;
}

.catalog-card-wrap {
    position: relative;
    width: 300px;
    height: 410px;
    /*     background: #768674; */
    background: rgba(118, 134, 116, .5);
    border-radius: 12px;
    overflow: hidden;
}

.catalog-card:hover button {
    background-color: var(--plus-bg-color);
}

.catalog-card-wrap button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 13;
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    border-radius: 15px;
    transition: all .2s ease-out;
}

.catalog-card button:hover {
    width: 60px;
}


.catalog-card-wrap button::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 2px;
    left: 0;
    z-index: 1;
    margin: 0 10px;
    /*     background-image: url('/icon/plus_and_cart.svg');
    background-repeat: no-repeat;
    background-position: center left; */
    mask-image: url(/icon/plus_and_cart.svg);
    mask-repeat: no-repeat;
    /*     mask-size: contain; */
    mask-position: center left;
    -webkit-mask-image: url(/icon/plus_and_cart.svg);
    -webkit-mask-repeat: no-repeat;
    /*     -webkit-mask-size: contain; */
    -webkit-mask-position: center left;
    background-color: var(--plus-bg-color);
    content: "";
    transition: background-image 0s linear .2s;
}

.catalog-card-wrap button.basket-true::before {
    /* background-image: url('/icon/check_mark_and_cart.svg'); */
    mask-image: url(/icon/check_mark_and_cart.svg);
    -webkit-mask-image: url(/icon/check_mark_and_cart.svg);
}

.catalog-card:hover .catalog-card-wrap button::before {
    background-color: #fff;
}

.catalog-card button::after {
    display: block;
    color: var(--plus-bg-color);
    content: "В список";
    position: absolute;
    left: 80px;
    bottom: -25px;
    width: 70px;
    transition: all .3s ease-in-out;
}

.catalog-card button:hover::after {
    left: -4px;
    bottom: -25px;
}

.catalog-card-wrap picture {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.catalog-card-wrap picture img {
    /*  position: absolute;
    top: auto;
    max-width: 85%;
    max-height: 80%;
    bottom: 10%; */
    width: 100%;
    transition: transform .3s ease, opacity .3s;
}

.catalog-card:hover picture img {
    transform: scale(1.1);
}

.catalog-card-wrap .choose-color,
.product-card .choose-color {
    position: absolute;
    bottom: 11px;
    width: 100%;
    gap: 0 10px;
    z-index: 1;
}

.catalog-card-wrap .choose-color>div,
.product-card .choose-color>div {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 3px;
    gap: 0 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
}

.catalog-card-wrap .choose-color>div:before,
.product-card .choose-color>div:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .1);
    content: "";
}

.catalog-card-wrap .choose-color .color-swatch.active:after,
.product-card .choose-color .color-swatch.active:after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 5px;
    border: 1px solid var(--plus-bg-color);
}

.catalog-card .title {
    margin-top: 18px;
    color: var(--main-font-color);
}

.catalog-card .price {
    font-size: 14px;
    /*  color: var(--main-font-color); */
    color: #ffffff;
    opacity: .7;
}

.catalog-card .logo-loader {
    position: relative;
    display: block;
    width: 140px;
    height: 35px;
    mask-image: url(/icon/header/logo.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url(/icon/header/logo.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    background-color: var(--main-bg-color);
}

.catalog-card .logo-loader::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 1s infinite;
}

.catalog-card.recipe .portions,
.catalog-card.recipe .time,
.recipe__gallery_info .portions,
.recipe__gallery_info .time {
    opacity: .5;
    font-size: 14px;
    line-height: 1.79;
    padding: 1px 0 0 27px;
    position: relative;
}

.recipe__gallery_info .portions,
.recipe__gallery_info .time {
    opacity: 1;
}

.catalog-card.recipe .portions:before,
.recipe__gallery_info .portions:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='14' height='13'%3E%3Cuse xlink:href='%23a' fill='%238F8480' transform='translate(0 2.5)'/%3E%3Cuse xlink:href='%23b' fill='%238F8480' transform='translate(0 12.5)'/%3E%3Cuse xlink:href='%23c' fill='%238F8480' transform='translate(5.5 .5)'/%3E%3Cuse xlink:href='%23d' fill='%238F8480' transform='translate(7 1)'/%3E%3Cdefs%3E%3Cpath id='a' fill-rule='evenodd' d='M0 7a7 7 0 1 1 14 0zm12.92-1A6 6 0 0 0 7 1a6 6 0 0 0-5.92 5z'/%3E%3Cpath id='b' d='M0 .5h14v-1H0z'/%3E%3Cpath id='c' d='M0 .5h3v-1H0z'/%3E%3Cpath id='d' d='M-.5 0v2h1V0z'/%3E%3C/defs%3E%3C/svg%3E");
}

.catalog-card.recipe .time:before,
.recipe__gallery_info .time:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='15' height='15'%3E%3Cuse xlink:href='%23a' fill='%238F8480' transform='translate(.5 .5)'/%3E%3Cuse xlink:href='%23b' fill='%238F8480' transform='translate(7.5 3)'/%3E%3Cdefs%3E%3Cpath id='a' d='M7 14.5A7.5 7.5 0 0 0 14.5 7h-1A6.5 6.5 0 0 1 7 13.5zM14.5 7A7.5 7.5 0 0 0 7-.5v1A6.5 6.5 0 0 1 13.5 7zM7-.5A7.5 7.5 0 0 0-.5 7h1A6.5 6.5 0 0 1 7 .5zM-.5 7A7.5 7.5 0 0 0 7 14.5v-1A6.5 6.5 0 0 1 .5 7z'/%3E%3Cpath id='b' d='M0 5h-.5v.207l.146.147zm-.5-5v5h1V0zm.146 5.354 2.75 2.75.708-.708-2.75-2.75z'/%3E%3C/defs%3E%3C/svg%3E");
}

.catalog-card.recipe .portions:before,
.catalog-card.recipe .time:before,
.recipe__gallery_info .portions:before,
.recipe__gallery_info .time:before {
    background-position: 50%;
    background-repeat: no-repeat;
    content: "";
    height: 15px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 17px;
}

@keyframes shimmer {
    0% {
        left: -150px;
    }

    100% {
        left: 300px;
    }
}

.catalog-marketplace-a {
    font-weight: 400;
    font-size: 12px;
    padding: 5px 10px;
    margin-top: 10px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    transition: .3s background-color, .3s border-color, .3s color;
    border: 1px solid var(--plus-bg-color);
}

.catalog-marketplace-a:hover {
    color: #fff;
    background-color: var(--plus-bg-color);
}

.catalog-category {
    width: 100%;
    height: auto;
    padding: 18px 0 12px;
}

.catalog-category-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
    padding: 0 32px;
}

.catalog-category-img {
    width: 80px;
    height: 90px;
}

.catalog-category-card {
    max-width: 480px;
    margin: 0 auto;
    background-color: var(--basket-bg-color);
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}

.catalog-category-card .catalog-title {
    font-size: 14px;
    text-align: center;
    margin-bottom: 0;
    margin-top: 10px;
}

/* END CATALOG */



/* START RECIPE */
.recipes__filter {
    font-size: 0;
    margin-bottom: 50px;
    margin-top: 42px;
    text-align: center;
}

@media (min-width: 768px) {
    .recipes__filter>div:not(:last-child) {
        margin-right: 30px;
    }
}

.recipes__filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.recipes__filter>div {
    flex: 1 1 300px;
    max-width: 300px;
}

.choices {
    width: 100%;
    text-align: left;
}

/* END RECIPE */



/* START PRODUCT */
.product-card {
    background-color: var(--main-bg-color);
    border: none;
}

.product-card .wrap-product-card {
    display: grid;
    grid-template-columns: 1fr 1fr minmax(520px, 1fr);
    grid-template-areas: "gallery gallery details";
    height: calc(100vh - 120px);
    /* height: 100vh; */
    overflow: hidden;
}

.product-card .product-preview {
    height: 100%;
    grid-area: gallery;
}

.product-card .product-content {
    height: 100%;
    grid-area: details;
    padding: 0;
    overflow: hidden;
    max-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .wrap-product-content {
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 1440px) {
    .product-card .product-content {
        min-height: 717px;
    }

    .product-card .wrap-product-card {
        /*  height: calc(100vh - 60px); */
    }
}

@media (min-width: 768px) {
    .product-card .product-content {
        min-height: 621px;
    }
}

@media (max-width: 767px) {
    .product-card .wrap-product-card {
        position: relative;
        height: auto;
        display: block;
    }

    .product-card .product-preview-img {
        /*  height: initial !important; */
        /*  height: 45% !important; */
    }

    .product-card .product-preview-img {
        --crop-focus-x: 0.61 !important;
        height: 100% !important;
    }

    .product-card .product-preview {
        height: 400px;
    }

    /*  .product-card .product-preview-img {
        height: auto in !important;
    } */

    .product-card .product-content {
        position: relative;
        /*   bottom: 0; */
        width: 100%;
        height: auto;
        border-radius: 20px 20px 0 0;
        padding: 24px 0;
        --header-bg-color: #344433cc;
        /*  background: linear-gradient(180deg, rgb(52 68 51 / 70%) 0%, #344433 100%); */
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .product-card .wrap-product-content {
        /*   max-width: 330px; */
    }
}

.product-card .wrap-product-preview {
    position: relative;
    width: 100%;
    height: 100%;
    container-type: size;
    overflow: hidden;
}

.product-card .wrap-product-card>.row,
.product-card .wrap-product-card>.row>div {
    height: 100%;
}

.product-card .product-preview-img {
    position: relative;
    -o-object-position: clamp(100%, 0.5 * var(--container-width) - var(--crop-focus-x) * var(--image-width), 0%) center;
    object-position: clamp(100%, 0.5 * var(--container-width) - var(--crop-focus-x) * var(--image-width), 0%) center;
    --crop-focus-x: 0.665;
    --container-width: 100cqw;
    --image-width: calc(var(--container-width) - 100%);
    width: 100%;
    /*  height: 100%; */
    height: calc(100vh - 120px);
    object-fit: cover;
}

.product-card .name {
    font-size: 22px;
}

.product-card .mini-desc,
.product-card .description {
    letter-spacing: .2px;
}

.product-card .description li {
    list-style-type: initial;
}

.product-card .price {
    /* color: var(--main-font-color);
    opacity: .5; */
    color: #ffffff;
}

.product-card button,
#oneClickBuy .buy,
#preOrderBuy .buy,
.basket .basket-order .buy,
.button-border-orange {
    height: 56px;
    font-weight: 400;
    font-size: 12px;
    padding: 0 32px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .5);
    transition: .3s background-color, .3s border-color, .3s color;
}

.product-card .buy,
.product-card .preorder,
#oneClickBuy .buy,
#preOrderBuy .buy,
.basket .basket-order .buy,
.button-border-orange {
    border: 2px solid var(--plus-bg-color);
}

.marketplace-buy {
    text-align: center;
}

.marketplace-buy:hover {
    color: #fff;
    cursor: pointer;
}

.product-card .buy:hover,
.product-card .preorder:hover,
#oneClickBuy .buy:hover,
#preOrderBuy .buy:hover,
.basket .basket-order .buy:hover,
.button-border-orange:hover {
    background-color: var(--plus-bg-color);
}

.product-card .buy span {
    position: relative;
    width: 20px;
    height: 20px;
    top: -2px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('/icon/product/check_mark.svg');
}

.product-card .one-click {
    transform: translateX(-100%);
    opacity: 0;
    will-change: transform, opacity, border-color;
    transition: .3s ease-in-out transform, .3s opacity, .3s border-color;
}

.product-card .wrap:hover .one-click {
    transform: translateX(0);
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .product-card .one-click {
        transform: translateX(0);
        opacity: 1;
    }
}

.product-card .one-click:hover {
    border: 2px solid rgba(255, 255, 255, 1);
}

.product-card .choose-color a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product-card .choose-color>div {
    width: 50px;
    height: 20px;
}

.product-desktop-bg {
    background: linear-gradient(180deg, rgb(52 68 51 / 70%) 0%, #344433 100%);
    padding: 30px;
    /*  margin-bottom: 60px; */
}

.breadcrumbs-product {
    display: flex;
    justify-content: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .breadcrumbs-product {
        justify-content: flex-start;
        overflow-x: auto;
    }
}

.breadcrumbs-product>li {
    display: inline;
    height: 21px;
    white-space: nowrap;
}

.breadcrumbs-product>li:not(:last-child)::after {
    display: inline-block;
    width: 8px;
    height: 12px;
    margin-right: 6px;
    margin-left: 6px;
    background-color: #746762;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDggMTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIG9wYWNpdHk9IjAuNSIgZD0iTTEgMUw2LjYgNi41TDEgMTEuOSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjMiLz4KPC9zdmc+);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDggMTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIG9wYWNpdHk9IjAuNSIgZD0iTTEgMUw2LjYgNi41TDEgMTEuOSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjMiLz4KPC9zdmc+);
}

.breadcrumbs-product>li:last-child {
    opacity: .5;
}

.product-card .old-price,
.old-price {
    color: var(--main-font-color);
    opacity: .5;
    text-decoration: line-through;
    margin-left: 15px;
}

.product-card .review img {
    max-height: calc(100vh - 150px);
    border-radius: 12px;
    min-height: 400px;
}

.product-card .review .title {
    font-size: 18px;
}

.product-card .characteristics {
    max-width: 500px;
}

.product-card .characteristics .row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.product-card .characteristics .rows {
    transition: max-height .3s ease;
    will-change: height;
    overflow: hidden;
}

.product-card .characteristics a.show-more,
.service a.show-more {
    position: relative;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 30px;
    opacity: .5;
    margin-top: 30px;
    display: block;
}

.product-card .characteristics a.show-more:not(.active)::before,
.service a.show-more:not(.active)::before {
    position: absolute;
    top: 4px;
    left: 7px;
    width: 1px;
    height: 15px;
    background: var(--main-font-color);
    content: "";
}

.product-card .characteristics a.show-more::after,
.service a.show-more::after {
    position: absolute;
    top: 11px;
    left: 0;
    width: 15px;
    height: 1px;
    background: var(--main-font-color);
    content: "";
}

@media screen and (max-width: 768px) {
    .product-card .characteristics .row>div:last-of-type {
        opacity: .4;
    }
}

.product-card .characteristics .characteristics-title {
    margin-bottom: 40px;
    font-size: 19px;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--plus-bg-color);
    display: inline-block;
    hyphens: auto;
    overflow-wrap: break-word;
}

.see-also-product {
    font-size: 19px;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--plus-bg-color);
    display: inline-block;
}

.product-card-gallery img {
    width: 100%;
}

.product-card .gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

#oneClickBuy,
#preOrderBuy {
    background-color: var(--body-bg-color);
}

#oneClickBuy .name,
#preOrderBuy .name {
    font-size: 17px;
}

#oneClickBuy .text,
#callbackModal .text,
#preOrderBuy .text,
#contactModal .text {
    color: var(--main-font-color);
    opacity: .5;
}

#oneClickBuy a,
#preOrderBuy a,
#callbackModal a,
#contactModal a {
    color: var(--plus-bg-color);
}

#oneClickBuy input,
#preOrderBuy input {
    display: inline-block;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    background-color: var(--input-bg);
    border: none;
    outline: none;
    box-shadow: none;
}

#oneClickBuy .order-placed-call .title,
#preOrderBuy .order-placed-call .title {
    font-size: 19px;
    margin-top: 35px;
    margin-bottom: 20px;
}

#oneClickBuy .order-placed-call .desc,
#preOrderBuy .order-placed-call .desc {
    opacity: .5;
}

/* END PRODUCT */





/* START BASKET */
.basket {
    max-width: 928px;
    margin: 0 auto;
}

.basket-empty {
    padding: 80px 0 60px;
}

.basket-empty .title {
    text-align: center;
    margin-bottom: 8px;
}

.basket-empty .text {
    text-align: center;
    margin-bottom: 24px;
    opacity: .5;
}

.basket-empty .desc {
    text-align: center;
    margin-top: 42px;
    margin-bottom: 40px;
}

.basket-empty .wrap {
    width: 250px;
    margin: 0 auto;
}

.basket .header {
    position: relative;
    margin-bottom: 40px;
}

.basket .header .back {
    position: absolute;
    left: 0;
}

.basket .header .back a {
    height: 24px;
}

.basket .header .back span.arrow-left {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--main-font-color);
    mask-image: url(/icon/arrow_left.svg);
    -webkit-mask-image: url(/icon/arrow_left.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    margin-right: 4px;
}

.basket .header .title {
    font-size: 18px;
    text-align: center;
}

.basket .basket-products,
.basket .basket-order,
.basket .checkout-contacts,
.basket .checkout-delivery-method,
.basket .checkout-payment-method,
.basket .checkout-courier-time {
    padding: 0 24px;
    border-radius: 20px;
    background-color: var(--basket-bg-color);
}

.basket .checkout-delivery-method {
    padding: 24px 0 !important;
}

.basket .basket-order {
    padding: 24px 16px;
}

.basket .basket-product-item {
    display: flex;
    padding: 24px 0;
    min-height: 128px;
}

.basket .basket-product-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.basket .basket-product-item img {
    width: 80px;
    height: 80px;
}

.basket .basket-product-item .wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
    margin-left: 32px;
}

.basket .basket-product-item .wrap-price-quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.basket .basket-product-item .price,
.basket .basket-product-item .quantity {
    opacity: .5;
}

.basket .basket-marketplace-buttons {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-top: 18px;
}

.basket .basket-marketplace-buttons .button-border-orange {
    flex: 1 1 0;
    flex-direction: column;
    min-width: 0;
    width: auto;
    height: 40px;
    margin-top: 0;
    padding: 0 18px;
    text-align: center;
    line-height: 1.25;
}

@media (max-width: 575px) {
    .basket .basket-product-item .wrap {
        padding-right: 30px;
    }

    .basket .basket-marketplace-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .basket .basket-marketplace-buttons .button-border-orange {
        width: 100%;
    }

    .basket .basket-product-item .management {
        top: 0;
        right: 0;
        opacity: .85;
        background-color: var(--footer-font-color);
    }
}

.basket .basket-product-item .management {
    position: absolute;
    top: 0;
    right: 0;
    opacity: .5;
    width: 20px;
    height: 20px;
    background-color: var(--main-font-color);
    mask-image: url(/icon/vertical_ellipsis.svg);
    -webkit-mask-image: url(/icon/vertical_ellipsis.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
}

.basket .basket-order>span {
    display: block;
    font-size: 13px;
    margin-bottom: 16px;
}

.basket .basket-order .wrap {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.basket .basket-order .wrap div:first-of-type {
    opacity: .5;
}

.basket .basket-order .buy,
.button-border-orange {
    width: 100%;
    height: 40px;
    margin-top: 15px;
}

.button-border-orange:disabled {
    opacity: .3;
    cursor: default;
}

.button-border-orange:hover:disabled {
    background-color: initial;
}

.basket .checkout-contacts,
.basket .checkout-delivery-method,
.basket .checkout-payment-method,
.basket .checkout-courier-time {
    padding: 24px;
}

.basket .checkout-contacts input {
    color: #fff;
    background: var(--body-bg-color);
    outline: none;
    border: none;
    box-shadow: none;
}

.basket .checkout-delivery-method .wrap,
.basket .checkout-payment-method .wrap {
    display: flex;
    width: 100%;
    gap: 8px;
    overflow: scroll;
    scrollbar-width: none;
}

.basket .checkout-delivery-method .wrap {
    padding: 0 24px;
}

.basket .checkout-delivery-method .wrap::-webkit-scrollbar,
.basket .checkout-payment-method .wrap::-webkit-scrollbar {
    display: none;
}

.basket .checkout-delivery-method .wrap>div,
.basket .checkout-payment-method .wrap>div {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: .2px;
    border: 1px solid #a0938d;
    border-radius: 8px;
    cursor: pointer;

}

@media screen and (max-width: 768px) {
    .basket .checkout-delivery-method .wrap>div {
        width: 144px;
        min-width: 144px;
    }
}

.basket .checkout-payment-method .wrap>div {
    width: 50%;
}

.basket .checkout-delivery-method .wrap>div.active,
.basket .checkout-payment-method .wrap>div.active {
    border: 1px solid var(--plus-bg-color);
}

.basket .checkout-delivery-method .wrap>div>div,
.basket .checkout-payment-method .wrap>div>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 12px;
}

.basket .checkout-delivery-method span.pickup,
.basket .checkout-delivery-method span.delivery,
.basket .checkout-delivery-method span.courier,
.basket .checkout-payment-method span.card,
.basket .checkout-payment-method span.yandex,
.basket .checkout-payment-method span.cash {
    width: 20px;
    height: 20px;
    background-color: var(--main-font-color);
    mask-image: url(/icon/basket/pickup.svg);
    -webkit-mask-image: url(/icon/basket/pickup.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    opacity: .5;
}

.basket .checkout-delivery-method span.delivery {
    mask-image: url(/icon/basket/delivery.svg);
    -webkit-mask-image: url(/icon/basket/delivery.svg);
}

.basket .checkout-delivery-method span.courier {
    mask-image: url(/icon/basket/courier.svg);
    -webkit-mask-image: url(/icon/basket/courier.svg);
}

.basket .checkout-payment-method span.card {
    mask-image: url(/icon/basket/card.svg);
    -webkit-mask-image: url(/icon/basket/card.svg);
}

.basket .checkout-payment-method span.yandex {
    width: 35px;
    mask-image: url(/icon/basket/yandex.svg);
    -webkit-mask-image: url(/icon/basket/yandex.svg);
}

.basket .checkout-payment-method span.cash {
    mask-image: url(/icon/basket/cash.svg);
    -webkit-mask-image: url(/icon/basket/cash.svg);
}

.basket .checkout-delivery-method .delivery-address,
.basket .checkout-payment-method .gift-cards {
    position: relative;
    background-color: var(--main-bg-color);
    padding: 9px 15px;
    border-radius: 12px;
    margin-top: 15px;
    font-size: 14px;
    cursor: pointer;
}

.basket .checkout-delivery-method .delivery-address {
    margin: 24px 24px 0px 24px;
}

.basket .checkout-delivery-method .delivery-address .a,
.basket .checkout-payment-method .gift-cards .a {
    color: var(--plus-bg-color);
}

.basket .order-total-container {
    position: sticky;
    top: 135px;
}

.basket .order-total {

    background-color: var(--main-bg-color);
    border-radius: 20px;
    border: 1px solid var(--basket-bg-color);
    overflow: hidden;
}

.basket .basket-order-products {
    --outer-gap: 24px;
    --ribbon-gap: 12px;
    margin-bottom: 16px;
}

.basket .basket-order-products>div {
    display: flex;
    align-items: center;
    flex-direction: row;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    gap: var(--ribbon-gap);
    margin-left: calc(-1 * var(--outer-gap));
    margin-right: calc(-1 * var(--outer-gap));
    width: calc(100% + (var(--outer-gap) * 2));
    padding: 0 var(--outer-gap);
}

.basket .basket-order-product-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 88px;
    width: 88px;
    padding: 16px;
    background: var(--basket-bg-color);
    border-radius: 8px;
}

.basket .basket-order-product-item .amount {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: var(--body-bg-color);
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 13px;
}

.basket .basket-order-product-item img {
    max-width: 85%;
    max-height: 80%;
}

.basket .total-price {
    margin-top: 15px;
    color: #fff;
    text-align: right;
}

.basket .rule {
    font-size: 13px;
    margin-top: 10px;
}

.basket .rule a {
    color: var(--plus-bg-color);
}

.popover {
    overflow: hidden;
}

.popover.product-management-content {
    z-index: 10;
}

.popover.product-management-content .popover-arrow {
    display: none !important;
}

.popover.product-management-content .popover-body {
    background-color: var(--main-bg-color);
    color: var(--main-font-color);
}

.popover.product-management-content .wrap {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}

.popover.product-management-content .title {
    margin-right: 25px;
    opacity: .5;
}

.popover.product-management-content input {
    max-width: 40px;
    margin: 0 10px;
    color: #fff;
    text-align: center;
    background-color: transparent;
    border: 0;
    outline: none;
}

.popover.product-management-content button {
    position: relative;
    width: 36px;
    height: 36px;
    background-color: #5b5553;
    border-radius: 8px;
    display: inline-block;


}

.popover.product-management-content button:before {
    position: absolute;
    top: 8px;
    left: 8px;
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.popover.product-management-content button.minus:before {
    background-image: url(/icon/minus.svg);
}

.popover.product-management-content button.plus:before {
    background-image: url(/icon/plus.svg?1);
}

.popover.product-management-content .delete {
    margin-top: 16px;
    text-align: end;
}

#cdek .modal-content,
#chooseAddAddress .modal-content,
#courierProfile .modal-content,
#courier .modal-content,
#chooseSaveAddressCdek .modal-content,
#chooseSaveAddressCourier .modal-content,
#chooseGiftCard .modal-content,
#InfoMessage .modal-content {
    background-color: var(--main-bg-color);
}


#chooseSaveAddressCdek .bottom,
#chooseSaveAddressCourier .bottom,
#chooseGiftCard .bottom {
    background-color: var(--basket-bg-color);
    border-bottom-left-radius: var(--bs-modal-border-radius);
    border-bottom-right-radius: var(--bs-modal-border-radius);
    padding: 24px;
    margin-top: 80px;
}

#chooseGiftCard .require-login-card {
    background-color: var(--basket-bg-color);
    max-width: 400px;
    border-radius: 20px;
    margin: 80px auto;
    padding: 24px;
    font-size: 14px;
}

#courier input,
#courier .city,
#courierProfile input,
#courierProfile .city,
.basket .checkout-courier-time .date,
.basket .checkout-courier-time .time {
    color: #fff;
    background-color: var(--basket-bg-color);
    outline: none;
    border: none;
    box-shadow: none;
}

.basket .checkout-courier-time .date,
.basket .checkout-courier-time .time {
    background-color: var(--main-bg-color);
}

#courier .city.form-select,
#courierProfile .city.form-select,
.basket .checkout-courier-time .date.form-select,
.basket .checkout-courier-time .time.form-select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M3.204 5.724a.5.5 0 0 1 .592-.064l.07.057L8 9.293l4.134-3.576a.5.5 0 0 1 .765.638l-.057.07-4.5 3.89a.5.5 0 0 1-.638.057l-.07-.057-4.5-3.89a.5.5 0 0 1 0-.765z'/></svg>") !important;
}

#courier .focus .ts-control,
#courierProfile .focus .ts-control,
.basket .checkout-courier-time .focus .ts-control {
    /*  box-shadow: 0 0 0 1px rgb(228, 148, 39, 1) !important; */
    box-shadow: none !important;
}

#courier .ts-control,
#courier .ts-dropdown .active,
#courierProfile .ts-control,
#courierProfile .ts-dropdown .active,
.basket .checkout-courier-time .ts-control,
.basket .checkout-courier-time .ts-dropdown .active {
    color: var(--main-font-color);
    background: var(--main-bg-color);
    outline: none;
}

#courier .ts-dropdown,
#courierProfile .ts-dropdown,
.basket .checkout-courier-time .ts-dropdown {
    background: var(--basket-bg-color);
    color: rgb(164, 162, 135, .5);
    border: 1px solid var(--main-bg-color);
}

.checkout-courier-time ::-webkit-scrollbar {
    width: 1px;
    height: 1px;
}

.checkout-courier-time ::-webkit-scrollbar-track {
    background: transparent;
}

.checkout-courier-time ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .1);
    border-radius: 1px;
}

.checkout-courier-time {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .1) transparent;
}


/* END BASKET */


.page-service {
    padding: 28px 26px;
    background: #344433;
    border-radius: 12px;
}

.page-service .city {
    margin-bottom: 28px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.56;
    letter-spacing: .2px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.page-service .subtitle {
    opacity: .5;
}

.page-contacts .one {
    /*     padding: 28px 26px; */
    background: #344433;
    border-radius: 10px;
}

.page-contacts .one>div {
    padding: 82px 56px 97px;
    text-align: center;
    border-radius: 10px;
}

/* .page-contacts .one>div:nth-child(2) {
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-contacts .one>div:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
} */

.page-contacts .hotline__number,
.page-contacts .butik {
    position: relative;
    font-size: 21px;
    margin-bottom: 17px;
    display: block;
}

.page-contacts .footer-contacts-page>* {
    display: inline;
}

.page-contacts .vk,
.page-contacts .telegram,
.page-contacts .dzen {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    vertical-align: top;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    cursor: pointer;
    transition: border .3s ease;
    will-change: border;
    margin-left: 20px;
}

.page-contacts .vk:hover,
.page-contacts .telegram:hover,
.page-contacts .dzen:hover {
    border: 1px solid #fff;
}

.page-contacts .vk::after {
    position: absolute;
    top: 50%;
    left: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translate(-50%, -50%);
    content: "";
    width: 24px;
    height: 14px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMSIgaGVpZ2h0PSIxMiI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBmaWxsPSIjRkZGIiBkPSJNOS44NyAxMS45NmgxLjJzLjM2LS4wNC41NS0uMjRjLjE3LS4yLjE2LS41My4xNi0uNTNzLS4wMi0xLjcuNzMtMS45Yy44LS4zIDEuNyAxLjUgMi43IDIuMi44LjUgMS40LjQgMS40LjRsMi43LS4wOHMxLjQtLjEuNzgtMS4yYy0uMDUtLjA4LS40LS44LTItMi4zLTEuNjctMS41Ny0xLjQ1LTEuMy41OC00IDEuMjQtMS42NiAxLjczLTIuNjcgMS41OC0zLjFDMjAgLjkgMTkuMSAxIDE5LjEgMWgtMy4wNHMtLjIzLS4wMy0uNC4wN2MtLjE1LjEtLjI2LjMzLS4yNi4zM3MtLjUgMS4yNy0xLjEgMi4zNWMtMS4zNiAyLjMtMS45IDIuNC0yLjEgMi4yNC0uNTMtLjQtLjQtMS40LS40LTIuMSAwLTIuMi4zNC0zLjE0LS42NS0zLjM4LS4zLS4wNC0uNTUtLjEtMS40LS4xLTEuMDggMC0yIDAtMi41LjI2LS4zNS4xNi0uNi41My0uNDUuNTUuMi4wMy42Mi4xMy45LjQ1LjMuNDcuMyAxLjQuMyAxLjRzLjE0IDIuNi0uNDUgMi45NWMtLjQuMjQtLjk3LS4yLTIuMTctMi4zLS42LTEuMDMtMS4xLTIuMi0xLjEtMi4ycy0uMDctLjIzLS4yMy0uMzVjLS4yLS4xNC0uNDctLjItLjQ3LS4ySC42OHMtLjQyIDAtLjU4LjJjLS4xNC4xNyAwIC41IDAgLjVTMi4zNCA3IDQuODggOS42NWMyLjMyIDIuNDQgNC45NyAyLjI4IDQuOTcgMi4yOHoiLz48L3N2Zz4=);
}

.page-contacts .telegram::after {
    position: absolute;
    top: 50%;
    left: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translate(-50%, -50%);
    content: "";
    width: 24px;
    height: 24px;
    background-image: url('/icon/footer/telegram.svg');

}

.page-contacts .dzen::after {
    position: absolute;
    top: 50%;
    left: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translate(-50%, -50%);
    content: "";
    width: 24px;
    height: 24px;
    background-image: url('/icon/footer/dzen.svg?1');
}

.page-contacts .one>div:first-of-type p {
    opacity: .5;
}

.page-contacts .one>div:last-of-type {
    padding: 50px 52px;
    background-color: #B4B198;
    color: var(--search-subtitle-font-color);
    text-align: left;
}

.page-contacts .one .subtitle {
    opacity: .5;
    margin-bottom: 3px;
    font-size: 13px;
}

.page-contacts .one>div:last-of-type a {
    color: var(--search-subtitle-font-color);
}

#contactModal .modal-content,
#callbackModal .modal-content {
    background-color: var(--basket-bg-color);
}

#contactModal input,
#contactModal textarea,
#callbackModal input,
#callbackModal textarea {
    color: #fff;
    background: var(--body-bg-color);
    outline: none;
    border: none;
    box-shadow: none;
}

#contactModal .modal-footer,
#callbackModal .modal-footer {
    flex-direction: column;
}

#contactModal .contact-rules,
#callbackModal .callback-rules {
    max-width: 420px;
    margin: 12px auto 0;
    color: var(--footer-font-color);
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: .4px;
}

#contactModal .contact-rules label,
#callbackModal .callback-rules label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    padding-left: 26px;
    text-align: left;
    cursor: pointer;
}

#contactModal .contact-rules label:last-child,
#callbackModal .callback-rules label:last-child {
    margin-bottom: 0;
}

#contactModal .contact-rules input,
#callbackModal .callback-rules input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#contactModal .contact-rules label>span,
#callbackModal .callback-rules label>span {
    position: relative;
}

#contactModal .contact-rules label>span::before,
#callbackModal .callback-rules label>span::before {
    position: absolute;
    top: 1px;
    left: -26px;
    width: 16px;
    height: 16px;
    background-color: var(--body-bg-color);
    border: 1px solid rgba(164, 162, 135, .55);
    border-radius: 4px;
    content: "";
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

#contactModal .contact-rules label>span::after,
#callbackModal .callback-rules label>span::after {
    position: absolute;
    top: 5px;
    left: -22px;
    width: 8px;
    height: 5px;
    border-left: 2px solid var(--body-bg-color);
    border-bottom: 2px solid var(--body-bg-color);
    content: "";
    opacity: 0;
    transform: rotate(-45deg) scale(.8);
    transition: opacity .2s ease, transform .2s ease;
}

#contactModal .contact-rules label:hover>span::before,
#callbackModal .callback-rules label:hover>span::before {
    border-color: var(--bottom-liner-color);
}

#contactModal .contact-rules input:focus-visible+span::before,
#callbackModal .callback-rules input:focus-visible+span::before {
    border-color: var(--bottom-liner-color);
    box-shadow: 0 0 0 2px rgba(228, 148, 39, .2);
}

#contactModal .contact-rules input:checked+span::before,
#callbackModal .callback-rules input:checked+span::before {
    background-color: var(--bottom-liner-color);
    border-color: var(--bottom-liner-color);
    box-shadow: 0 0 0 2px rgba(228, 148, 39, .12);
}

#contactModal .contact-rules input:checked+span::after,
#callbackModal .callback-rules input:checked+span::after {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
}

#contactModal .contact-rules.error,
#callbackModal .callback-rules.error {
    color: #ff6b6b;
}

#contactModal .contact-rules a,
#callbackModal .callback-rules a {
    color: var(--bottom-liner-color);
}

#callbackModal .button-border-orange:disabled {
    cursor: default;
    opacity: .45;
}

#callbackModal .callback-success {
    padding: 48px 32px 56px;
    color: var(--footer-font-color);
    font-size: 18px;
    line-height: 1.35;
    text-align: center;
    letter-spacing: .4px;
}

.page-payment {
    padding: 28px 26px;
    background: #344433;
    border-radius: 12px;
    max-width: 960px;
    margin: 0 auto;
}

.page-payment .border-custom {
    border-top: 1px solid rgba(164, 162, 135, .5);
    margin: 40px 0;
}

.page-payment-links a,
.profile-links a {
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    opacity: .5;
}

.page-payment-links a.active,
.profile-links a.active {
    opacity: 1;
}

.page-payment-links a.active::before,
.profile-links a.active::before {
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    display: block;
    height: 2px;
    background-color: var(--bottom-liner-color);
    content: "";
}

.page-payment ul {
    padding: revert;
}

.page-payment ul li {
    list-style-type: inherit;
}

.page-payment a {
    color: var(--bottom-liner-color);
}

.page-gift-card .accordion-item {
    background: var(--body-bg-color);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.page-gift-card .accordion-button {
    background: var(--body-bg-color);
    color: var(--main-font-color);
    padding-top: 30px;
    padding-bottom: 30px;
}

.page-gift-card .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.page-gift-card .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.page-gift-card .accordion-body {
    background: var(--main-bg-color);
    color: rgba(164, 162, 135, .5);
}




/* START ARTICLE */
.articles>a:not(:last-of-type) {
    padding-bottom: 30px;
    margin-bottom: 30px;
    display: block;
    border-bottom: 1px solid rgba(164, 162, 135, .25);
}

.articles img {
    border-radius: 16px;
}

.articles .title {
    font-size: 19px;
}

.articles .desc {
    opacity: .5;
}

.article-preview {
    align-items: center;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    height: calc(60vh + 62px);
    justify-content: center;
    max-height: 500px;
    min-height: 315px;
    padding: 122px 0 100px;
    text-align: center;
    width: 100%;
}

.article-preview .catalog-title {
    color: #fff;
}

.arrow-left-article {
    border: 2px solid hsla(0, 0%, 100%, .1);
    border-radius: 30px;
    border-width: 1px;
    color: #fff;
    display: block;
    font-size: 11px;
    letter-spacing: .11em;
    line-height: .8;
    margin: 0 auto;
    padding: 12px 20px 12px 35px;
    position: relative;
    text-transform: uppercase;
    transition: border-color .3s ease;
    width: 100px;
    will-change: border-color;
    z-index: 200;
}

.arrow-left-article:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4LjkiIGhlaWdodD0iMTIuOSI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRkZGIiBzdHJva2Utd2lkdGg9IjEuMyIgZD0ibTIgLjcgNS42IDUuNUwyIDExLjYiLz48L3N2Zz4=);
    background-position: 50%;
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    display: inline-block;
    left: 16px;
    position: absolute;
    top: 0;
    transform: rotate(180deg);
    width: 10px;
}

.arrow-left-article:hover {
    background-color: transparent;
    border-color: hsla(0, 0%, 100%, .8);
    color: #fff;
}

.article-text {
    color: #3a3330;
    margin: -100px auto 0;
    width: 960px;
}

.article-content {
    background: #fff;
    border-radius: 12px;
    padding: 81px 165px 68px;
}


@media (max-width: 979px) {
    .article-text {
        width: 690px;
    }

    .article-content {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .article-text {
        margin: 0 auto;
        width: 100%;
    }

    .article-content {
        margin: 0 auto;
        padding: 35px 15px 15px;
    }

    .article-preview .catalog-title {
        font-size: 20px;
    }
}

/* END ARTICLE */



/* START INSTRUCTION */
section.instructions {
    position: relative;
    max-width: 840px;
    margin: 20px auto 0;
    padding-top: 0;
    padding-bottom: 80px;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
}

section.instructions input {
    background-color: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
    display: block;
    width: 100%;
    padding: 12px 50px 12px 30px;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px 12px 0 0 !important;
}

section.instructions input:focus {
    border: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid var(--bottom-liner-color);
}

section.instructions .icon-search {
    position: absolute;
    top: 6px;
    right: 4px;
    width: 40px;
    height: 33px;
    cursor: pointer;
    opacity: 1;
    transition: opacity .3s ease;
    will-change: opacity;
}

section.instructions .icon-search:hover {
    opacity: .8;
}

section.instructions .icon-search::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 19px;
    height: 19px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOC45IiBoZWlnaHQ9IjE4LjkiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZmlsbD0iI0ZGRiIgZD0iTTE3LjYgMTYuOGwtMSAuOEwxMiAxM2MtMSAxLTIuNSAxLjctNC4yIDEuNy00IDAtNy0zLjItNy03IDAtNCAzLTcgNy03IDMuOCAwIDcgMyA3IDcgMCAxLjctLjcgMy4yLTEuNyA0LjRsNC44IDV6bS0xMC0xNUM0LjYgMiAyIDQuNiAyIDhjMCAzIDIuNSA1LjUgNS43IDUuNSAzIDAgNS42LTIuNSA1LjYtNS43IDAtMy0yLjUtNS42LTUuNy01LjZ6Ii8+PC9zdmc+);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: translate(-50%, -50%);
    content: "";
}

section.instructions .wrapper-instructions {
    position: static;
    z-index: 14;
    max-width: 840px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0 0 12px 12px;
}


section.instructions .wrapper-instructions:not(:empty) {
    border: 1px solid rgba(255, 255, 255, .1);
    border-top: none;
}


section.instructions .scroll-instructions {
    max-height: none;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: visible;
    border-top: none;
}

section.instructions .scroll-instructions::-webkit-scrollbar {
    width: 5px;
    height: 50px;
}

section.instructions .scroll-instructions::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .1);
    border-radius: 3px;
}

section.instructions .scroll-instructions::-webkit-scrollbar-track {
    background: var(--basket-bg-color);
}

section.instructions .search-result-instruction:first-child {
    border-top: none;
}

section.instructions .search-result-instruction {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    font-size: 0;
    line-height: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    background-color: var(--body-bg-color);
}

section.instructions .search-result-instruction a:first-of-type {
    display: inline-block;
    width: 385px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-align: left;
}

section.instructions .search-result-instruction a:last-of-type {
    width: 112px;
    height: 35px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    white-space: nowrap;
    text-align: center;
    transition: .3s background-color, .3s border-color, .3s color;
    color: #fff;
    background-color: transparent;
    border: 2px solid var(--plus-bg-color);
    padding: 0 23px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

section.instructions .search-result-instruction a:last-of-type:hover {
    background-color: rgba(243, 112, 33, .3);
}

section.instructions .file-type,
section.instructions .file-size {
    display: inline-block;
    color: #9d9390;
    font-weight: 300;
    font-size: 14px;
}

section.instructions .no-result-instruction {
    padding: 20px;
}

/* END INSTRUCTION */


/* START FOOTER */
.hotline .hotline-text {
    padding: 41px 0 48px;
    position: relative;
}

.hotline .hotline-text::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--dividing-line-footer);
    content: "";
}

.hotline .hotline-text a {
    color: var(--hotline-number-color);
    font-size: 21px;
    line-height: 1.43;
    letter-spacing: .2px;
    display: block;
}

footer {
    background-color: var(--footer-bg-color);
    color: #CBC7C1;
}

footer .subscription {
    text-align: center;
    line-height: 1.25;
    letter-spacing: .4px;
    font-size: 16px;
    color: var(--footer-font-color);
}


footer .subscription form,
footer form.search {
    position: relative;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
}

footer .subscription input[type="email"],
footer form.search input {
    display: inline-block;
    margin: 0 !important;
    padding: 16px 40px 16px 23px;
    color: var(--input-font-color);
    font-size: 14px;
    background-color: var(--input-bg);
    border: none;
    outline: none;
    box-shadow: none;
}

footer form.search input {
    padding: 5px 40px 5px 23px;
}

footer form.search button {
    position: absolute;
    right: 13px;
    bottom: 8px;
    width: 15px;
    height: 15px;
    background-color: #fff;
    mask-image: url(/icon/header/search.svg);
    -webkit-mask-image: url(/icon/header/search.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    display: inline-block;
}

footer .subscription input[type="email"]::placeholder,
footer form.search input::placeholder {
    color: var(--footer-font-color);
    /* или любой другой цвет */
    opacity: .5;
    /* можно убрать полупрозрачность, если нужно */
}

footer .subscription form>span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--bottom-liner-color);
    transition: width .3s ease-out;
}

footer .subscription input[type="email"]:focus+span {
    width: 100%;
}

footer .rules-email {
    max-width: 400px;
    margin: 0 auto;
    font-size: 12px;
    margin-top: 20px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .3s ease, opacity .3s ease;
}

footer .form:focus-within .rules-email {
    max-height: 200px;
    /* достаточно для текста */
    opacity: 1;
}

footer .rules-email label {
    position: relative;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 8px;
    padding-left: 26px;
    text-align: left;
    cursor: pointer;
}

footer .rules-email label:last-child {
    margin-bottom: 0;
}

footer .rules-email input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

footer .rules-email label>span {
    position: relative;
}

footer .rules-email label>span::before {
    position: absolute;
    top: 1px;
    left: -26px;
    width: 16px;
    height: 16px;
    background-color: var(--input-bg);
    border: 1px solid rgba(164, 162, 135, .55);
    border-radius: 4px;
    content: "";
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

footer .rules-email label>span::after {
    position: absolute;
    top: 5px;
    left: -22px;
    width: 8px;
    height: 5px;
    border-left: 2px solid var(--body-bg-color);
    border-bottom: 2px solid var(--body-bg-color);
    content: "";
    opacity: 0;
    transform: rotate(-45deg) scale(.8);
    transition: opacity .2s ease, transform .2s ease;
}

footer .rules-email label:hover>span::before {
    border-color: var(--bottom-liner-color);
}

footer .rules-email input:focus-visible+span::before {
    border-color: var(--bottom-liner-color);
    box-shadow: 0 0 0 2px rgba(228, 148, 39, .2);
}

footer .rules-email input:checked+span {
    color: var(--footer-font-color);
}

footer .rules-email input:checked+span::before {
    background-color: var(--bottom-liner-color);
    border-color: var(--bottom-liner-color);
    box-shadow: 0 0 0 2px rgba(228, 148, 39, .12);
}

footer .rules-email input:checked+span::after {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
}

footer .rules-email.error {
    color: #ff6b6b;
}

footer .rules-email a {
    color: var(--bottom-liner-color);
    opacity: 1;
    font-size: inherit;
    padding: 0;
    display: inline;
}

footer .rules-email a:hover {
    color: var(--bottom-liner-color);
}

footer .subscription input[type="email"].error+span {
    width: 100%;
    background-color: red;
}

footer .subscription button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52px;
    height: 52px;
    background-image: url('/icon/arrow_right.svg');
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity .3s ease;
    will-change: opacity;
}

footer .subscription button:hover {
    opacity: .5;
}

footer .subscription button:disabled {
    cursor: default;
    opacity: .3;
}

footer .subscription .success-form {
    opacity: .5;
}

footer .footer-title {
    padding-bottom: 5px;
    font-weight: 400;
    font-size: 17px;
    line-height: 35px;
    letter-spacing: .5px;
    color: var(--footer-font-color);
}

/* по умолчанию на мобилке скрываем */
@media (max-width: 767px) {
    .footer-menu {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.6s ease;
    }

    .footer-title {
        cursor: pointer;
        position: relative;
        padding-right: 20px;
    }

    .footer-title::after {
        content: "▼";
        position: absolute;
        right: 0;
        font-weight: bold;
    }

    .footer-title.active::after {
        content: "▲";
    }

    .footer-menu {
        padding-left: 20px;
    }

    .footer-menu.open {
        opacity: 1;
        max-height: 500px;
    }

    .footer-section {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .footer-section:last-child {
        border-bottom: none;
    }
}



footer a {
    display: inline-block;
    padding: 6px 0;
    color: var(--footer-font-color);
    opacity: .5;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .4px;
    transition: opacity .3s ease;
}

footer a:hover {
    color: var(--footer-font-color);
    opacity: 1;
}

.share-icons a {
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--footer-font-color);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
}

.share-icons a:not(:last-child) {
    margin-right: 25px;
}

.share-icons .telegram {
    mask-image: url(/icon/footer/telegram.svg);
    -webkit-mask-image: url(/icon/footer/telegram.svg);
    height: 18px;
}

.share-icons .dzen {
    mask-image: url(/icon/footer/dzen.svg?1);
    -webkit-mask-image: url(/icon/footer/dzen.svg?1);
    height: 18px;
}

.share-icons .youtube {
    mask-image: url(/icon/footer/youtube.svg);
    -webkit-mask-image: url(/icon/footer/youtube.svg);
}

.share-icons .vk {
    mask-image: url(/icon/footer/vk.svg);
    -webkit-mask-image: url(/icon/footer/vk.svg);
}

.share-icons .instagram {
    mask-image: url(/icon/footer/instagram.svg);
    -webkit-mask-image: url(/icon/footer/instagram.svg);
}

footer .copyright,
footer .copyright a {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    padding: 0 15px;
}

footer .copyright .text {
    text-align: center;
    letter-spacing: .4px;
    opacity: .5;
    color: var(--footer-font-color);
}

/* END FOOTER */

.faq {
    --bs-accordion-bg: initial;
    --bs-accordion-border-color: #e5e7eb;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: #111827;
    --bs-accordion-btn-color: var(--main-font-color);
    --bs-accordion-btn-focus-box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
    background: transparent;
    color: #fff;
}

.faq .accordion-body {
    background: transparent;
    color: #fff;
}

.faq .accordion-item {
    border: none;
    box-shadow: none;
}

.faq .accordion-item {
    border: none;
    /* убираем стандартные границы */
    border-bottom: 1px solid var(--plus-bg-color);
    /* тонкая линия между пунктами */
    border-radius: 0;
}

.faq .accordion-item:last-child {
    border-bottom: none;
    /* у последнего пункта линии нет */
}


.faq .accordion-button:not(.collapsed) {
    border-bottom: 1px solid #ccc;
    /* сохраняем полоску даже когда открыт */
}

.faq .accordion-body ul {
    list-style-type: disc !important;
    padding-left: 1.5rem !important;
}

.faq .accordion-body li {
    list-style: disc !important;
    display: list-item !important;
}

.faq video {
    margin: 0 auto;
    display: block;
}

.suissnord-cyrillic {
    font-family: "SuissnordCyrillic";
    letter-spacing: 3px;
    word-spacing: 6px;
    text-transform: uppercase;
}

@font-face {
    font-family: "SuissnordCyrillic";
    src: url("/templates/inc/fonts/suissnordcyrillic.otf") format("truetype");
    font-style: normal;
    font-weight: normal;

}

@font-face {
    font-family: "WixMadeforDisplay";
    src: url("/templates/inc/fonts/WixMadeforDisplay-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "WixMadeforDisplay";
    src: url("/templates/inc/fonts/WixMadeforDisplay-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
