/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-70: calc(var(--space-60) + 10px);
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-25: 25px;

    --font-48: 48px;
    --font-40: 40px;
    --font-36: 36px;
    --font-30: 30px;
    --font-32: calc(var(--font-30) + 2px);
    --font-24: 24px;

    --container-padding: 40px;

    --row-gap: 5px;

    /** SPECIFIC **/
    --color-primary: #2f2f2f;
    --color-secondary: #04AA2F;
    --color-default: #333;
    --color-border-deafult: #ccc;

    --font-secondary: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 113px;
}

body {
    /*color: #000;*/
    color: var(--color-primary);
    font-family: "Poppins", sans-serif;
    /*background-color: #F5F5F5;*/
}

/**
 * BASIC
 */

a, input, select, textarea, option, button {
    outline: none !important;
}

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: inherit;
}

a:hover, a:focus {
    color: inherit;
}

/**
 * EXTRA
 */
/* Animations lib */
.animationDuration {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* Mourning class added to body */
.mourning {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


.grayscale {
    filter: grayscale(1);
}

.grayscale-fade {
    transition: filter 0.2s;
}

.grayscale-fade:hover,
.grayscale-fade:focus {
    filter: grayscale(0);
}

/**
 * PAGE
 */
@media screen and (min-width: 1281px) {

    #content {
        padding-top: 147px !important;
    }
}

#page,
#content {
    overflow: hidden;
}

.container .container {
    padding: 0;
}

.container {
    clear: both;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1720px;
    width: 100%;
}

.container-big {
    max-width: 1860px;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container-sm {
    max-width: 1440px;
}

.container--noClear {
    clear: none;
}

.container--noClear::before,
.container--noClear::after {
    display: none;
}

.page-title {
    font-size: var(--font-48);
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.2082em;
}

.page-teaser {

}

.page-heading {
    margin-bottom: var(--space-40);
}

.section-title {
    font-size: var(--font-36);
    font-weight: 800;
    flex-shrink: 0;
    line-height: 1.05em;
    padding-right: var(--space-40);
    text-align: left;
}

.slick-list {
    display: flex;
    width: 100%;
}

.slick-track {
    display: flex;
}

/**
 * ICONS
 */
.icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-mask.icon-mask {
    -webkit-mask-size: cover;
    -mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: currentColor;
}

.icon-facebook {
    -webkit-mask-image: url('../images/icons/social/facebook.svg');
    mask-image: url('../images/icons/social/facebook.svg');
}

.icon-instagram {
    -webkit-mask-image: url('../images/icons/social/instagram.svg');
    mask-image: url('../images/icons/social/instagram.svg');
}

.icon-linkedin {
    -webkit-mask-image: url('../images/icons/social/linkedin.svg');
    mask-image: url('../images/icons/social/linkedin.svg');
}

.icon-twitter,
.icon-x {
    -webkit-mask-image: url('../images/icons/social/twitter.svg');
    mask-image: url('../images/icons/social/twitter.svg');
}

.icon-youtube {
    -webkit-mask-image: url('../images/icons/social/youtube.svg');
    mask-image: url('../images/icons/social/youtube.svg');
}

.icon-pinterest {
    -webkit-mask-image: url('../images/icons/social/pinterest.svg');
    mask-image: url('../images/icons/social/pinterest.svg');
}

.icon-user {
    -webkit-mask-image: url('../images/icons/user.svg');
    mask-image: url('../images/icons/user.svg');
}

.icon-register {
    -webkit-mask-image: url('../images/icons/register.svg');
    mask-image: url('../images/icons/register.svg');
}

.icon-logout {
    -webkit-mask-image: url('../images/icons/logout.svg');
    mask-image: url('../images/icons/logout.svg');
}


/**
 * THEMES
 */


/**
 * THEMES
 */

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.active:focus,
.btn-primary:hover:focus,
.btn-primary:hover:active,
.btn-primary:focus:active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.btn-primary.active {
    background-color: #fff;
    color: var(--color-primary);
}

.btn-primary[disabled],
.btn-primary[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary.active:focus,
.btn-secondary:hover:focus,
.btn-secondary:hover:active,
.btn-secondary:focus:active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.btn-secondary.active {
    background-color: #fff;
    color: var(--color-secondary);
}

.btn-secondary[disabled],
.btn-secondary[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn-default,
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.btn-default.active:focus,
.btn-default:hover:focus,
.btn-default:hover:active,
.btn-default:focus:active {
    background-color: #fff;
    border-color: #fff;
    color: var(--color-primary);
}

.btn-default.active {
    background-color: #fff;
    color: var(--color-default);
}

.btn-default[disabled],
.btn-default[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn-white,
.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.btn-white.active:focus,
.btn-white:hover:focus,
.btn-white:hover:active,
.btn-white:focus:active {
    background-color: transparent;
    border-color: #fff;
    color: var(--color-primary);
}

.btn-white.active {
    background-color: #fff;
    color: var(--color-primary);
}

.btn-white[disabled],
.btn-white[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

.btn-transparent,
.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent:active,
.btn-transparent.active,
.btn-transparent.active:focus,
.btn-transparent:hover:focus,
.btn-transparent:hover:active,
.btn-transparent:focus:active {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--color-primary);
}

.btn-transparent.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.btn-transparent[disabled],
.btn-transparent[disabled]:hover {
    opacity: 0.2;
    cursor: not-allowed;
}

@media screen and (min-width: 1140px) {
    .btn-primary:not([disabled]):hover,
    .btn-primary:not([disabled]).active:hover {
        background-color: #fff;
        border-color: var(--color-secondary);
        color: var(--color-primary);
    }

    .btn-secondary:not([disabled]):hover,
    .btn-secondary:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-secondary);
    }

    .btn-default:not([disabled]):hover,
    .btn-default:not([disabled]).active:hover {
        background-color: var(--color-primary);
        color: #fff;
        border-color: var(--color-primary);
    }

    .btn-white:not([disabled]):hover,
    .btn-white:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-primary);
    }

    .btn-transparent:not([disabled]):hover,
    .btn-transparent:not([disabled]).active:hover {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        color: #fff;
    }
}

/**
 * BUTTONS
 */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    gap: 16px;
    transition: all 0.4s;
    font-size: 14px;
    border-width: 2px;
}

.btn .caption {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-lg {
    height: 46px;
    padding: 0 20px;
    font-size: 18px;
    letter-spacing: 0.05em;
    min-width: 180px;
}

.btn-circle {
    border-radius: 50%;
}

.btn-lg {
    min-height: 46px;
    border-radius: 10px;
    padding: 8px 24px;
    min-width: 196px;
    font-weight: 700;
}

.btn-info {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

.btn-info:hover {
    border-color: var(--color-secondary);
    background-color: var(--color-secondary);
}

.btn-link {
    color: #000;
}

.btn-sb {
    justify-content: space-between;
}

.icon svg *[stroke]:not([stroke="none"]) {
    stroke: currentColor;
}

.icon svg *[fill]:not([fill="none"]) {
    fill: currentColor;
}

/**
 * BOOTSTRAP
 */
.panel,
.panel-heading,
.modal-content,
.alert,
.popover {
    border-radius: 15px;
}

.panel {
    box-shadow: none;
}

.panel-default {
    border-color: #e5e5e5;
}

.row {
    margin-left: calc(-1 * var(--row-gap));
    margin-right: calc(-1 * var(--row-gap));
    display: flex;
    flex-wrap: wrap;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7,
.col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5,
.col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3,
.col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12,
.col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-left: var(--row-gap);
    padding-right: var(--row-gap);
}

.modal-footer[style="display: block;"] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.modal-footer:after, .modal-footer:before {
    content: none;
}

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 15px;
    line-height: 30px;
}

.text strong {
    font-weight: 800 !important;
}

.text a {
    color: var(--color-secondary);
    text-decoration: underline;
    transition: color 0.3s;
    font-weight: 600;
}

@media screen and (min-width: 1140px) {
    .text a:hover {
        color: var(--color-primary);
    }
}

.text h2 {
    font-size: 24px;
    color: var(--color-secondary);
    letter-spacing: 0.03em;
    font-weight: 800;
}

.text h3 {
    font-size: 18px;
}

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}

.text ul > li,
.text ol > li {
    left: 40px;
    position: relative;
    padding-right: 40px;
}

.text ul > li p,
.text ol > li p {
    display: inline;
}

.text ul > li::before {
    content: "•";
    position: relative;
    display: inline-block;
    width: 10px;
    left: -10px;
    margin-left: -10px;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 18px;
}

.text ol > li::marker {
    word-spacing: 3px;
}

/** Text table **/
.text table {
    margin: 30px 0;
}

.text table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.text table td {
    padding: 12px 12px;
    border: 1px solid #ddd;
}

.text iframe {
    max-width: 100%;
}

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .15);
}

/*.header-top-inner {*/
/*    width: 100%;*/
/*    display: flex;*/
/*    min-height: 54px;*/
/*    padding: 20px 0 0 0;*/
/*    transition: padding 0.4s;*/
/*    background-color: #fff;*/
/*    gap: calc(var(--space-60) + 10px);*/
/*}*/

.header-top-right {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.logo {
    max-width: 172px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo svg {
    width: 100%;
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    max-width: 100%;
}

.header-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background-color: var(--color-primary);
}

.header-top-row {
    padding: 20px 0;
    transition: .2s all;
}

.header-top-row .right-actions {
    margin-left: auto;
}

.header-top-row-inner {
    display: flex;
    align-items: center;
    gap: min(7.5%, 110px);
}

.header-bottom-row .search-form:only-child {
    margin-left: auto;
}

.header-top-btn.btn-info .caption {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    line-height: 17px;
    gap: 5px;
}

.header-top-btn.btn-info .icon {
    border: 2px solid var(--color-secondary);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    transition: background-color .2s;
}

.header-top-btn.btn-info .icon svg {
    display: block;
}

.header-top-btn.btn-info .icon {
    color: var(--color-secondary);
}

.header-top-btn.btn-info .caption .line-3 {
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 14px;
}

.header-top-btn.btn-info .caption .line-2 {
    font-size: calc(var(--font-24) - 2px);
    font-weight: bold;
    transition: .2s all;
}

@media screen and (min-width: 1140px) {
    .header-top-btn.btn-info:hover .icon {
        background-color: var(--color-secondary);
    }

    .header-top-btn.btn-info:hover .icon {
        color: #fff;
    }

    .header-top-btn.btn-info:hover .caption .line-2 {
        color: var(--color-secondary);
    }
}

/*.header-top-row::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 0px;*/
/*    top: -20px;*/
/*    background: #fff;*/
/*}*/

.header-top-row .right-actions {
    display: flex;
    align-items: center;
    gap: var(--space-50);
}

.header-top-btn.btn-info {
    min-width: unset;
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-top-btn.btn-info,
.header-top-btn.btn-info:focus {
    background-color: transparent;
    border-color: transparent;
    color: #fff;
}

#main-menu ul {
    font-size: 0;
}

#main-menu > ul {
    display: flex;
    gap: var(--space-40);
}

/*#main-menu-bottom ul > li > a {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    font-size: 14px;*/
/*}*/

#main-menu-bottom > ul > li > a {
    color: #fff;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}

#main-menu-bottom li,
#main-menu li {
    position: relative;
    display: inline-block;
    font-size: 15px;
    /*text-transform: uppercase;*/
    font-weight: 400;
}

#main-menu-bottom > ul > li {
    padding: 18px 0;
    transition: .2s all;
}

#main-menu li a:hover {
    color: var(--color-secondary);
}

#main-menu-bottom li > ul,
#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

#main-menu li > ul > li > ul {
    top: 0;
    left: 100%;
}

#main-menu li:hover > ul {
    display: block;
}

.main-menu-button {
    float: right;
    width: 40px;
    border: none;
    background: transparent;
}

.main-menu-button.animIcon--hamburger.active span {
    background-color: var(--color-secondary);
}

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    position: relative;
    width: 410px;
    max-width: 100%;
}

.mainsearch-search .icon svg * {
    stroke-width: 0.1;
}

.mainsearch-search {
    display: flex;
    align-items: stretch;
}

.mainsearch .form-element-container {
    flex-grow: 1;
}

.mainsearch input.form-control {
    display: block;
    height: 44px;
    border-radius: 10px;
    padding: 5px 20px;
    box-shadow: none;
    border: none;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 13px;
    font-family: var(--font-secondary);
}

.mainsearch input.form-control::placeholder {
    color: #fff;
    font-size: 13px;
    font-family: var(--font-secondary);
}

.mainsearch-submit {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    width: 46px;
    height: 46px;
    padding: 14px;
    border: none;
    background-color: #fff;
    color: var(--color-primary);
    margin-left: -10px;
    transition: .2s all;
}

.mainsearch-submit:hover {
    color: #fff;
    background-color: var(--color-secondary);
}

.mainsearch .alert-block {
    position: absolute;
    bottom: 0px;
    background-color: transparent;
    left: 0;
    right: -44px;
    pointer-events: none;
}

.form .alert-block .error {
    font-size: 11px;
}

.mainsearch .alert-block .error {
    padding: 0 20px;
}

.mainsearch .form-control-feedback {
    display: none;
}

.shop-store-list li a {
    transition: color 300ms;
}

.shop-store-list li a:hover {
    color: var(--color-secondary);
}


.form-input-microphone {
    font-size: 18px;
    color: #aeaeae;
    transition: color 0.3s;
    background-color: transparent;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -5px;
    display: none;
}

@media screen and (min-width: 1140px) {
    .form-input-microphone:hover {
        color: var(--color-secondary);
    }
}

/*
* USER NAV
*/

.header-top .user-nav {
    display: flex;
    align-items: stretch;
}

.header-top .user-nav-item {
    display: flex;
    align-items: stretch;
    position: relative;
}

/*.header-top .user-nav-item-inner .caption {*/
/*    display: none;*/
/*}*/

.header-top .user-nav-item-inner {
    display: flex;
    align-items: center;
    color: #fff;
    transition: all 0.4s;
    gap: 15px;
    font-size: 15px;
    line-height: 1.12em;
    text-align: right;
}

@media screen and (min-width: 1140px) {
    .header-top .user-nav-item-inner:hover {
        color: var(--color-secondary);
    }
}

.header-top .user-nav-item-inner .caption {
    color: #fff;
    order: -1;
}

.user-nav .top-box {
    top: calc(100% + 20px);
}

.header-top .user-nav-item + .user-nav-item {
    padding-left: 20px;
    margin-left: 20px;
}

.header-top .user-nav-item + .user-nav-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.6);
}

.header-top .user-nav-item .icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-top .btn-discountGroup {
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    font-weight: 700;
    min-width: 204px;
    font-size: 14px;
    justify-content: flex-start;
}

.header-top .top-links {
    display: flex;
    align-items: stretch;
}

.header-top .btn-discountGroup .icon {
    width: 20px;
}

.header-top .btn-discountGroup:hover .icon {
    color: #fff;
}

.header-top .btn-discountGroup:hover .icon svg * {
    fill: #fff;
}

.header-top .btn-discountGroup:hover {
    background-color: var(--color-secondary);
    color: #fff;
}

.header-top .btn-discountGroup .icon {
    color: var(--color-secondary);
}

.header-top .btn-discountGroup .icon svg * {
    fill: var(--color-secondary);
}


/**
 * FOOTER
 */
footer {
    background-color: #fff;
}

.footer-logo {
    width: 118px;
    flex-shrink: 0;
}

.footer-logo img {
    display: block;
    max-width: 100%;
}

.footerBoxes-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: var(--space-50);
}


.footerBox .box-right img {
    display: block;
    max-width: 100%;
}

.footerBox .box-right {
    flex-shrink: 0;
}

.footerBox .box-title {
    font-size: var(--font-32);
    font-weight: 700;
    line-height: var(--font-36);
    margin-bottom: var(--space-25);

}

.footerBox {
    background-color: rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    gap: calc(var(--space-60) * 2);
    padding: var(--space-40) var(--space-60);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    padding-bottom: calc(var(--space-60));
}

.footer-col {
    color: #fff;
    width: 18%;
    display: flex;
    flex-direction: column;
}

.footer-col.col-4 {
    width: 28%;
}

.footer-col.col-4 {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-60) - 3px);
    margin-top: 46px;
}

.footer-col.col-4 .footer-col-content {
    margin-top: 0;
    padding: calc(var(--space-25) + 10px) var(--space-40);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
}

.footer-col-4-heading {
    font-size: 18px;
    letter-spacing: 0.03em;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-col.col-4 .text {
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0.03em;
}

.footer-socials-wrapper {
    display: flex;
    gap: calc(var(--space-60) + 10px);
    align-items: center;
}

.footer-socials-title {
    font-size: 14px;
}

.footer-socials .social-list ul {
    display: flex;
    gap: 10px;
}

.footer-socials .social-list > ul > li a .caption {
    display: none;
}

.footer-socials .social-list > ul > li {
    padding: 0;
}

.footer-socials .social-icon {
    width: 43px;
    height: 43px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    transition: background-color .2s;
}

@media screen and (min-width: 1140px) {
    .footer-socials .social-list > ul > li a:hover .social-icon {
        background-color: var(--color-secondary);
    }

    .footer-socials .social-list > ul > li a:hover .social-icon img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(20%) hue-rotate(339deg) brightness(105%) contrast(104%);
    }
}

.footer-lang {
    font-size: var(--font-32);
    max-width: 170px;
}

.footer-col-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.footer-col .footer-col-content {
    padding-top: calc(var(--space-25) + 5px);
    flex-grow: 1;
}

.footer-col-content ul li a {
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
    letter-spacing: 0.05em;
    line-height: 2.1428em;
}

@media screen and (min-width: 1140px) {
    .footer-col-content ul li a:hover {
        color: var(--color-secondary);
    }
}

/* FOOTER BAR */
.footer-bar {
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 13px;
    color: #fff;
    background-color: rgba(47, 47, 47, 0.9);
}

.footer-bar-content {
    padding: 15px 0;
}

.footer-bar-content::after {
    content: "";
    display: table;
    clear: both;
}

.footer-bar-content > * {
    float: left;
}

.footer-bar-content > *:not(:last-child) {
    margin-right: 30px;
}

.footer-bar-links {
    margin-left: -8px;
    font-size: 0;
    text-transform: uppercase;
}

.footer-bar-links > li {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 8px;
    font-size: 14px;
    line-height: 24px;
}

.footer-bar-links a {
    color: inherit;
}

.copyright-undicom {
    float: right;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}

.copyright-undicom svg {
    max-width: 15px;
    fill: currentColor;
}

/**
 * FORM
 */
form.form {
    /* padding: 15px 0; */
}

.form-element-name {
    font-size: 16px;
    font-weight: 400 !important;
    /*text-transform: uppercase;*/
}

/* INPUTY */
.form-control,
.form .form-control {
    box-shadow: none;
    height: 46px;
    border-radius: 10px;
}

@media screen and (min-width: 1140px) {
    .form-control:hover,
    .form .form-control:hover {
        border-color: var(--color-secondary);
    }
}

.form-control:focus,
.form .form-control:focus {
    border-color: var(--color-secondary);
}

.form-group-lg select[multiple].form-control, .form-group-lg textarea.form-control {
    height: 46px;
}

/* TEXTAREA */
.form textarea.form-control:not([rows]) {
    /* height: 130px; */
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    /* font-size: 12px; */
}

.form .consent-row .error {
    /* font-size: 12px; */
    /* letter-spacing: 0; */
}

/* CAPTCHA */
.form .captcha-image-wrapper,
.form .form-group-sm .captcha-image-wrapper,
.form .form-group-lg .captcha-image-wrapper {
    border-radius: 6px;
    box-shadow: none;
}

/* KOLOR GWIAZDKI WYMAGANEGO POLA */
.form .form-required-mark {
    /* color: #a94442; */
}

.form-element-select .form-control-feedback,
.form-element-country .glyphicon {
    display: none;
}

.form button.captcha-refresh {
    right: var(--row-gap);
    color: var(--color-secondary);
    border-radius: 0 6px 6px 0;
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

.form button.captcha-refresh .fa.fa-spin {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused
}

@media screen and (min-width: 1140px) {
    .form button.captcha-refresh:hover {
        border-color: var(--color-secondary);
        color: var(--color-secondary);
    }

    .form button.captcha-refresh:hover .fa.fa-spin {
        -webkit-animation-play-state: running;
        -moz-animation-play-state: running;
        -o-animation-play-state: running;
        animation-play-state: running
    }
}

.form-control-feedback {
    top: 50%;
    right: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

/*---- SELECT 2 -----*/

.select2-dropdown {
    z-index: 100;
    border-radius: 0;
}

/*.select2-container--default .select2-selection--multiple,*/
/*.select2-container .select2-selection--single {*/
/*    height: 48px;*/
/*    border-radius: 10px;*/
/*    text-align: left;*/
/*    padding: 0;*/
/*    background-color: #fff;*/
/*}*/

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 16px;
    font-size: 14px;
    padding-right: 44px;
    color: #000;
    border-width: 2px;
}

.select2-container--default .select2-selection--multiple,
.select2-container .select2-selection--single {
    height: 48px;
    border-radius: 10px;
    text-align: left;
    padding: 0;
    border-color: rgba(0, 0, 0, 0.1) !important;
    border-width: 2px;
    background-color: #fff;
}

@media screen and (min-width: 1140px) {
    .select2-container--default .select2-selection--multiple:hover,
    .select2-container .select2-selection--single:hover {
        border-color: var(--color-secondary) !important;
    }
}

.select2-container--default .select2-selection--multiple:focus,
.select2-container .select2-selection--single:focus {
    border-color: var(--color-secondary) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search {
    line-height: 44px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    line-height: 24px;
    display: inline-block;
    float: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 8px;
}

.has-feedback .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 68px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: auto;
    transition: all 0.4s;
    right: 16px;
    color: #000;
    text-align: center;
    font-size: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 16px;
    vertical-align: middle;
}

.select2-container--default.select2-container--open .select2-selection__arrow {
    -webkit-transform: translateY(-50%) scaleY(-1);
    -moz-transform: translateY(-50%) scaleY(-1);
    -ms-transform: translateY(-50%) scaleY(-1);
    -o-transform: translateY(-50%) scaleY(-1);
    transform: translateY(-50%) scaleY(-1);
}

.select2-container--default .select2-selection--single .select2-selection__arrow > b {
    display: none;
}

.select2-results__option[aria-selected] {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 300;
    padding: 6px 22px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary);
}

.select2-container--open .select2-dropdown--below {
    border-color: rgba(0, 0, 0, 0.1);
}

@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .form-element-multiselectCheckbox .select2-results__option:not([role="group"]):not(.select2-results__message)::before {
        -webkit-background-size: 200px 20px !important;
        background-size: 200px 20px !important;
    }
}


.select2-search__field {
    color: #999 !important;
    font-family: 'Poppins', sans-serif;
}

.select2-search__field::placeholder {
    color: #999 !important;
}

.form-element-multiselectCheckbox .select2-container--default .select2-selection--multiple:after {
    font-size: 16px;
    color: #000;
    right: 36px;
}

/**
 * MAP POINTS
 */

.map-point .custom-map-wrapper {
    position: relative;
}

.map-point .custom-map-wrapper .point {
    position: absolute;
    width: 28px;
    height: 40px;
    background: transparent url('../images/marker.png') no-repeat scroll center center;
    cursor: pointer;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.map-point #marker-cloud-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10%;
    height: 10%;
    background: red;
}

.map-point #marker-cloud-wrapper .popover {
    top: 0 !important;
    left: 0 !important;
    display: block;
    margin: 0;
    width: 300px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}

.map-point #marker-cloud-wrapper .popover .arrow {
    display: none !important;
}

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: 10px 0;
    line-height: 30px;
    margin-bottom: calc(var(--space-25) + 5px);
    /*margin-top: calc(var(--space-25) + 10px);*/
}

.breadcrumb {
    padding: 0;
    margin: 0;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
}

.breadcrumb > li {
    position: relative;
    display: inline;
    padding: 10px 0;
}

.breadcrumb > li > a {
    font-size: 12px;
    transition: color 0.3s;
}

.breadcrumb > li > a:not([href]),
.breadcrumb > li > a:not(:hover) {
    color: inherit;
}

.breadcrumb > li + li:before {
    content: '>';
    font-size: 12px;
    padding: 0 15px;
    color: inherit;
}

.breadcrumb > li > a.last {
    color: var(--color-primary);
}

.breadcrumb li a {
    transition: color 0.3s;
}

.breadcrumb li a:hover {
    color: var(--color-secondary) !important;
}

.breadcrumb > li > ul {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 250px;
    top: 100%;
    left: 36px;
    transition: all 0.2s;
    z-index: 3;

    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 640px) {
    .breadcrumb > li:hover > ul {
        opacity: 1;
        pointer-events: initial;
    }
}

.breadcrumb > li > ul > li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.breadcrumb > li > ul > li > a {
    display: block;
    padding: 5px 15px;
    font-size: 14px;
    color: inherit;
}

@media screen and (min-width: 1140px) {
    .breadcrumb > li > ul > li > a:hover,
    .breadcrumb > li > ul > li > a:focus {
        color: var(--color-primary);
    }
}

/**
 * PAGINATION
 */

.pagination-wrapper ul li a {
    color: #000;
    transition: color 0.4s;
    font-size: 14px;
}

.pagination-wrapper ul li.next a,
.pagination-wrapper ul li.prev a {
    border-color: var(--color-primary);
    background-color: #fff;
    transition: all 0.4s;
}

.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    width: 46px;
    height: 46px;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-wrapper ul li.next a .icon,
.pagination-wrapper ul li.prev a .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.icon svg > g {
    opacity: 1;
}

.pagination-wrapper ul li.active a {
    color: var(--color-secondary);
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li a:hover {
        color: var(--color-secondary);
    }

    .pagination-wrapper ul li.next a:hover,
    .pagination-wrapper ul li.prev a:hover {
        background-color: var(--color-primary);
        color: #fff;
    }
}

/**
 * ANIMATABLE ICON
 */

.loader-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-spin {
    margin: 0 10px;
    font-size: 3px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    animation: mulShdSpin 1.3s infinite linear;
    transform: translateZ(0);
}

.btn .loader-spin {
    margin: 0 14px;
}

@keyframes mulShdSpin {
    0%,
    100% {
        box-shadow: 0 -3em 0 0.2em,
        2em -2em 0 0em, 3em 0 0 -1em,
        2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 0;
    }
    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em,
        3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 -1em;
    }
    25% {
        box-shadow: 0 -3em 0 -0.5em,
        2em -2em 0 0, 3em 0 0 0.2em,
        2em 2em 0 0, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 -1em;
    }
    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em,
        -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em,
        -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0,
        -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }
    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em,
        3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }
    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}


.animIcon {
    position: relative;
    display: inline-block;
    width: 32px;
    padding: 0 !important;
}

.animIcon::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.animIcon span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: gray;
    transition: all .4s ease;
}

/* Close */
.animIcon.animIcon--close span {
    top: 50%;
    margin-top: -1px;
    transform-origin: center;
}

.animIcon.animIcon--close span:nth-child(1) {
    transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
}

.animIcon.animIcon--close span:nth-child(2) {
    transform: rotateZ(-45deg);
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
}

/* Hamburger -> Close */
.animIcon.animIcon--hamburger span {
    top: 0;
    left: 0;
    transform-origin: left center;
}

.animIcon.animIcon--hamburger span:nth-child(1) {
    margin-top: 20%;
}

.animIcon.animIcon--hamburger span:nth-child(2) {
    margin-top: 50%;
}

.animIcon.animIcon--hamburger span:nth-child(3) {
    margin-top: 80%;
}

.animIcon.animIcon--hamburger.active span:nth-child(1) {
    margin-top: 15%;
    margin-left: 15%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.animIcon.animIcon--hamburger.active span:nth-child(2) {
    opacity: 0;
    margin-top: 70%;
}

.animIcon.animIcon--hamburger.active span:nth-child(3) {
    margin-top: 85%;
    margin-left: 15%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

/**
 * LOGOTYPES SLIDER
 */
.logotypes {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    height: 156px;
    padding: 28px 0;
}

.logotypes .logotypes-title {
    float: left;
    padding-right: 30px;
    font-size: 22px;
    line-height: 100px;
    vertical-align: middle;
}

.logotypes-slider-container {
    height: 100px;
}

.logotype-slider {
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.slick-initialized .logotype {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
}

.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
}


/**
 * SOCIALS
 */
.social-list > ul {
    margin: -5px;
    font-size: 0;
}

.social-list > ul > li a .caption {
    text-transform: uppercase;
    font-size: 14px;
}

.social-list > ul > li a {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-list > ul > li {
    /*display: inline-block;*/
    /*vertical-align: middle;*/
    padding: 5px;
    text-align: center;
    font-size: 1rem;

}

.social-list > ul > li a:hover .social-icon {
    color: var(--color-secondary);
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-icon svg {
    fill: currentColor;
    max-width: 28px;
}

.social-icon img {
    display: block;
}

.social-icon .fa {
    font-size: 20px;
}

.text-top {
    line-height: 30px;
}

.text-top a:hover {
    color: var(--color-secondary);
}

.text-top a {
    font-weight: 700;
}

.text-top {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-50);
}

/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    margin: 0 15px;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
}

.langs-menu ul {
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s;
}

.langs-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}

.langs-menu a {
    color: inherit;
    text-decoration: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.langs-menu-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    margin-right: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 5px 12px;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    text-transform: uppercase;
}

.lang .langs-menu-long {
    display: none;
}

.lang-button {
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    font-size: 18px;
    line-height: 12px;
    transition-duration: 0.3s;
    transition-property: transform, -webkit-transform, -ms-transform;
}

.langs-menu-icon img {
    max-width: 100%;
}

@media screen and (min-width: 1140px) {
    a.lang:hover,
    a.lang:focus {
        color: #fff;
        background-color: #f0f;
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
    }

    .langs-menu:focus-within .lang-button .arrow,
    .langs-menu:hover .lang-button .arrow,
    .langs-menu:focus .lang-button .arrow {
        transform: rotateZ(180deg);
        -webkit-transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
    }
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.langs-menu--list .lang-button,
.langs-menu--list .langs-menu-short {
    display: none;
}

.langs-menu.langs-menu--list ul {
    position: static;
    opacity: 1;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}

.langs-menu.langs-menu--list li {
    margin: 4px 10px;
    border: none;
}

.langs-menu.langs-menu--list a {
    height: auto;
    padding: 5px;
    border: none;
}

.langs-menu--list .lang {
    background: none;
}

.langs-menu--list .langs-menu-icon {
    margin: 0;
}

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
}

.article-content::after {
    content: "";
    display: table;
    clear: both;
}

.article-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 50%;
    margin-right: 50px;
    margin-bottom: 20px;
}

.article-image img {
    max-width: 100%;
}

.article-subtitle {
    padding-bottom: 30px;
}

.article-date {
    font-weight: bold;
}

.article-text {
    margin-bottom: 30px;
}


/**
 * PAGINATION
 */
/*.pagination-wrapper ul li.active a {*/
/*color: #e10024;*/
/*}*/

/*@media screen and (min-width: 1140px) {*/
/*.pagination-wrapper ul li a:hover {*/
/*color: #e10024;*/
/*}*/
/*}*/


/**
 * GALLERY
 */

.gallery {
}

.gallery-list {
    font-size: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-list-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /*vertical-align: top;*/
    /*width: 25%;*/
    /*padding: 5px;*/
}

.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
}

.gallery-picture > img {
    display: block;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s;
}

@media screen and (min-width: 1140px) {
    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }
}

@media screen and (min-width: 1140px) {
    .page-list-aside .ui-widget.ui-widget-content {
        -webkit-transform: scaleY(33.3333%);
        -moz-transform: scaleY(33.3333%);
        -ms-transform: scaleY(33.3333%);
        -o-transform: scaleY(33.3333%);
        transform: scaleY(33.3333%);
    }

    .page-list-aside .ui-widget.ui-widget-content:hover,
    .page-list-aside .ui-widget.ui-widget-content:focus,
    .page-list-aside .ui-widget.ui-widget-content:focus-within {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .ui-slider .ui-slider-handle {
        opacity: 0;
        transition: opacity 0.2s;
    }

    .ui-widget.ui-widget-content:hover .ui-slider-handle,
    .ui-widget.ui-widget-content:focus .ui-slider-handle,
    .ui-widget.ui-widget-content:focus-within .ui-slider-handle {
        opacity: 1;
    }
}

.ui-slider .ui-slider-range {
    border-radius: 0;
    background-color: var(--color-primary);
}

.ui-slider .ui-slider-handle {
    border-radius: 0;
    border: none;
    height: 13px;
    width: 13px;
    background-color: var(--color-primary);
}

.ui-slider-horizontal .ui-slider-handle {
    top: -2px;
    left: -7px;
}

.form-range .row + .row {
    margin-top: 15px;
}

.valueFrom .input-label,
.valueFrom .price-suffix,
.valueTo .input-label,
.valueTo .price-suffix {
    display: none;
}

.valueFrom .from,
.valueTo .to {
    height: 36px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
}

.valueTo:before {
    content: '-';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 33px;
    line-height: 36px;
}

.form-range {
    background-color: transparent;
    border: none;
}

.ui-widget.ui-widget-content {
    border-radius: 0;
}

.form-range {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-range .range-row {
    width: 100%;
}

.form-range .col {
    width: 45%;
    margin-top: 10px;
}

.heading-news {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-60);
    margin-bottom: var(--space-60);
}

.news-category-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-btn {
    color: var(--color-primary);
    font-size: 14px;
    text-transform: uppercase;
    border: 2px solid transparent;
}

@media screen and (min-width: 1140px) {
    .category-btn:hover {
        background-color: var(--color-primary);
        color: #fff;
        border-color: var(--color-primary) !important;
    }
}

.news-category-list li.active .category-btn {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary) !important;
}

@media screen and (min-width: 1140px) {
    .news-category-list li.active .category-btn:hover {
        background-color: #fff;
        color: var(--color-primary);
        border-color: var(--color-secondary) !important;
    }
}

.news-item-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(var(--space-50));
    row-gap: var(--space-60);
    margin-bottom: var(--space-50);
}

.news-item-list + .pagination-wrapper {
    padding-top: 0;
}

.news-item .cat-label {
    color: #fff;
}

.news-item .labels .cat-label {
    padding: 3px 10px 3px 5px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    overflow: hidden;
    border-radius: var(--radius-deafult);
    font-size: 12px;
    text-transform: uppercase;
}

.news-item {
    display: flex;
    flex-direction: column;
}

.news-item .item-img img {
    transition: all 0.4s;
    max-width: 100%;
    object-fit: cover;
}

.news-item .item-img {
    display: block;
}

.news-item .news-item-inner {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    background-color: #fff;
}

.news-item .item-content time {
    font-size: 12px;
}

.news-item .item-content .item-name {
    font-size: 18px;
    font-weight: 400;
    display: block;
    text-transform: uppercase;
    min-height: 54px;
}

.news-item .item-content .item-teaser {
    margin-top: 15px;
    display: block;
}

.news-item .item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: calc(var(--space-25) + 5px);
}

.category-lang {
    text-transform: uppercase;
}

.news-page-teaser h2 {
    text-transform: uppercase;
    font-size: 18px;
}

.newsItem-main .item-tags .tag,
.news-item .item-tags .tag {
    padding: 3px 10px 3px 5px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    overflow: hidden;
    border-radius: var(--radius-deafult);
    font-size: 12px;
    text-transform: uppercase;
}

.newsItem-main .item-tags,
.news-item .item-tags {
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: auto;
    padding-top: 20px;
}

.news-main-items {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--space-50);
}

.news-main-items .item-big {
    grid-row: span 2;
    grid-column: span 2;
}

.news-main-items .newsItem-main {

}

.news-item .item-img,
.news-main-items .newsItem-main .item-image {
    overflow: hidden;
    display: block;
}

@media screen and (min-width: 1140px) {
    .news-item:hover .item-img img,
    .news-main-items .newsItem-main:hover .item-image img {
        transform: scale(1.1);
    }
}

.news-main-items .newsItem-main .item-image img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.news-main-items {
    margin-top: var(--space-70);
}

.news-main-items .newsItem-main.item-med {
    grid-row: span 2;
}

.news-main-items .newsItem-main.item-med .item-inner .item-image {
    margin-bottom: var(--space-40);
}

.news-main-items .newsItem-main .item-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.news-main-items .newsItem-main.item-big .item-inner:before {
    position: absolute;
    z-index: 1;
    content: '';
    inset: 70% 0 0 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.news-main-items .newsItem-main.item-big .item-inner .item-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    color: #fff;
    padding: var(--space-40);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.news-main-items .newsItem-main .date-wrapper .icon {
    flex-shrink: 0;
    display: none;
}

.news-main-items .newsItem-main .item-tags {
    padding-top: 0;
}

.news-main-items .newsItem-main.item-med .date-wrapper {
    margin-bottom: 15px;
    display: block;
}

.news-main-items .newsItem-main.item-big .top-row {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-bottom: calc(var(--space-25) - 10px);
}

.news-main-items .newsItem-main.item-big .item-name {
    font-weight: 700;
    font-size: var(--font-32);
    line-height: var(--font-40);

}

/*.news-main-items .newsItem-main.item-med .item-content {*/
/*    padding: 20px calc(var(--space-25) + 7px);*/
/*}*/

.news-main-items .newsItem-main.item-med .item-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    color: #fff;
}

.news-main-items .newsItem-main.item-med .item-name {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 28px;
}

.item-teaser-more:hover {
    color: var(--color-secondary);
}

.item-teaser-more {
    font-weight: 700;
    transition: all 0.4s;
}

.news-item .news-item-inner:hover {
    border-color: var(--color-secondary);
}

.text .top-row ul > li::before {
    display: none !important;
}

.top-row .news-category-list li {
    pointer-events: none;
}

.top-row time {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-row time .icon {
    flex-shrink: 0;
    color: var(--color-secondary);
    margin-top: -2px;
}

.top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.text .page-title {
    font-weight: 700;
    font-size: var(--font-32);
    text-align: left;
    line-height: 34px;
    margin-top: 20px;
}

.page-aside-wrapper {
    display: flex;
    gap: calc(var(--space-40) * 2);
}

.widepage-aside {
    width: 336px;
    flex-shrink: 0;
    margin-top: var(--space-40);
}

.widepage-aside .categories-wrapper {
    background-color: #ffff;
}

.widepage-aside .categories-wrapper .mainCategory {
    padding: 12px calc(var(--space-25) + 10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: var(--space-50);
}

.widepage-aside .categories-wrapper .mainCategory .name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
}

.widepage-aside .categories-wrapper .mainCategory img {
    display: block;
    max-width: 100%;
    width: 85px;
}

.widepage-aside .categories-wrapper ul li > span a .image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.widepage-aside .categories-wrapper ul li > span a img {
    display: block;
    max-width: 100%;
}

.widepage-aside .categories-wrapper ul li > span a {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 5px 0;
}

.widepage-aside .categories-wrapper ul li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.widepage-aside .categories-wrapper ul li.slided,
.widepage-aside .categories-wrapper > ul > li:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.widepage-aside .categories-wrapper ul li > span {
    padding: 0 10px 0px var(--space-40);
    display: flex;
    align-items: center;
    transition: all 0.4s;
    justify-content: space-between;
    border-radius: 15px;
}

.widepage-aside .categories-wrapper ul li.slided > span .list-toggle {
    transform: rotate(90deg);
}

.widepage-aside .categories-wrapper ul li .list-toggle {
    cursor: pointer;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s;

}

.widepage-aside .categories-wrapper ul > li:hover > span {
    background-color: var(--color-default);
    color: #fff;
}

.widepage-aside .aside-link:before {
    position: absolute;
    z-index: 1;
    content: '';
    inset: 70% 0 0 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);

}

.widepage-aside .aside-link .caption {
    z-index: 2;
    font-size: var(--font-30);
    line-height: var(--space-40);
    font-weight: 700;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--space-25);
    transition: all 0.4s;

}

.widepage-aside .aside-link img {
    display: block;
    max-width: 100%;
    transition: all 0.4s;
}

.widepage-aside .aside-link:hover .caption {
    color: var(--color-secondary);
}

.widepage-aside .aside-link:hover img {
    transform: scale(1.1);
}

.widepage-aside .aside-link {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: var(--space-50);
    overflow: hidden;
}

.widepage-aside .filters-wrapper .section-img img {
    display: block;
    max-width: 100%;
}

.widepage-aside .filters-wrapper .section-img {
    text-align: left;
    justify-content: flex-start;
    /*padding: 12px calc(var(--space-25) + 10px);*/
    /*border-bottom: 1px solid rgba(0, 0, 0, 0.1);*/
    margin-bottom: var(--space-25);
}

.filters-apply .btn .icon {
    color: var(--color-secondary);
}

.filters-apply {
    display: flex;
    justify-content: center;
    align-content: center;
}

.filters-apply .btn {
    max-width: 156px;
    margin: 0 auto;
}

.widepage-aside .filters-wrapper .select2-container--default .select2-selection--multiple,
.widepage-aside .filters-wrapper .select2-container .select2-selection--single {
    border-radius: 30px;
}

.widepage-aside .filters-wrapper {
    margin-bottom: var(--space-50);
    background-color: #fff;
    /*border: 1px solid rgba(0, 0, 0, 0.1);*/
    /*border-radius: var(--radius-default);*/
}

.sort-row .form-element-select-container {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.sort-row .form-element-select {
    width: 260px;
}

.sort-row {
    display: flex;
    justify-content: space-between;
    gap: var(--space-25);
    margin-top: var(--space-50);
}

.shop-product-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.shop-product-list .alert {
    margin: 8px;
    margin-top: 20px;
}

.shop-product-box {
    display: flex !important;
    width: 25%;
}
.shop-product-list{
    margin-left: -21px;
    margin-right: -21px;
}
.product-view .shop-product-box {
    width: 33.33%;
    display: flex !important;
    padding: var(--space-25) 21px;
}

.discountGroup-view .shop-product-box {
    width: 25%;
}

.shop-product-box .product-container .shop-store-btn .icon {
    width: 100%;
}

.sort-row + .alert {
    margin-top: 20px;
}

.shop-product-box-horizontal .product-container .shop-store-btn.active svg,
.shop-product-box .product-container .shop-store-btn.active svg {
    fill: var(--color-primary);
}

.shop-product-box-horizontal .product-container .shop-store-btn.active:hover svg,
.shop-product-box .product-container .shop-store-btn.active:hover svg {
    fill: var(--color-secondary);
}

.shop-product-box-horizontal .product-container .shop-store-btn:hover,
.shop-product-box .product-container .shop-store-btn:hover {
    color: var(--color-secondary);
}

.shop-product-box-horizontal .product-container .shop-store-btn,
.shop-product-box .product-container .shop-store-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    color: var(--color-primary);
    z-index: 1;
    background-color: transparent;
    padding: 0;
    width: 27px;
}

.shop-product-box .product-container .shop-store-btn svg {
    width: 100%;
}

.shop-product-box .product-container .shop-store-btn svg path {
    transition: fill 0.3s;
}

/*.shop-product-box .product-container .shop-store-btn:hover svg path {*/
/*    fill: var(--color-secondary);*/
/*}*/

.shop-product-box .product-container .shop-store-btn .caption {
    display: none;
}

.shop-product-box .product-container .product-labels {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 1;
}

.shop-product-box .product-container .product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-product-box .shop-product-accessory-history-price-before-discount,
.shop-product-box .shop-product-history-price-before-discount {
    margin-bottom: 0;
}


.shop-product-box .product-container .product-image {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
    min-height: 200px;
    aspect-ratio: 380 / 240;
    max-width: 100%;
    position: relative;
}

.shop-product-box .product-container .product-image-inner {
    height: 100%;
    /*max-width: 320px;*/
    margin: 0 auto;
    width: 100%;
}

.product-image-main {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.product-image-hover {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
    background-color: #fff;
}

@media screen and (min-width: 1140px) {
    .shop-product-box .product-container:hover .product-image-hover {
        opacity: 1;
    }
}


.shop-product-box .product-container .product-content {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shop-product-box .product-container .product-title:hover,
.shop-product-box-horizontal .product-container .product-title:hover {
    color: var(--color-secondary) !important;
}


.shop-product-box .product-container .product-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3333em;
    text-align: left;
    color: var(--color-primary);
    transition: all .2s ease-in-out;
}

.shop-product-box .product-container .product-materials .product-materials-item {
    font-size: 14px;
}

.shop-product-box .product-container .product-materials {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;

}

.shop-product-box-horizontal .product-price .price:not(.price-old):not(.price-new),
.shop-product-box .product-price .price:not(.price-old):not(.price-new) {
    margin-bottom: 20px;
    color: var(--color-primary);
    font-weight: 800;
    font-size: var(--font-24);
    line-height: 1;
}

.product-content-top {
    flex: 1;
    padding: 13px 0;
}

.shop-product-box .product-container .product-content-top {
    min-height: 55px;
}

.shop-product-box .product-container .product-price {
    font-weight: 700;
    font-size: 20px;
    flex-grow: 1;
    /*margin: calc(var(--space-25) - 2px) 0;*/
    /*margin-top: calc(var(--space-25) - 5px);*/
}

/*.shop-product-box .product-container .product-bottom {*/
/*    border-top: 1px solid rgba(0, 0, 0, 0.1);*/
/*    padding-top: var(--space-25);*/
/*}*/

.product-box-content{
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;

}
.shop-product-box .product-container {
    overflow: hidden;

    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    /*padding: 20px;*/
    /*padding-top: calc(20px + var(--space-60));*/
    /*padding: 18px calc(var(--space-25) + 10px);*/
    position: relative;
    transition: all .2s linear;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}
.product-content{
    flex-grow: 1;
}
.shop-product-box .product-container .product-content,
.shop-product-box .product-container .product-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.shop-product-box .product-container .product-bottom {
    padding-bottom: 10px;
    padding-top: var(--space-40);
}
@media screen and (min-width: 1140px) {

    .submenu .shop-product-box:not(.product-small) .product-container:hover {
        transform: scale(1);
        box-shadow: none;
    }

    section.search .shop-product-box:not(.product-small) .product-container:hover {
        transform: scale(1.09);
    }

    .shop-product-box:not(.product-small) .product-container:hover {
        z-index: 2;
        transform: scale(1.09);
        box-shadow: 9.5px 16.45px 32.5px 0 rgba(0, 0, 0, 0.15);
    }

    /*.shop-product-box .product-container:hover .product-title {*/
    /*    color: var(--color-secondary);*/
    /*}*/
}


.item-rating-star .fa-star-half-o,
.item-rating-star .fa-star {
    /*color: var(--color-secondary);*/
    color: #FBBC04;
}

.item-rating-star.star-o .fa-star {
    color: rgba(0, 0, 0, 0.1) !important;
}

.item-rating-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-content-top .item-rating-container {
    margin-bottom: var(--space-25);
}

.mainpage #content section:first-of-type {
    margin-top: calc(var(--space-25) - 5px);
}

section.slider {
    margin-top: calc(var(--space-25) - 5px);
    margin-bottom: var(--space-60);
}

.slider .slider-inner {
    display: flex;
    gap: 16px;
    flex-direction: row-reverse;
}

.slider .slider-inner .slides-list-wrapper .slider-arrows {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.slider .slider-inner .slides-list-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
    display: flex;
}


.slider .slider-inner.hasBanners .slides-list-wrapper {
    width: calc(100% - (42.5% + 16px));
}

.slider .slider-inner .slides-list .slick-list {
    width: 100% !important;
    overflow: visible !important;
}

.slider .slider-inner .slides-list {
    width: 100%;
    display: flex;
}

.slider .slider-inner .slide-item {
    width: 100%;
    flex-shrink: 0;
    display: flex;
}

.slider .bananer-item .bananer-item-inner .caption-wrapper,
.slider .slider-inner .slide-item-inner .caption-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    padding: var(--space-40) var(--space-50);
    z-index: 2;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-40);
}

.slider .bananer-item .bananer-item-inner .caption,
.slider .slider-inner .slide-item-inner .caption {
    font-size: var(--font-36);
    letter-spacing: .03em;
    font-weight: 300;
}

.slider .bananer-item .bananer-item-inner,
.slider .slider-inner .slide-item-inner {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
}

.slider .bananer-item .bananer-item-inner {
    overflow: hidden;
    position: relative;
}

.slider .bananer-item .bananer-item-inner picture,
.slider .slider-inner .slide-item-inner picture {
    width: 100%;
}

.slider .bananer-item .bananer-item-inner img,
.slider .slider-inner .slide-item-inner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .bananer-item .bananer-item-inner img {
    transition: .2s all;
}

@media screen and (min-width: 1140px) {
    .slider .bananer-item .bananer-item-inner:hover img {
        transform: scale(1.1);
    }
}

.slider .slider-bananers {
    width: 42.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

section.discountGroup {
    margin: var(--space-60) 0;
}

.discountGroup-bg {
    background-color: #E2E2E2;
    padding: calc(var(--space-60) + 10px) 0 calc(var(--space-60) * 2);
}

.section.discountGroup:has(.product-list-horizontal) {
    background-color: rgba(0, 0, 0, .05);
}

section.discountGroup .section-title {
    pointer-events: none;
}

section.discountGroup .group-tabs .group {
    position: relative;
}

section.discountGroup .group .product-list {
    display: flex;
    flex-wrap: wrap;
    margin: calc(-1 * var(--space-25));
}

section.discountGroup .group .product-list .shop-product-box {
    padding: var(--space-25);
}

.shop-product-slider .slick-list,
section.discountGroup .group .product-list .slick-list {
    width: calc(100% + 140px);
    padding: 70px !important;
    margin: -70px;
    pointer-events: none;
}

.shop-product-slider .slick-list *,
section.discountGroup .group .product-list .slick-list * {
    pointer-events: initial;
}

section.discountGroup .group .product-list .slick-list .slick-slide {
    transition: all .2s linear;
}

.shop-product-slider .slick-list.slick-slide:not(.slick-active),
section.discountGroup .group .product-list .slick-list .slick-slide:not(.slick-active) {
    opacity: 0;
    pointer-events: none;
}

.shop-product-slider .slick-list.slick-slide:not(.slick-active) *,
section.discountGroup .group .product-list .slick-list .slick-slide:not(.slick-active) * {
    pointer-events: none;
}

section.discountGroup .groups-nav .nav-item {
    font-weight: 400;
    font-size: 18px;
}

section.discountGroup .groups-nav .nav-item.active {
    text-decoration: underline;
}

@media screen and (min-width: 1140px) {
    section.discountGroup .groups-nav .nav-item:hover {
        text-decoration: underline;
    }
}

section.discountGroup .groups-nav {
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: var(--space-50);
    position: absolute;
    left: 0;
    top: 10px;
    z-index: 1;
}

section.discountGroup .discountGroup-inner {
    position: relative;
}

section.tiles {
    margin: var(--space-70) 0;
    margin-top: var(--space-60);
}

section.tiles .tile-inner img {
    display: block;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: .4s all;
}

section.tiles .tile-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@media screen and (min-width: 1140px) {
    section.tiles .tile-inner:hover img {
        transform: scale(1.1);
    }
}

section.tiles .no-apla .tile-inner:before {
    display: none;
}

section.tiles .tile-inner:before {
    position: absolute;
    z-index: 1;
    content: '';
    inset: 60% 0 0 0;
    background: rgb(0, 0, 0);
    opacity: 40%;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

section.tiles .caption {
    z-index: 2;
    font-size: var(--font-32);
    font-weight: 700;
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: var(--space-25);
    transition: all 0.4s;
    max-width: 480px;
    text-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
}

section.aboutUs .aboutUs-inner .btn {
    font-size: 18px;
    letter-spacing: 0.05em;

}

section.aboutUs .aboutUs-inner {
    display: flex;
}

section.aboutUs {
    margin: calc(var(--space-60) + 10px) 0;
}

section.aboutUs .aboutUs-inner .aboutUs-left {
    width: 43%;
    padding-right: calc(var(--space-60));
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding-bottom: var(--space-40);
    gap: var(--space-60);
}

section.aboutUs .aboutUs-inner .aboutUs-middle img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.aboutUs .aboutUs-inner .aboutUs-middle {
    position: relative;
    width: calc(55% - (300px + (2 * var(--space-40))));
    border-radius: 25px;
    overflow: hidden;
}

.slide-item iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.bananer-item-inner iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    aspect-ratio: 672/289;
    overflow: hidden;
}

section.aboutUs .aboutUs-inner .aboutUs-right {
    background: #fff;
    width: calc(330px + (2 * var(--space-40)));
    padding-left: calc(2 * var(--space-40));
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
}

section.news {
    background: #fff;
    padding-top: var(--space-50);
}

/*section.search .search-inner .search-left img {*/
/*    display: block;*/
/*    max-width: 100%;*/
/*}*/

/*section.search .search-inner .search-left .searchFloating {*/
/*    position: absolute;*/
/*    top: 4px;*/
/*    right: -30px;*/
/*}*/

/*section.search .search-inner .search-left {*/
/*    display: flex;*/
/*    position: relative;*/
/*    align-items: center;*/
/*    gap: var(--space-40);*/
/*}*/

/*section.search .search-inner .search-left .img-wrapper {*/
/*    min-width: 200px;*/
/*}*/


/*section.search .search-inner .search-left .caption {*/
/*    font-size: var(--font-32);*/
/*}*/

/*section.search {*/
/*    margin: var(--space-50) 0;*/
/*}*/

/*section.search .search-inner {*/
/*    background-color: #fff;*/
/*    display: flex;*/
/*    gap: var(--space-25);*/
/*    justify-content: space-between;*/
/*    padding: calc(var(--space-25) + 10px) var(--space-40);*/
/*}*/

/*section.search .search-right {*/
/*    max-width: 860px;*/
/*}*/

/*section.search .search-right .form-elements .form-group .form-element {*/
/*    width: 100%;*/
/*}*/

/*section.search .search-right .form-element.form-element-shop\\Filters\\PriceFrom .form-range {*/
/*    padding: 0;*/
/*    margin: 0;*/
/*}*/

/*section.search .search-right .form-element.form-element-shop\\Filters\\PriceFrom .form-range .range-row,*/
/*section.search .search-right .form-elements .form-element-shop\\Filters\\PriceTo-container {*/
/*    display: none;*/
/*}*/

/*section.search .search-right .form-elements .form-button .btn {*/
/*    width: 100%;*/
/*}*/

/*section.search .search-right .form-elements .form-button {*/
/*    padding-bottom: 10px;*/
/*    display: flex;*/
/*    align-items: flex-end;*/
/*}*/

/*section.search .search-right .form-elements {*/
/*    display: grid;*/
/*    gap: 0 var(--space-40);*/
/*    grid-template-columns: repeat(3, 1fr);*/
/*}*/

.form-range .col .form-control {
    height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-width: 2px;
}

@media screen and (min-width: 1140px) {
    .form-range .col .form-control:hover {
        border-color: var(--color-secondary);
    }
}

.form-range .col .form-control:focus {
    border-color: var(--color-secondary);
}

.form-range .valueTo:before {
    display: none;
}

.form-range .col {
    margin-top: 0;
}

.range-row {
    display: none;
}

.filter-form-content .form-control.form-range {
    padding: 0;
    margin-bottom: 0;
}

/*.filter-form-content {*/
/**/
/*    padding: var(--space-25) var(--space-40);*/
/*}*/

.filter-form-content .form-element-name {
    /*text-transform: uppercase;*/
    font-size: 14px;
    font-weight: 400;
}

section.recommendedCategories .recommendedCategories-inner .section-heading {
    grid-column: span 2;
}

.discountGroup .section-heading {
    margin-bottom: var(--space-60);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    margin-bottom: var(--space-50);
}

section.recommendedCategories .recommendedCategories-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(2 * var(--space-50));
}

section.recommendedCategories .recommendedCategories-inner[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
}

.recommendedCategories-inner[data-columns="2"] .category-tile .category-tile-list {
    grid-template-columns: repeat(3, 1fr);
}

.recommendedCategories {
    margin-top: var(--space-60);
    margin-bottom: calc(var(--space-60) + 10px);
}

.recommendedCategories-inner .category-tile .tile-name {
    font-weight: 700;
    font-size: var(--font-32);
    display: flex;
    gap: calc(var(--space-25) + 10px);
    align-items: baseline;
}

.recommendedCategories-inner .category-tile .tile-name .caption {
    position: relative;
    flex-shrink: 0;
}

.recommendedCategories-inner .category-tile .tile-name:after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.1);
}

.recommendedCategories-inner .category-tile {
    display: flex;
    flex-direction: column;
    gap: var(--space-50);
}

.recommendedCategories-inner .category-tile .category-tile-list .category-item .caption {
    width: 100%;
    text-align: left;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transition: .2s all;
    line-height: 1.1;
}

.recommendedCategories-inner .category-tile .category-tile-list .category-item .item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 700;
    padding: 14px;
}

@media screen and (min-width: 1140px) {
    .recommendedCategories-inner .category-tile .category-tile-list .category-item .item-inner:hover .caption {
        color: var(--color-secondary);
    }
}

.recommendedCategories-inner .category-tile .category-tile-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-50) 22px;
}

.category-tile-list .category-item {
    display: block;
}

.btn-text-more .fa {
    transition: transform 0.4s;
}

.btn-text-more.slided .fa {
    transform: rotate(180deg);
}

.links-inner .link-item .item-inner .img-wrapper img {
    display: block;
    max-width: 100%;
}

.links-inner .link-item .item-inner .img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 70px;
}

.links-inner .link-item {
    display: flex;
    align-items: center;

}

.links-inner .link-item .item-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.links-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.filters-apply .btn,
.filters-reset .btn {
    width: 100%;
}

.filters-reset .btn {
    color: #000;
}

.filters-apply {
    margin-bottom: calc(var(--space-25) - 8px);
}

.filters-reset .icon {
    color: var(--color-secondary);
}

.page-aside-wrapper .shop-product-list {
    margin-bottom: var(--space-40);
}

.description-bottom {
    margin-bottom: var(--space-60);
}

.sort-form .select2-container--default .select2-selection--multiple,
.sort-form .select2-container .select2-selection--single {
    background-color: #fff;
}


.product-list-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-list-bottom .form-element-select-container .form-control {
    min-width: 260px;
}

.product-list-bottom .pagination-wrapper li.prev {
    margin-right: var(--space-25);
}

.product-list-bottom .pagination-wrapper li.next {
    margin-left: var(--space-25);
}


.product-list-bottom {
    margin-bottom: var(--space-40);
}

.product-list-bottom .pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: unset;
    padding: 0;
    flex-grow: 1;
    width: 62%;
}

.product-list-bottom .form-element-name {
    font-size: 14px;
}

.product-list-bottom .sort-form {
    width: 38%;
}

.product-list-bottom .form-element-select-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-25);
}

.section-header-right {
    display: flex;
    align-items: center;
    gap: calc(var(--space-60) + 7px);
}

.comment-wrapper {
    background-color: #fff;
    padding-top: calc(var(--space-40) + 5px);
}

.opinion-list {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.opinion {
    width: 50%;
    padding: var(--space-60) calc(2 * var(--space-60) - 3px) var(--space-60) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: -1px;
}


.opinion:nth-child(2n) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
}


.opinion:nth-child(1),
.opinion:nth-child(2) {
    border-top: 0;
}

.opinion:nth-child(even) {
    padding-right: 0;
    padding-left: calc(2 * var(--space-60) - 3px);
    border-right: 0;
}

.opinion:last-of-type {
    border-bottom: 0;
}


.opinion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3px;
}

.opinion-header-left {
    display: flex;
    align-items: center;
}

.opinion-name {
    font-size: 14px;
    font-weight: 700;
}

.opinion-name:after {
    content: ',';
    padding-right: 5px;
    letter-spacing: 0.7px;
}

.opinion-date {
    font-size: 14px;
    letter-spacing: 0.7px;
}

.opinion-text .text {
    font-size: 14px;
    letter-spacing: 0.7px;
    font-style: italic;
}

.item-rating-star {
    margin: 0 -3px;
}

.opinion-text-more {
    display: none;
}

.fancybox-slide .opinion-text-less {
    display: none;
}

.fancybox-slide .opinion-text-more {
    display: block;
}

.fancybox-slide .opinion-inner {
    max-width: 550px;
    padding: 40px;
}

.fancybox-slide .text {
    line-height: 26px;
    margin-top: 10px;
}

.read-more {
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-size: 14px;
    color: var(--color-secondary);
    cursor: pointer;
    text-align: right;
}

.read-more:hover {
    text-decoration: underline;
}

.fancybox-close-small:after {
    background-color: #000;
    color: #fff;
    line-height: 1.45;
}

.fancybox-close-small:hover:after {
    background-color: var(--color-secondary);
    color: #fff;
}

.comment-form-wrapper .controls.captcha-container {
    --row-gap: 5px;
}

.comment-form-wrapper .item-rating-container {
    display: block;
}

.shop-product-view-extras-inner {
    display: flex;
}

.shop-product-box .product-bottom .product-availability .icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.shop-product-box .product-bottom .product-availability .icon img {
    max-width: 100%;
}

.shop-product-box .product-bottom .product-availability {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-product-box .product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.shop-product-box .item-ration-label {
    display: none;
}

.contact-page {
    display: flex;
}

.contact-page .page-left {
    flex-grow: 1;
    padding-right: calc(var(--space-60) + 15px);
}

.contact-page .page-right:before {
    z-index: -1;
    content: '';
    background-color: #fff;
    position: absolute;
    top: -100px;
    right: min(calc(-1 * (var(--container-padding) + (100vw - 1720px))), calc(-1 * var(--container-padding)));
    display: block;
    width: max(calc(100% + (var(--container-padding) + (100vw - 1720px))), calc(100% + var(--container-padding)));
    bottom: 0;
}

.contact-page .page-right {
    max-width: 930px;
    flex-grow: 2;
    background-color: #fff;
    position: relative;
    padding-left: calc((var(--space-60) * 2) + 10px);
}

.contact-page .image-wrapper {
    display: flex;
    margin-top: calc(var(--space-50) * 2);
    max-width: 560px;
}

.contact-page .image-wrapper img {
    display: block;
    max-width: 100%;
    mix-blend-mode: multiply;
}

.contact-page .teaser {
    font-size: var(--font-24);
    line-height: 40px;
}

.teaser + .contact-data-wrapper {
    margin-top: 35px;
}

.contact-data-wrapper li {
    padding: 9px 0;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 18px;
    font-weight: 400;

}

.contact-data-wrapper li a {
    transition: color 0.3s;
}

.contact-data-wrapper li a:hover {
    color: var(--color-secondary);
}

.contact-data-wrapper {
    margin-bottom: var(--space-50);
}

.contact-data-wrapper .icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    color: var(--color-secondary);
    padding: 8px;
}

.contact-page .text-wrapper h2 {
    margin-bottom: 10px;
}

.contact-page .text-wrapper {
    display: flex;
    gap: 18px;
}

.contact-page .text-wrapper .icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    color: var(--color-secondary);
    padding: 8px;
}

.contact-form-container .form-control.captcha-image-wrapper {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 0;
}

.contact-form-container .form-control {
    background-color: #F5F5F5;
    border: none !important;
}

.contact-form-container button.captcha-refresh {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 0;
}

.contact-form-container h2 {
    text-align: center;
    font-weight: 800;
    font-size: var(--font-48);
    margin-bottom: calc(var(--space-40) + 4px);
    letter-spacing: 0.03em;
}

.contact-hours .text {
    font-size: 18px;
}

.form .consent-all {
    cursor: pointer;
}

.form .consent-all-row * {
    font-weight: 700;
}

.form .consent-all div {
    margin-right: 12px;
    margin-bottom: 2px;
}

.form .consent-all:hover:not(.checked) .icheckbox_minimal-custom {
    background-position: -20px 0;
}

.form .consent-all.checked .icheckbox_minimal-custom {
    background-position: -40px 0;
}

.salons-slider .item-list .salon-item-inner img {
    display: block;
    width: 100%;
}

.salons-slider .item-list .salon-item-inner {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 10px);
}

.salons-slider .item-list .salon-item .salon-image {
    width: 100%;
}

.salons-slider .item-list .salon-item {
    width: 25%;
    padding: var(--space-25);
}


.salons-slider .item-list .salon-item-inner:hover .salon-title {
    color: var(--color-secondary);
}


.salons-slider .item-list {
    display: flex;
}

.salons-slider {
    background-color: #fff;
    border-top: 1px solid var(--color-border-deafult);
    padding: var(--space-60) 0;
    position: relative;
    z-index: 9;
}

.category-item-img-wrapper {
    flex-grow: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: calc(-1 * var(--space-50));
}

.category-item img {
    display: block;
    max-width: 100%;
}

.faq-boxes > .container > ul > li {
    border: 1px solid transparent;
    transition: .3s all;
    border-top-color: rgba(0, 0, 0, .1);
}

.faq-boxes > .container > ul > li:last-child {
    border-bottom-color: rgba(0, 0, 0, .1);
}

.faq-boxes > .container > ul > li.active {
    border-color: var(--color-secondary);
}

.faq-boxes > .container > ul > li .faq-btn {
    padding: calc(var(--space-25) + 7px) calc(var(--space-40) - 2px) calc(var(--space-25) + 5px) calc(var(--space-40) + 5px);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-primary);
    position: relative;
    cursor: pointer;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-40);
}

.faq-boxes > .container > ul > li .faq-btn .icon {
    border: 1px solid var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    color: var(--color-primary);
    border-radius: 50%;
    transition: .4s all;
}

.faq-boxes > .container > ul > li .faq-btn .icon svg {
    display: block;
    max-width: 100%;
    transition: .4s all;
}

.faq-boxes > .container > ul > li .faq-btn .icon svg path {
    filter: inherit;
}

.faq-boxes > .container > ul > li.active .faq-btn {
    color: var(--color-secondary);
}

.faq-boxes > .container > ul > li.active .faq-btn .icon svg {
    transform: rotate(180deg);
}

@media screen and (min-width: 1140px) {
    .faq-boxes > .container > ul > li .faq-btn:hover {
        color: var(--color-secondary);
    }

    .faq-boxes > .container > ul > li .faq-btn:hover .icon {
        background-color: var(--color-secondary);
        color: #fff;
    }
}

.faq-boxes > .container > ul > li .faq-content {
    padding: 0 calc(var(--space-40) + 5px);
    padding-bottom: var(--space-50);
    display: none;
}

.faq-boxes > .container > ul > li .faq-content .text {
    max-width: 990px;
}

.article-contents {
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #f1f1f1;
}

.article-contents .text {
    line-height: 22px;
}

.article-contents ol li + li {
    margin-top: 7px;
}

.article-contents li a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}


.article-contents li a * {
    font-weight: 400 !important;
    font-size: 16px !important;
}

.article-contents li a:hover {
    color: var(--color-secondary);
}

.article-contents-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #262827;
}

.sitemap {
    margin-bottom: var(--space-60)
}

.sitemap > ul {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.sitemap > ul > li {
    width: 20%;
    padding: 15px;
}

.sitemap > ul > li > .menuList-group > .menuList-toggle {
    display: none;
}

.sitemap .menuList-toggle {
    padding-left: 8px;
    color: var(--color-secondary);
    transition: color 0.3s;
}

.sitemap .menuList-toggle:hover {
    color: var(--color-primary);
}

.menuList-toggle {
    cursor: pointer;
}


.sitemap > ul > li > .menuList-group > a {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.sitemap .menuList-group a {
    transition: color 0.3s;
}

.sitemap .menuList-group:hover {
    color: var(--color-secondary);
}

.sitemap .menuList-group:hover .menuList-toggle {
    color: var(--color-primary);
}

.sitemap > ul > li > ul > li ul {
    display: none;
    padding: 12px;
}

.sitemap > ul > li > ul > li a {
    line-height: 2.2;
}

.sitemap > ul > li > ul > li > ul > li a {
    font-size: 14px;
}

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

/*#main-menu .submenu {*/
/*    display: none;*/
/*}*/

.item-teaser-more {
    cursor: pointer;
}

.item-teaser-more.active.more {
    display: none;
}

.add-opinion {
    width: 490px;
    padding: 0;
}

.add-opinion-container {
    position: relative;
    width: 100%;
    background: #F9FAFB;
    padding: 30px;
}

.add-opinion-title {
    font-size: 24px;
    line-height: 32px;
    color: #080808;
    letter-spacing: 0.01em;
    margin-bottom: 5px;
    font-weight: 800;
}

.add-opinion-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 22px;
}

.add-opinion .add-opinion-stars {
    padding-bottom: 30px;
    position: relative
}

.add-opinion .add-opinion-stars .add-opinion-title {
    padding: 15px 0 12px
}

.add-opinion .item-rating-star-container {
    display: inline-block;
    margin: 0 -14px;
    vertical-align: top;
    padding: 0
}

.add-opinion .item-rating-star-container .item-rating-star {
    font-size: 34px;
    padding: 0 3px;
    color: #B4001D;
    cursor: pointer
}

.add-opinion .iradio_minimal-custom.checked ~ .item-rating-star .icon-star {
    -webkit-mask-image: url('../images/icons/star_fill.svg');
    mask-image: url('../images/icons/star_fill.svg');
}

.add-opinion .iradio_minimal-custom.hover ~ .item-rating-star .icon-star {
    -webkit-mask-image: url('../images/icons/star_fill.svg');
    mask-image: url('../images/icons/star_fill.svg');
}

.add-opinion form .form-element-name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700 !important;
    text-transform: initial;
    letter-spacing: .05em;
    color: #232323;
    margin-bottom: 10px;
}

.add-opinion .fancybox-close-small {
    top: 5px;
    right: 5px;
}

.add-opinion {
    --row-gap: 5px;
}

.advice-list ul {
    font-size: 0;
    margin: -17px;
    display: flex;
    flex-wrap: wrap;
}

.advice-list ul > * {
    font-size: 16px
}

.advice-list ul li {
    width: 25%;
    padding: 17px;
}

.advice-list ul li .box-content {
    position: relative;
    font-size: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.advice-list ul li .box-content a.full {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.advice-list ul li .box-content .box-image {
    position: relative;
    display: block;
}

.advice-list ul li .box-content .box-image .image-wrapper {
    position: relative;
    width: 100%;
    display: block;
}

.advice-list ul li .box-content .box-image img {
    max-width: 100%;
    max-height: 100%;
}

.advice-list ul li .box-content .box-text {
    position: relative;
    width: 100%;
    padding-top: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

@media screen and (min-width: 640px) {
    .advice-list ul li .box-content .box-text:first-child {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px
    }
}

.advice-list ul li .box-content .btn {
    position: absolute;
    bottom: 10px;
    right: 30px
}

.advice-list ul li .box-content .text-wrapper {
    min-height: 120px;
    font-size: 15px;
    color: #000;
    line-height: 1.2;
    margin-bottom: 22px;
}

.advice-list ul li .box-content .box-title {
    color: inherit;
    text-transform: uppercase;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

@media screen and (min-width: 1140px) {
    .advice-list ul li .box-content:hover {
        border-color: var(--color-secondary)
    }

    .advice-list ul li .box-content:hover .box-image img {
        box-shadow: 4px 6px 18px rgba(0, 0, 0, .1)
    }
}

.box-text-top {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
    flex-wrap: wrap;
    margin: -5px;
}

.box-date {
    padding: 5px;
}

.advice-list ul li .box-content .btn {
    position: static;
}

.advice-list li.first {
    width: 50%;
}

/*.advice-list li.first .box-image::before{*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    pointer-events: none;*/
/*    background-color: rgba(0,0,0,0.35);*/
/*    z-index: 1;*/
/*}*/

.advice-list li.first .box-content {
    height: initial;
}

.advice-list ul li.first .box-content .box-text {
    position: absolute;
    bottom: 0;
    padding: 38px !important;
    pointer-events: none;
    z-index: 2;
}

.advice-list li.first .box-text.white-text .text {
    color: #fff;
}

.advice-list ul li.first .box-text.white-text .text-wrapper {
    color: #fff;
}

.advice-list ul li.first .box-content .text-wrapper {
    margin-bottom: 0;
}

.advice-list li.first .btn {
    display: none;
}

.advice-boxes {
    padding-bottom: var(--space-60);
}

.section-header.no-opinions {
    margin-bottom: calc(var(--space-40) + 5px);
}

.section-header.no-opinions .section-header-right {
    align-items: center;
    gap: var(--space-40);
}

.comment-wrapper .section-header .text {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #3C3C3C;
}

.section-newsletter {
    padding-top: calc(2 * var(--space-40));
    padding-bottom: var(--space-60);
    background: #F5F5F5;
    margin-top: calc(var(--space-60) + 10px);
}

.section-newsletter-inner {
    display: flex;
    justify-content: space-between;
    gap: calc(2 * var(--space-60));
}

.newsletter-left {
    display: flex;
    align-items: center;
    width: 350px;
    flex-shrink: 0;
}

.newsletter-left-icon {
    width: 74px;
    height: 74px;
    margin-right: calc(var(--space-25) + 6px);
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-left-text {
    font-size: 22px;
    font-weight: 300;
}

.newsletter-content .form-group {
    display: flex;
    gap: 22px;
}

.section-newsletter-inner .btn {
    min-width: 231px;
}

.newsletter-content .form-control {
    border-color: transparent;
    border-radius: 10px;
    color: #000;
    padding: 6px 17px;
}

.newsletter-content .form-control::placeholder {
    color: #000;
}

.newsletter-content .form-element-option-text {
    font-size: 12px;
    line-height: 2;
}

.newsletter-content label {
    display: flex;
}

.newsletter-content .icheckbox_minimal-custom {
    flex-shrink: 0;
    margin-right: 18px;
    position: relative;
    top: 3px;
}

.section-header.no-opinions .section-title {
    margin-bottom: 0;
}

.page-aside-wrapper .page-content {
    flex-grow: 1;
}

.contact-page-wrapper .breadcrumb-container {
    margin: 32px 0;
}

.contact-form-container .form-element-name {
    font-size: 14px !important;
    margin-bottom: 16px;
}

.tiles-collection .tile-item .description-item,
.tiles-collection .tile-item .image-item {
    width: calc(50% - 30px);
}

.tiles-collection .tile-item.image-right {
    flex-direction: row-reverse;
}

.product-list-page-inner .tiles-collection {
    margin-bottom: 50px;
}

.tiles-collection {
    gap: 50px;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-50);
}

.tiles-collection .tile-item .image-item .stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.tiles-collection .tile-item .image-item.has-link .stretched-link:hover + img {
    transform: scale(1.1);
}

.tiles-collection .tile-item .image-item img {
    transition: all 0.4s;
    display: block;
    max-width: 100%;
}

.tiles-collection .tile-item .image-item {
    position: relative;
    overflow: hidden;
}

.tiles-collection .tile-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px
}

@media screen and (max-width: 650px) {
    .tiles-collection .tile-item .description-item,
    .tiles-collection .tile-item .image-item {
        width: 100%;
    }

    .tiles-collection .tile-item {
        flex-direction: column !important;
    }
}

.tiles-collection .tile-item-text-100 .description-item {
    width: 100%;
}

.tiles-collection .title-item-text-text {
    align-items: flex-start;
}


.submenu.one-column ul {
    flex-direction: column;

}

#main-menu-bottom .submenu.one-column,
#main-menu .submenu.one-column {
    margin: 0;
    position: absolute;
    top: 51px;
    min-width: 350px;
    padding: 10px 0;
}


#main-menu li:hover .submenu.one-column,
#main-menu-bottom li:hover .submenu.one-column {
    display: block;
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
}

#main-menu-bottom .submenu.one-column {
    right: unset;
    left: 50%;
    -webkit-transform: translate3d(-50%, -150%, 0);
    -moz-transform: translate3d(-50%, -150%, 0);
    -ms-transform: translate3d(-50%, -150%, 0);
    -o-transform: translate3d(-50%, -150%, 0);
    transform: translate3d(-50%, -150%, 0);
}

#main-menu .submenu.one-column {
    top: 61px;
}

#main-menu-bottom .submenu.one-column ul li,
#main-menu .submenu.one-column ul li {
    width: 100% !important;
}

.sort-row .sort-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.sort-row .form-element-name {
    font-size: 14px;
}

.product-list-bottom .btn-load-next {
    font-size: 12px;
    gap: var(--space-40);
    padding-left: var(--space-40);
    padding-right: calc(var(--space-40) - 7px);
}

.error-template {
    padding: calc(2 * var(--space-40)) var(--container-padding) !important;
}

.error-template .section-title {
    margin-bottom: 7px;
    text-align: center;
    padding-right: 0;
}

.error-details {
    margin-bottom: 3px;
}

.comment-wrapper .section-header .item-ration-label {
    font-size: 20px;
    font-weight: 200;
}

.comment-wrapper .section-header .item-rating-count {
    font-size: 20px;
    font-weight: 200;
}

.comment-wrapper .section-header .item-rating-star {
    font-size: 20px;
    margin: 0;
}

.comment-wrapper .section-header .item-rating-container {
    gap: var(--space-25);
}


.extraPrice > span {
    display: none;
}

.shop-product-variant-element .checkboxradio-container .row {
    margin: -5px;
}

.shop-variant-option {
    cursor: pointer;
    margin: 5px;
    width: calc(16.6666% - 10px);
    position: relative;
}

.form .shop-variant-option label {
    background: rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 10px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    padding: 7px 10px;
    pointer-events: none;
    cursor: pointer;
    text-align: center;
}

.shop-variant-option:hover label {
    background: var(--color-secondary);
    color: #fff;
}

.form .shop-variant-option label .shop-variant-cover-preview {
    height: 100%;
    width: 100%;
}

.shop-variant-option.active label {
    background: var(--color-secondary);
    color: #fff;
}

.shop-variant-option .iradio_minimal-custom {
    opacity: 0;
}

.shop-product-variant + .shop-product-variant {
    margin-top: var(--space-25);
}

.shop-product-variant-element #attributecover_id .shop-variant-option label {
    background-color: transparent;
    padding: 0;
    color: #000;
    font-size: 12px;
}


.shop-product-variant-element #attributecover_id .shop-variant-option.active::before {
    display: none;
}

.form .shop-product-variant-element .checkboxradio-container {
    padding-right: 0;
}

.form .shop-product-variant-element .checkboxradio-container .form-control-feedback {
    display: none;
}

.shop-variant-cover-preview .img {
    display: block;
    position: relative;
    margin-bottom: 19px;
}

.shop-variant-cover-preview .img::after {
    content: '';
    display: block;
    width: 100%;
    padding-top: 80%;
}

.shop-product-variant-element #attributecover_id .shop-variant-option.active .shop-variant-cover-preview .img:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 22px;
    height: 22px;
    background: url('../images/icons/variant-check.svg');
    z-index: 1;
}

.shop-product-offer-box-bottom-main .icon {
    flex-shrink: 0;
}

.shop-variant-option.active::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -5px;
    width: 22px;
    height: 22px;
    background: url('../images/icons/variant-check.svg');
}

.shop-variant-cover-preview .img img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid transparent;
    object-fit: cover;
    transition: border-colr 0.3s;
}

.shop-product-variant-element #attributecover_id .shop-variant-option:hover .shop-variant-cover-preview .img img {
    border-color: #000;
}

.shop-product-variant-element #attributecover_id .shop-variant-option.active .shop-variant-cover-preview .img img {
    border-color: #000;
}

.form .shop-product-variant .form-element-name {
    margin-bottom: 0;
    font-size: 14px;
    color: #000;
}

.shop-product-variant-container {
    background-color: #fff;
    padding: var(--space-25) calc(var(--space-25) + 5px);
    margin-bottom: calc(var(--space-25) + 5px);
}

.shop-product-offer-box {
    width: 100%;
    /*height: 100%;*/
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.shop-product-offer-box.center {
    justify-content: center;
}

.shop-product-offer-box .shop-add-to-basket {
    display: flex;
    align-items: center;
    flex: 1;
}

.shop-variant-cover-preview .extraPrice {
    display: block;
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1.2;
}

.shop-variant-label-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-variant-toggle {
    display: none;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    text-transform: uppercase;
    color: #424242;
    padding: 1px 10px;
    border-radius: 5px;
    position: relative;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.shop-variant-toggle.active,
.shop-variant-toggle:hover {
    background-color: var(--color-secondary);
    color: #fff;
}

.shop-variant-toggle::after {
    content: '\f107';
    font-family: 'FontAwesome', sans-serif;
    display: block;
    margin-left: 8px;
}

.shop-variant-options-panel {
    padding-top: 11px;
    overflow: hidden;
    max-height: 97px;
    transition: max-height 0.5s;
}


.shop-variant-attribute-cover_id .shop-variant-options-panel {
    max-height: 166px;
}

.shop-product-price-installment > span {
    display: block;
    /*padding: 11px;*/
    background-color: #fff;
    font-size: 13px;
    border-radius: 5px;
}

.shop-product-offer-box-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.shop-product-offer-box-info-item {
    display: flex;
    align-items: center;
}

.shop-product-offer-box-info-item a {
    transition: color 0.3s;
}

.shop-product-offer-box-info-item a:hover {
    color: var(--color-secondary);
}

.shop-product-offer-box-info {
    border-radius: 5px;
    background: #ECECEC;
    padding: 15px calc(var(--space-25) - 5px);
    margin-bottom: calc(var(--space-25) - 6px);
}

.salons-view-button {
    margin-top: calc(var(--space-25) - 8px);
}

.shop-product-offer-box-info-item .icon {
    margin-right: 18px;
    color: var(--color-secondary);
    width: 22px;
}

.shop-product-offer-box-info-item .icon img {
    max-width: 100%;
}

.shop-product-offer-box-info-item .caption {
    font-size: 14px;
    line-height: 18px;
}

.shop-product-offer-box-info-item + .shop-product-offer-box-info-item {
    margin-top: 8px;
}

.shop-product-offer-box-left {
    width: 66%;
    padding-right: calc(var(--space-50) - 3px);
}


.shop-product-view-main-bottom .btn {
    flex-grow: 1;
}

@media screen and (min-width: 1140px) {
    .sticky-product-info {
        display: none !important;
    }
}

.sticky-product-info {
    position: fixed;
    background-color: #fff;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999999;
    padding: 12px 15px;
    transition: opacity 300ms, transform 300ms;

    align-items: center;
    border-bottom: 1px solid rgb(0 0 0 / .2);
}

.sticky-product-info.show-footer {
    transform: none;
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.sticky-product-info-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.sticky-product-info .shop-product-price-label {
    margin-bottom: 4px;
}

.btn-xl.btn-salon {
    flex-grow: 1;
    background-color: #fff;
    border-color: rgba(0, 0, 0, 0.1);
    padding: 0 calc(var(--space-25) - 5px);
    gap: 0;
}

.btn-salon .icon {
    width: initial;
    height: initial;
    margin-right: 18px;
    flex-shrink: 0;
}

.shop-product-offer-box-bottom-main {
    display: flex;
    align-items: center;
    gap: var(--space-25);
    margin-top: -12px;
    margin-bottom: -12px;
    margin-top: calc(var(--space-25) - 9px);
}

.shop-product-offer-box-bottom-main .btn.btn-xl {
    flex-grow: 1;
}

.shop-product-offer-box-right {
    width: 34%;
    display: flex;
    flex-direction: column;
}

.shop-product-offer-box-bottom {
    display: flex;
    width: 100%;
}

.shop-product-price-label {
    font-size: 12px;
    margin-bottom: 10px;
}

.product-nav-slider-wrapper .btn.btn-arrow {
    background-color: #fff;
    color: #000;
}

@media screen and (min-width: 1140px) {
    .product-nav-slider-wrapper .btn.btn-arrow:hover {
        background-color: #000;
        color: #fff;
    }
}

.shop-variant-options-panel .checkboxradio-container .hidden-elements {
    width: 100%;
    flex-wrap: wrap;
}

.shop-product-content-bottom .column-content > ul {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.shop-product-description .section-title {
    margin-bottom: var(--space-25);
}

.product-param {
    width: 45%;
    font-size: 14px;
    letter-spacing: 0.7px;
}

.product-param-values {
    width: 55%;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.7px;
}

.product-description-params .column-content ul li {
    justify-content: space-between;
}

.product-description-params .product-param,
.product-description-params .product-param-values {
    width: initial;
}

.shop-product-content-bottom .column-content > ul li {
    padding: 13px 0 13px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    position: relative;
    display: flex;
    gap: 10px;
}

.shop-product-content-bottom .column-content > ul li:before {
    display: block;
    content: '';
    background: var(--color-secondary);
    width: 6px;
    height: 6px;
    left: 0;
    top: 22px;
    position: absolute;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.hidden-elements {
    display: inline;
}

.hidden-elements .shop-variant-option {
    display: none;
}

.shop-product-offer-box-price {
    display: flex;
}

.shop-product-price-coupon {
    position: relative;
    opacity: 0;
    padding-left: calc(var(--space-40) + 5px);
    margin-left: calc(var(--space-25) + 4px);
}

.shop-product-price-coupon .shop-product-price-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: calc(var(--space-50) + 6px);
    background-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
}

.shop-product-price-coupon .price {
    font-size: var(--font-36);
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
}

.shop-product-price-coupon .shop-product-price-label {
    font-size: 14px;
    margin-bottom: 5px;
}

.shop-product-price-coupon .shop-product-price-label strong {
    color: var(--color-secondary);
}

.shop-variant-option input {
    display: none;
}

.shop-product-base-price.beforeCoupon .shop-product-price .price:not(.price-old) {
    color: #B9B9B9;
    font-size: var(--font-32);
}

.shop-product-variant-row:not(.shop-product-variant-row-mattress) .shop-variant-options-panel {
    max-height: initial;
    overflow: initial;
    padding-top: 0;
}

.shop-product-variant-row:not(.shop-product-variant-row-mattress) .shop-product-variant-label {
    display: flex;
    align-items: center;
}

.shop-product-view-main-left {
    position: relative;
}

.shop-product-discount-circle {
    position: absolute;
    left: 10px;
    top: 10px;
}

.shop-product-discount-circle .circle-discount-percent {
    width: 115px;
    height: 115px;
    background: var(--color-secondary);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    font-size: 36px;
    line-height: 115px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    -webkit-box-shadow: 10px 2px 24px rgba(0, 0, 0, .2);
    -moz-box-shadow: 10px 2px 24px rgba(0, 0, 0, .2);
    box-shadow: 10px 2px 24px rgba(0, 0, 0, .2);
}

.shop-variant-options-panel .form-control-feedback {
    display: none;
}

.shop-variant-options-panel.has-feedback .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 44px;
}

.shop-variant-options-panel.has-feedback .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
}

.widepage-aside .form-element-multiselectCheckbox .select2-container--default .select2-selection--multiple:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 24px;
    right: 17px;
    top: 11px;
    display: flex;
    -webkit-mask-size: cover;
    -mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: #000;
    -webkit-mask-image: url(../images/icons/arrow-down.svg);
    mask-image: url(../images/icons/arrow-down.svg);
}

.widepage-aside .form-range .col .form-control {
    border-radius: 30px;
}

.widepage-aside .form-element-multiselectCheckbox .select2-container--default .select2-selection--multiple:after {
    width: 46px;
    height: 46px;
    right: 0;
    top: 0;
    content: '';
    transform: none;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.widepage-aside .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    -webkit-mask-size: cover;
    -mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: currentColor;
    -webkit-mask-image: url('../images/icons/arrow-down.svg');
    mask-image: url('../images/icons/arrow-down.svg');
}

.widepage-aside .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 46px;
    height: 46px;
    right: 0;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.basket-view .basket-coupon-container > label {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-secondary);
    padding: 0;
    margin-bottom: 15px;
}

.basket-coupon-activated .basket-coupon-container > label {
    padding: 0;
}

.basket-view .basket-coupon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.basket-view .basket-coupon-box {
    overflow: hidden
}

.basket-view .input-group .form-control {
    background: #fff;
    color: #000;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-weight: 300;
    letter-spacing: .05em;
    font-size: 14px;
    line-height: 20px;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 6px 16px;
    height: 46px
}

.basket-coupon-box .glyphicon {
    display: none;
}

.basket-coupon-box .form-inline .btn {
    background-color: #fff;
    color: #000;
    border-color: rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.basket-coupon-box .form-inline .btn:hover {
    background-color: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}

.basket-coupon-box .form-inline .input-group .input-group-btn .btn {
    background-color: #e2e2e2;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-left: none;
}

.basket-coupon {
    text-align: left;
    background-color: transparent;
    clear: both;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: var(--space-25);
    margin: 0;
}

.basket-view-coupon-wrapper {
    justify-content: center;
    display: flex;
    clear: both;
    margin-bottom: var(--space-25);
    gap: 120px;
}

.basket-coupon-box.basket-coupon-box-big {
    width: 50%;
}

.basket-view .basket-coupon-code {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 15px;
    line-height: 24px;
    font-weight: 900;
    color: #e2001a;
    padding: 7px 20px 7px 0;
    vertical-align: top;
}

.basket-view .basket-coupon-box .btn {
    display: inline-block;
    vertical-align: top
}


.basket-coupon-code-activate {
    padding: 0;
    border: 0;
    background-color: transparent;
}

.basket-coupon-code-activate:hover {
    text-decoration: underline;
}


.basket-coupon-code-activate {
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000;
    font-weight: 700;
    background-color: #fff;
}

@media screen and (min-width: 1140px) {
    .basket-coupon-code-activate:hover {
        background-color: #e2001a;
        border-color: #e2001a;
        text-decoration: none;
        color: #fff;
    }
}

.basket-coupon-box-big-inner {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 30px;
    padding-bottom: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*.basket-coupon-box-big {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/

.basket-coupon-box-big-inner .text {
    text-align: center;
    line-height: 1.8;
    margin-bottom: 8px;
}

.basket-coupon-box > .input-group {
    display: flex;
    align-items: center;
}

.shop-method-icon {
    display: block;
    max-width: 28%;
}

.shop-method-icon img {
    display: block;
    max-width: 100%;
}

.shop-method-name {
    display: block;
    flex-grow: 1;
    font-size: 14px;
    max-width: 70%;
}

.basket-summary .form-element-option-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 10px;
}

.basket-view .shop-order-login-loginBox,
.basket-view .shop-order-login-registerBox,
.basket-view .shop-order-login-guestBox {
    display: flex;
    flex-direction: column;
}

.basket-view .shop-order-login-loginBox .panel,
.basket-view .shop-order-login-registerBox .panel,
.basket-view .shop-order-login-guestBox .panel {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.basket-view .shop-order-login-loginBox .panel-body,
.basket-view .shop-order-login-registerBox .panel-body,
.basket-view .shop-order-login-guestBox .panel-body {
    flex-grow: 1;
}

.basket-view .shop-order-login-loginBox .panel-body .match,
.basket-view .shop-order-login-registerBox .panel-body .match,
.basket-view .shop-order-login-guestBox .panel-body .match {
    height: 100%;
}

.basket-view .shop-order-login-loginBox .panel-body .match-inner,
.basket-view .shop-order-login-registerBox .panel-body .match-inner,
.basket-view .shop-order-login-guestBox .panel-body .match-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.basket-view .shop-order-login-loginBox .panel-body .match-inner .text,
.basket-view .shop-order-login-registerBox .panel-body .match-inner .text,
.basket-view .shop-order-login-guestBox .panel-body .match-inner .text {
    font-size: 15px;
    padding-bottom: 15px;
}

.basket-view .summary-box .form-element-name {
    text-transform: initial;
    font-weight: 700 !important;
}

.basket-view .shop-order-login-loginBox .login-box,
.basket-view .shop-order-login-registerBox .login-box,
.basket-view .shop-order-login-guestBox .login-box {
    margin-top: 10px;
}

.basket-view .login-form .btn {
    width: 100%;
}

.news-category-list .category-lang {
    font-size: 18px;
    padding-right: var(--space-40);
    display: none;
}

.shop-product-view-main-left .item-rating-container {
    cursor: pointer;
}

.mattress-covers {
    background-color: #fff;
    padding-top: var(--space-50);
    margin-bottom: var(--space-50);
}

.shop-product-variant-mattress-cover-toggle {
    margin-bottom: var(--space-50);
    display: none;
}

.shop-product-variant-mattress-cover-toggle.active {
    display: flex;
}

.shop-product-variant-mattress-cover-toggle .image-wrapper img {
    display: block;
    max-width: 100%;
}

.sheet-image {
    width: 35%;
    padding-right: calc(2 * var(--space-60) - 2px);
}

/*.sheet-image .image-wrapper {*/
/*    position: relative;*/
/*}*/

.sheet-image .sheet-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/*.sheet-video .sheet-video-icon {*/
/*    position: absolute;*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    margin-top: -50px;*/
/*    margin-left: -50px;*/
/*}*/

/*.sheet-video .sheet-video-icon svg * {*/
/*    transition: fill 0.2s;*/
/*}*/

/*.sheet-video .sheet-video-icon svg * {*/
/*    fill: #f03;*/
/*}*/

/*.sheet-video:hover .sheet-video-icon svg * {*/
/*    fill: #000;*/
/*}*/

.mattress-wrapper-right {
    width: 65%;
}

.mattress-covers .section-title {
    text-align: left;
    margin-bottom: calc(var(--space-25) + 8px);
}

.sheet-image .image-wrapper {
    margin-bottom: var(--space-40);
    position: relative;
}

.sheet-image .caption {
    font-size: 14px;
    line-height: 2.1428;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}

.sheet-name {
    font-size: calc(var(--font-36) - 4px);
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-25);
}

.sheet-description {
    margin-bottom: var(--space-40);
}

.sheet-description .text {
    font-size: 14px;
    letter-spacing: 0.7px;
}

.salon {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    align-items: center;
}

.salon + .salon {
    margin-top: var(--space-50);
}

.salon:nth-child(even) {
    flex-direction: row-reverse;
}

.salon-image img {
    display: block;
    max-width: 100%;
}

.salon-image img {
    display: block;
    max-width: 100%;
}

.salon-image {
    width: 39%;
}

.salon-content {
    width: 61%;
    padding: var(--space-50);
    padding-bottom: var(--space-25);
    display: flex;
    justify-content: space-between;
}

.salon-title {
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s;
}

.salon-title a {
    color: #000;
    transition: color 0.3s;
}

@media screen and (min-width: 1140px) {
    .salons-list .salon-title a:hover {
        color: var(--color-secondary);
    }
}

.salon-content .text {
    margin-bottom: calc(var(--space-25) - 5px);
}

.salons-list {
    margin-bottom: calc(var(--space-60) + 10px);
}

.salon-contact-item {
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.salon-contact-item .icon {
    color: var(--color-secondary);
    width: 36px;
    height: 36px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-right: calc(var(--space-25) + 5px);
    transition: all 0.3s;
}

.salon-contact-item + .salon-contact-item {
    margin-top: var(--space-25);
}

.salon-content-bottom {
    margin-top: calc(var(--space-25) + 5px);
}

.salon-content-bottom .btn {
    width: 100%;
}

a.salon-contact-item:hover {
    color: var(--color-secondary);
}

a.salon-contact-item:hover .icon {
    background-color: var(--color-secondary);
    color: #fff;
}

.btn-map {
    margin-bottom: calc(var(--space-25) - 5px);
    text-decoration: underline !important;
}

.btn-map .icon {
    color: var(--color-secondary);
}

.category-desc-toggle {
    cursor: pointer;
}

.section-title.text-left {
    text-align: left;
}

.btn-xl {
    /* height: 50px; */
    padding: 0 var(--space-40);
    min-width: 180px;
    border-radius: 10px;
    gap: 10px;
    word-wrap: unset;
    min-height: 50px;
    text-wrap: initial;
}

.btn-xl .icon {
    width: 18px;
    height: 18px;
}

.links-inner .link-item .item-inner {
    font-size: 14px;
    text-transform: uppercase;
}

#main-menu-bottom ul li li a,
#main-menu ul li li a {
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: transparent;
    transition: all 300ms;
}

#main-menu-bottom ul li li a:hover,
#main-menu ul li li a:hover {
    -webkit-text-stroke-color: var(--color-secondary);
}

#main-menu-bottom ul li li a .icon-wrapper svg, .rwdMenu .icon-wrapper svg,
#main-menu ul li li a .icon-wrapper svg {
    fill: #e10024
}

#main-menu-bottom ul li li a .icon-wrapper, .rwdMenu .icon-wrapper,
#main-menu ul li li a .icon-wrapper {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 4px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

#main-menu-bottom ul li li a .icon-wrapper .icon,
#main-menu ul li li a .icon-wrapper .icon {
    width: 100%;
    height: 100%
}

.rwdMenu .icon-wrapper {
    left: 10px
}

#main-menu-bottom ul li li a:before,
#main-menu ul li li a:before {
    display: none
}


#main-menu-bottom ul li li a,
#main-menu ul li li a {
    position: relative;
    background: transparent;
    font-size: 14px;
    border-radius: 0;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 1.4 !important;
}

#main-menu-bottom ul li > a:hover,
#main-menu ul li > a:hover {
    text-decoration: none
}

#main-menu-bottom ul li.active > a,
#main-menu ul li.active > a {
    color: var(--color-secondary)
}

.form .form-element-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: #232323;
}

.top-login-box .forgot-password {
    font-size: 14px;
    line-height: 120%;
    color: #1B1B1B;
    font-weight: 600;
    letter-spacing: .01em;
}

#main-menu {
    height: 100%;
}

#main-menu > ul {
    height: 100%;
}

@media screen and (min-width: 1140px) {
    #main-menu > ul > li.has-child:hover > a {
        color: var(--color-secondary);
    }
}

#main-menu > ul > li {
    padding: 22px 0;
}

#main-menu > ul > li > a {
    transition: color .2s;
}

@media screen and (min-width: 1140px) {
    #main-menu-bottom ul li.has-child:hover > a,
    #main-menu-bottom ul li > a:hover,
    #main-menu ul li.has-child:hover > a,
    #main-menu ul li > a:hover {
        color: var(--color-secondary)
    }
}

#main-menu-bottom ul li ul li,
#main-menu ul li ul li {
    height: 46px;
    /*border: 1px solid rgba(0, 0, 0, .03);*/
    margin-left: -4px;
    margin-top: -1px;
    text-align: left
}


#main-menu-bottom ul li:hover .submenu,
#main-menu ul li:hover .submenu {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none
}

/*#main-menu ul li:hover .submenu{*/
/*    z-index: 1;*/
/*}*/
.submenu .list-wrapper > ul > li > a {
    font-size: 16px;
    line-height: 26px;
    display: block;
    letter-spacing: 0;
    background-color: #fff;
    transition: all 0.4s;
    padding: 5px var(--space-25);
}

#main-menu-bottom .submenu .list-wrapper > ul > li > a + div,
#main-menu .submenu .list-wrapper > ul > li > a + div {
    margin-top: 2px;
}

#main-menu-bottom .submenu .list-wrapper > ul > li > a > .box-title,
#main-menu .submenu .list-wrapper > ul > li > a > .box-title {
    font-weight: 500;
}

header .list-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 10px;
}

.submenu.col-2 .list-wrapper {
    margin-right: 20px;
}

header .list-wrapper li {
    display: block;
    break-before: avoid-column;
    width: 100%;
}

.submenu .shop-product-box::-webkit-scrollbar-thumb {
    background-color: var(--color-secondary);
    border-radius: 10px;
}

.submenu .shop-product-box::-webkit-scrollbar {
    width: 5px;
}

header .list-wrapper::-webkit-scrollbar {
    width: 5px;
}

.list-wrapper a {
    display: block;
}

.list-wrapper {
    max-height: calc(100vh - 200px);

    overflow: auto;
}


.submenu .shop-product-box {
    margin-right: -25%;
    display: block !important;
    align-self: center;
    max-height: calc(100vh - 200px);
    padding: 10px 0;
    overflow-y: auto;
    flex-shrink: 0;
    width: 50%;
}

.col-3 .list-wrapper {
    width: 100%;
}


#main-menu-bottom ul li .submenu:not(.one-column),
#main-menu ul li .submenu:not(.one-column) {
    width: 100%;
}

.submenu.col-2:after {
    content: "";
    position: absolute;
    right: -25%;
    width: 25%;
    top: 0;
    height: 100%;
    z-index: -1;
}

#main-menu-bottom ul li .submenu,
#main-menu ul li .submenu {
    display: flex;
    position: fixed;
    z-index: -1;
    top: 139px;
    -webkit-transition: all .4s cubic-bezier(0, 0, .22, 1.02);
    -moz-transition: all .4s cubic-bezier(0, 0, .22, 1.02);
    -ms-transition: all .4s cubic-bezier(0, 0, .22, 1.02);
    -o-transition: all .4s cubic-bezier(0, 0, .22, 1.02);
    transition: all .4s cubic-bezier(0, 0, .22, 1.02);
    -webkit-transform: translate3d(0, -150%, 0);
    -moz-transform: translate3d(0, -150%, 0);
    -ms-transform: translate3d(0, -150%, 0);
    -o-transform: translate3d(0, -150%, 0);
    transform: translate3d(0, -150%, 0);
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .5);
    border: 1px solid rgba(0, 0, 0, .1);
    max-width: 740px;
    padding: 15px;
    border-radius: 0 0 25px 25px;
}


#main-menu ul li .submenu a {
    width: 100%;
}

#main-menu ul li .submenu {
    top: 86px;
}

/*header.sticky #main-menu-bottom ul li .submenu,*/
/*header.sticky #main-menu ul li .submenu {*/
/*    top: 110px;*/
/*}*/

/*header.sticky #main-menu-bottom ul li .submenu.one-column,*/
/*header.sticky #main-menu ul li .submenu.one-column {*/
/*    top: 55px;*/
/*}*/

#main-menu-bottom ul li .submenu ul li,
#main-menu ul li .submenu ul li {
    height: initial;
}

#main-menu-bottom ul li ul,
#main-menu ul li ul {
    display: flex;
    flex-wrap: wrap;
}


#main-menu-bottom .submenu.col-3 > .list-wrapper > ul:not(:has(> li:nth-child(6))) > li {
    width: 33.333%;
}

#main-menu-bottom .submenu.col-3 > .list-wrapper > ul:not(:has(> li:nth-child(6))) {
    display: flex;
    flex-wrap: wrap;
}

#main-menu-bottom .submenu.col-3 > .list-wrapper > ul {
    column-count: 3;
}

#main-menu-bottom .submenu:not(.one-column) > .list-wrapper > ul {
}

#main-menu-bottom .submenu:not(.one-column) > .list-wrapper > ul > li > div {
    margin-bottom: 10px;
}

#main-menu-bottom .submenu:not(.one-column) > .list-wrapper > ul > li {
    margin: 0 -2px;
}

#main-menu-bottom .submenu.col-2 > .list-wrapper > ul {
    column-width: fill-available;
    column-count: 2;
}

#main-menu-bottom .submenu ul,
#main-menu .submenu ul {
    position: static;
    display: block;

}

#main-menu-bottom .submenu ul li ul li,
#main-menu .submenu ul li ul li {
    display: block !important;
    height: initial !important;
    width: 100% !important;
    border: none !important;
    margin-left: 0 !important;
}

#main-menu-bottom .submenu ul li ul li a,
#main-menu .submenu ul li ul li a {
    height: initial;
    font-weight: 400 !important;
    padding: 0 15px;
    font-size: 12px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    display: block;
}

#main-menu-bottom .submenu ul li ul li a:hover,
#main-menu .submenu ul li ul li a:hover {
    background: transparent;
}

#main-menu-bottom > ul > li.has-child > a::after,
#main-menu > ul > li.has-child > a::after {
    content: '\f107 ';
    font-family: FontAwesome;
    margin-left: var(--space-25);
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s;
}

@media screen and (min-width: 1140px) {
    #main-menu-bottom ul li.has-child:hover > a:after,
    #main-menu-bottom > ul > li.has-child > a:hover::after,
    #main-menu > ul > li.has-child > a:hover::after {
        color: var(--color-secondary);
    }
}

/*header.sticky #main-menu-bottom > ul > li,*/
/*header.sticky #main-menu > ul > li {*/
/*    padding: 15px 0;*/
/*}*/

#main-menu-bottom > ul {
    display: flex;
    gap: calc(var(--space-25) + var(--space-40) + 7px);
}

#main-menu > ul {
    display: flex;
    gap: var(--space-50);
}

.header-top {
    background-color: var(--color-primary);
}

.icon-set {
    padding: var(--space-25) calc(var(--space-25) + 10px);
    background-color: #ececec;
    border-radius: 5px;
    display: flex;
    gap: 10px;
    flex-grow: 1;
    flex-direction: column;
}

.icon-item .icon {
    color: var(--color-secondary);
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.shop-product-view-main-right-content {
    display: flex;
    height: 100%;
    gap: var(--space-50);
}

.news-category-list {
    flex-wrap: wrap;
}

.news-item .item-img img {
    width: 100%;
}

.shop-product-box .product-container .product-labels {
    right: 30px;
}

.form-element-select .form-control {
    height: 48px;
}

.product-slide-inside .mainSlider-image {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fancybox-show-thumbs .fancybox-bg {
    background: #ffffff;
}

.fancybox-is-open.fancybox-show-thumbs .fancybox-bg {
    opacity: 1;
}


.fancybox-thumbs {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 95px;
    padding: 10px 10px 5px 10px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.3);
}

.fancybox-show-thumbs .fancybox-inner {
    right: 0;
    bottom: 95px;
}

.fancybox-thumbs {
    background: rgba(0, 0, 0, 0.1) !important;
}


a.thumbnail.active, a.thumbnail:focus, a.thumbnail:hover {
    border-color: var(--color-secondary);
}

.sheet-change-wrapper {
    display: flex;
    justify-content: center;
}

.form-element.form-element-shop\\Filters\\Checkbox .shop-conf-color-option {
    width: 37px;
    height: 37px;
    margin: 3px;
}

.form-element.form-element-shop\\Filters\\Checkbox > .element-row {
    padding-right: 0;
    padding-left: 15px;
}

.form-element.form-element-shop\\Filters\\Checkbox .shop-conf-color-option > label {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #f2f2f2;
    cursor: pointer;
}


span.select-color {
    display: block;
    width: 20px;
    float: left;
    height: 20px;
    border: 1px solid #f2f2f2;
    margin-top: 2px;
    margin-right: 5px;
}

.select2-selection span.select-color {
    margin-top: 12px;
}

.section-img {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.section-img .text {
    font-size: 18px;
    line-height: 24px;
}

.shop-product-accessories-wrapper.accessories-upper {
    padding: 0;
    border: 0;
    width: 100%;
    margin-top: var(--space-50);
}

.shop-product-offer-box.has-accessories {
    justify-content: center;
}

.shop-product-accessories-wrapper.accessories-upper .extras-single {
    height: initial;
}

.shop-product-accessories-wrapper.accessories-upper .products-container.extras-box {
    height: initial;
}


.extras-single .shop-product-box.product-small .product-container .product-price {
    margin-bottom: 0;
}

.preview-cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    background: #fff
}

.preview-cover img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0)
}

.item-rating-star-container {
    display: flex;
    gap: 14px;
}

.article-content .article-contents {
    display: inline-block;
    width: 46%;
}

.opinion-gallery {
    display: flex;
}

.opinion-gallery-item {
    position: relative;
    margin: 3px;
}

.btn-file span.text {
    margin-top: 0;
}

.product-section-image {
    padding-top: 25px;
    padding-bottom: 25px;
}

.product-section-image img {
    display: block;
    max-width: 100%;
}

.payment-box-counter {
    font-size: 18px;
    font-weight: 700;
}

.payment-box .text {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.payment-box .btn {
    width: initial !important;
}

.payment-caption {
    color: var(--color-secondary);
    font-weight: 500;
    margin-bottom: 15px;
}

.payment-logo {
    width: 160px;
    height: 160px;
    padding: 15px;
    flex-shrink: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-logo img {
    display: block;
    max-width: 100%;
}

.payment-container {
    display: flex;
    justify-content: center;
}

.payment-container-inner {
    padding: 30px;
    border: 2px solid #ccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.payment-box {
    max-width: 400px;
}

.salons-fancybox .fancybox-bg {
    background-color: rgba(0, 0, 0, 0.8);
}

.salons-availability-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.salons-availability-teaser {
    margin-bottom: 15px;
}

a.salons-availability-item {
    transition: color 0.3s;
}

a.salons-availability-item:hover {
    color: #009b00;
}

.salons-availability-item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.salons-availability-item-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.salons-availability-item-icon {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    border-radius: 50%;
}

.salons-availability-item.available .salons-availability-item-icon {
    border-color: #009b00;
    color: #009b00;
}

.salons-availability-item.not-available .salons-availability-item-icon {
    border-color: #be0202;
    color: #be0202;
}

.salons-availability-item .salons-availability-item-status {
    color: #009b00;
}

.salons-availability-item.not-available .salons-availability-item-status {
    color: #be0202;
}

.salons-availability-item-icon i {
    font-size: 22px;
}

.salons-availability-item + .salons-availability-item {
    margin-top: 20px;
}


.salons-availability-item-name > span {
    text-transform: uppercase;
    font-weight: 500;
}

#salons-availability {
    min-width: 900px;
    padding: 40px;
}

.salons-availability-header {
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.salons-availability-item-right {
    display: flex;
    align-items: center;
    gap: var(--space-50);
    width: 15%;
}

.salons-fancybox .fancybox-close-small {
    top: 8px;
    right: 8px;
}

.shop-product-variant-names {
    color: #000;

}

.shop-product-variants-body .col-sm-10.shop-product-variant-element .shop-variant-options-panel .shop-variant-option {
    width: 16.6666%;
    margin: 0;
    padding: 5px;
}

.shop-product-variants-body .col-sm-10.shop-product-variant-element .shop-variant-options-panel .shop-variant-option label {
    background-color: transparent;
    padding: 0;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    color: #000 !important;
    flex-direction: column;
    justify-content: flex-start;
}

.shop-product-variants-body .col-sm-10.shop-product-variant-element .shop-variant-options-panel .shop-variant-option-image {
    width: 100%;
}

.shop-product-variants-body .col-sm-10.shop-product-variant-element .shop-variant-options-panel .shop-option-preview-square {
    margin-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100% !important;
    justify-content: center;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-size: cover !important;
    aspect-ratio: 1.3 / 1;
    height: initial !important;
    margin-bottom: 6px;
}

.shop-product-variants-body .col-sm-10.shop-product-variant-element select,
.shop-product-variants-body .col-sm-10.shop-product-variant-element .select2 {
    max-width: 400px;
}

.shop-product-variants-body .col-sm-10.shop-product-variant-element .shop-variant-options-panel .select2-container .shop-option-preview-square {
    width: 44px !important;
    border: 0 !important;
    border-radius: 0 !important;
    margin-bottom: 0;
    top: 5px;
    position: relative;
}

.shop-product-variants-body .col-sm-10.shop-product-variant-element .shop-variant-options-panel .select2-results__option .shop-option-preview-square {
    top: 0;
}

.shop-product-variants-body .col-sm-10.shop-product-variant-element .shop-variant-options-panel .shop-variant-option:hover .shop-option-preview-square {
    border-color: #000;
}

.shop-configurator-bed-size-btn-toggle,
.shop-configurator-mattress-btn-toggle {
    height: 26px;
    font-size: 14px;
    border-color: rgba(0, 0, 0, 0.1);
}

.shop-product-variants-body .col-sm-8.shop-product-variant-element .shop-variant-options-panel .shop-variant-option.active label {
    color: #000;
}

.shop-product-variants-body .col-sm-8.shop-product-variant-element .shop-variant-options-panel .shop-variant-option::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    width: 22px;
    height: 22px;
    border: 2px solid #424242;
    border-radius: 50%;
    background-color: #fff;
}

.shop-product-variants-body .col-sm-8.shop-product-variant-element .shop-variant-options-panel .shop-variant-option.active::before {
    background-size: cover;
    border: 0;
}

.shop-product-variants-body .col-sm-8.shop-product-variant-element .shop-variant-options-panel .shop-variant-option:hover::before {
    border-color: var(--color-secondary);
}

.fancybox-container {
    z-index: 9999999;
}

.shop-configurator-cover {
    display: flex;
}

.shop-configurator-cover-image img {
    display: block;
    max-width: 100%;
}

.shop-configurator-cover-image {
    width: 40%;
    padding-right: var(--space-60);

}

.shop-configurator-cover-image-inner {
    position: relative;
}

.shop-configurator-cover-right {
    width: 60%;
}

.shop-configurator-cover + .shop-configurator-cover {
    margin-top: 40px;
}

.shop-configurator-cover .text {
    font-size: 14px;
    letter-spacing: 0.7px;
}

.shop-configurator-covers-container {
    padding: 30px 0;
}

.shop-configurator-cover-image .caption {
    font-size: 14px;
    line-height: 2.1428;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    margin-top: var(--space-25);
}

.shop-configurator.shop-configurator-cover-popup .configurator-container {
    width: 1050px !important;
    z-index: 9999 !important;
}

.shop-configurator.shop-configurator-bed-size-popup .configurator-body,
.shop-configurator.shop-configurator-cover-popup .configurator-body {
    overflow-y: auto;
    overflow-x: hidden;
    bottom: 0 !important;
    top: 96px !important;
}

.shop-configurator-cover-image-inner .sheet-video {
    position: absolute;
    inset: 0;
}

.is-cover-selected .btn {
    background-color: #000 !important;
    color: #fff !important;
    cursor: text;
    margin-top: var(--space-25);
}

.product-section-image.no-params .product-section-image-inner {
    width: 71%;
    margin: 0 auto;
}

.shop-product-param-size img {
    display: block;
    max-width: 100%;
}

.product-param-size-section .section-title {
    text-align: left;
    margin-bottom: calc(var(--space-25) + 5px);
}

.product-param-size-wrapper-left {
    width: 42%;
}

.product-param-size-wrapper-right {
    width: 58%;
}

.product-section-image-inner.flex {
    display: flex;
    gap: 60px;
}

.product-section-image-inner .product-section-image {
    padding: 0 !important;
    max-width: 50%;
    flex-grow: 1;
}

.product-section-image-inner .product-section-image iframe {
    width: 100%;
    aspect-ratio: 582/465;
}

.product-section-image-inner .iframe-video {
    aspect-ratio: 582/465;
}

.product-section-image-inner.flex.image-right {
    flex-direction: row-reverse;
}


.product-section-description iframe {
    aspect-ratio: 16 / 9;
    height: initial !important;
}

.product-section-image-inner.flex .product-section-description {
    width: calc(50% - 30px);
}

.shop-product-bed-description-section {
    background-color: #fff;
}

.shop-product-bed-description-section .product-param-size-section {
    margin-bottom: 0;
}

.shop-product-bed-description-section .product-param-size-section {
    margin-top: var(--space-60);
}

.shop-product-bed-description-section.no-params .shop-product-bed-description {
    width: 71%;
    margin: 0 auto;
}

.shop-method-price-value {
    font-weight: 700;
    color: #000;
    font-size: 13px;
}

.modal-backdrop {
    z-index: 10001 !important;
}

.modal {
    z-index: 10002 !important;
}

.header-top .user-nav-item-logout-wrapper {
    display: none;
}

.user-nav-item-logout-wrapper .icon {
    width: 34px !important;
    height: 34px !important;
    margin: -9px 6px -9px -4px !important;
}

.salons-sections .product-section-image:last-of-type {
    margin-bottom: var(--space-60);
}

.tile-item iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 536/700;
}

section.tiles .tiles .tile-item.halfSize iframe {
    aspect-ratio: 536/342;
}

.iframe-video {
    position: relative;
    aspect-ratio: 536/700;
    width: 100%;
}

.aboutUs-inner .iframe-video {
    aspect-ratio: initial !important;
    height: 100%;
}

.slide-item .iframe-video {
    aspect-ratio: initial !important;
    height: 100%;
    border-radius: 16px;
    overflow: hidden !important;
}

.bananer-item .iframe-video {
    aspect-ratio: 672 / 289 !important;
    height: 100%;
    border-radius: 16px;
    overflow: hidden !important;
}

.iframe-background-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;

}

section.tiles .tiles .tile-item.halfSize .iframe-video {
    aspect-ratio: 536/342;
}

.iframe-background {
    pointer-events: none;
    width: 300% !important;
    height: 100%;
    margin-left: -100%;
    aspect-ratio: initial !important;
}

.iframe-background-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*faq*/
.faq-item {
    border: 1px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.1);
    margin-top: 0 !important;
    border-radius: var(--radius-deafult) !important;
    transition: border-color 0.4s;
}

.faq-item:last-child {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.faq-heading .btn:focus,
.faq-heading .btn:hover {
    background-color: var(--color-secondary);
    color: #fff;
}

.faq-heading .btn:not(.collapsed) {
    transform: rotate(180deg);
}

.faq-heading .btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--color-secondary);
    transition: background-color 0.4s, transform 0.4s;
    flex-shrink: 0;
}

.faq-item.active .faq-heading {
    color: var(--color-secondary);
}

.faq-item.active {
    border-color: var(--color-secondary);
}

.faq-text .text-inner {
    padding: 0 calc(var(--space-40) + 5px) var(--space-50) calc(var(--space-40) + 5px);
    font-size: 14px;
}

.faq-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    gap: var(--space-25);
    text-transform: uppercase;
    padding: calc(var(--space-25) + 5px) calc(var(--space-40) + 5px);
}

/*news*/
.news-category a.active,
.news-category a:hover {
    border-color: var(--color-primary) !important;
    background-color: var(--color-primary) !important;
    color: #fff !important;
}

.news-category {
    flex-grow: 1;
    display: flex;
    max-width: 260px;
}

.news-category a {
    border: 2px solid var(--color-secondary);
    background-color: #fff;
    color: var(--color-primary);
    text-transform: uppercase;
    flex-grow: 1;
    font-size: 16px;
}

.news-categories {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: var(--space-60) 0;
    flex-wrap: wrap;
}

.news-item.itemBig {
    width: 50%;
    padding: var(--space-25);
}

.itemBig .item-inner img {
    display: block;
    max-width: 100%;
}

.itemBig .item-inner {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: 792px;
}

.itemBig .item-inner:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(29, 29, 27, 1) 0%, rgba(29, 29, 27, 0) 100%);
}

.itemBig .news-content-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.news-item .text {
    font-size: 14px;
    line-height: 30px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    margin-top: 20px;
    flex-shrink: 0;
}

.news-item .item-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3333em;
    transition: .2s all;
}

.item-inner .text {
    font-size: 14px;

}

.itemBig .news-content {
    position: absolute;
    top: 50%;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    color: #fff;
    padding: var(--space-50);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.news-list {
    margin: calc(-1 * var(--space-25));
    display: flex;
    flex-wrap: wrap;
}

.news-list .news-item .labels .cat-label {
    padding: 3px 10px 3px 5px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    overflow: hidden;
    border-radius: var(--radius-deafult);
    font-size: 12px;
    text-transform: uppercase;

}

.news-list .news-item .labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #fff;
}

/*.news-item {*/
/*    width: 25%;*/
/*    padding: var(--space-25);*/
/*}*/

.news-item .item-inner .news-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.news-item .item-inner .news-image {
    display: block;
    margin-bottom: var(--space-40);
    border-radius: 25px;
    overflow: hidden;
}

.news-item .item-inner time {
    margin-bottom: 15px;
    display: block;
}

.news-item .btn {
    margin-top: var(--space-25);
}

.news-item .item-inner {
    display: block;
    position: relative;
}

@media screen and (min-width: 1140px) {
    .news-item .item-inner:hover .item-title {
        color: var(--color-secondary);
    }

    .news-item .item-inner:hover .news-image img {
        transform: scale(1.1);
    }
}

.news-item:not(.itemBig) .labels {
    position: absolute;
    left: 10px;
    top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    z-index: 1;
}


.contact-page-top {
    display: flex;
    gap: calc(var(--space-50) * 2);
    padding-bottom: calc(var(--space-50) * 4);
    max-width: 57.5%;
}

.contact-page-top .text.description strong,
.contact-page-top .section-title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 800;
    margin-bottom: var(--space-25);
    text-align: left;
}

.contact-page-top .address .icon {
    width: 18px;
    margin-right: 20px;
    color: var(--color-secondary);
}


.contact-page-top .address {
    display: flex;
    margin-bottom: var(--space-25);
}

.contact-page-top .info-wrapper ul li a {
    font-size: calc(var(--font-30) + 2px);
    font-weight: 700;
    transition: .2s all;
}

.contact-page-top .info-wrapper > ul + ul {
    margin-bottom: var(--space-50);
}

.contact-page-top .info-wrapper ul li {
    display: flex;
    align-items: center;
    gap: var(--space-25);
    padding: 5px 0;
}

.contact-page-top .info-wrapper ul li .icon {
    border: 2px solid var(--color-secondary);
    background-color: #fff;
    color: var(--color-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: .2s all;
    flex-shrink: 0;
    padding: 10px;
}

@media screen and (min-width: 1140px) {
    .contact-page-top .info-wrapper ul li a:hover {
        color: var(--color-secondary);
    }
}

.contact-form-wrapper:before {
    content: '';
    background-color: #736a64;
    opacity: 0.6;
    inset: 0;
    position: absolute;
}

.contact-form-wrapper:after {
    content: '';
    background-color: #000;
    opacity: 0.05;
    width: 1420px;
    height: 920px;
    right: -195px;
    top: -75px;
    z-index: -1;
    position: absolute;
}

.contact-form-wrapper {
    padding: var(--space-60) calc((var(--space-60) * 2) + 15px);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.contact-form-wrapper .contact-form-container .contact-form-title {
    font-weight: 800;
    font-size: var(--font-48);
}

.contact-form-wrapper .contact-form-container {
    max-width: 950px;
    color: #fff;
    position: relative;
}

.contact-form-wrapper .contact-form-container .btn.btn-primary {
    border-color: #fff;
    background-color: transparent;
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .contact-form-wrapper .contact-form-container .btn.btn-primary:hover {
        background-color: #fff;
        color: var(--color-primary);
    }
}

.contact-form-wrapper form .consent-row .checkboxradio-container label {
    color: #fff;
}

.contact-form-wrapper form .form-element-name {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
}

.form .form-required-mark {
    color: var(--color-secondary);
}

.contact-form-wrapper form .form-control:not(.captcha-image-wrapper) {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 0;
    color: var(--color-primary);
}

.form .checkboxradio-container {
    padding-right: 0;
}

.contact-page {
    position: relative;
}

.contact-page .floating-person {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42.5%;
}

.contact-page .floating-person img {
    display: block;
    max-width: 100%;
}

.icons-wrapper .icon-item .name {
    line-height: var(--font-48);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-top: 15px;
}

.icons-wrapper .icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icons-wrapper .icon-item .img-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.icons-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: var(--space-50) 0;
    gap: var(--space-40) calc(var(--space-50) + var(--space-40));
}

.categories-section .section-title {
    font-weight: 800;
    font-size: var(--font-48);
    text-align: center;
}

.categories-section .categories-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(var(--space-40) * 2);
}

.categories-section .categories-wrapper .category-item .item-inner svg *,
.categories-section .categories-wrapper .category-item .item-inner svg {
    transition: all 0.4s;
}

.categories-section .categories-wrapper .category-item .item-inner:hover svg *[stroke] {
    stroke: var(--color-secondary);
}

.categories-section .categories-wrapper .category-item .item-inner:hover svg *[fill] {
    fill: var(--color-secondary);
}

.categories-section .categories-wrapper .category-item .item-inner:hover .name {
    color: var(--color-secondary);
}

.categories-section .categories-wrapper .category-item .name {
    line-height: var(--font-48);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin-top: 15px;
    transition: all 0.4s;
}

.categories-section .categories-wrapper .category-item .img-wrapper {
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons-section .icons-bg .icon-item .name {
    max-width: 160px;
    font-size: 18px;
    line-height: var(--font-24);
    font-weight: 300;
}

.icons-section .icons-bg .icon-item .img-wrapper {
    border: none !important;
}

.icons-section .icons-wrapper {
    padding: 0;
}

.icons-section .section-title {
    font-weight: 800;
    font-size: var(--font-48);
    text-align: center;
}

.icons-section {
    padding: var(--space-50) 0;
    background-color: rgba(0, 0, 0, 0.05);
}

.favorite-view .basket-table {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.basket-box-btn .caption-basket {
    display: none;
}

.basket-box-btn .caption {
    padding-right: 0;
    min-width: 83px;
    padding-left: 10px;
    font-size: 15px;
}

.basket-icon {
    width: 32px;
    height: 26px;
    color: #fff;
}


.basket-box-btn .caption-value {
    color: #fff;
    transition: all .4s;
}

@media screen and (min-width: 1140px) {
    .basket-box.hovered .basket-box-btn .caption-value {
        color: var(--color-secondary);
    }
}

@media screen and (min-width: 901px) {
    .rwdTop-links {
        display: none;
    }
}

footer {
    position: relative;
    z-index: 0;
}

footer .footer-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

footer .footer-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.copyright-undicom a, .copyright-undicom a:visited {
    margin-left: 0;
}

.footer-top {
    display: flex;
    padding-top: var(--space-50);
    justify-content: flex-end;
}

.footer-top-wrapper {
    width: 28%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-40);
}

.footer-top-wrapper .text {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.footer-top-right {
    display: flex;
    gap: calc(var(--space-60) + 3px);
    align-items: center;
}

.footer-top-element {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    font-weight: 700;
    transition: color .2s;
}

.footer-top-element + .footer-top-element {
    margin-top: 10px;
}

.footer-top-element-link:hover,
.footer-top-element-link:focus {
    color: #fff;
}

.footer-top-element .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    background-color: transparent;
    transition: background-color .2s;
    flex-shrink: 0;
}

.footer-top-element .icon svg {
    color: var(--color-secondary);
}

@media screen and (min-width: 1140px) {
    .footer-top-element-link:hover {
        color: var(--color-secondary);
    }

    .footer-top-element-link:hover .icon {
        background-color: var(--color-secondary);
    }

    .footer-top-element-link:hover .icon svg {
        color: #fff;
    }
}

.footer-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-images .img-item {
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 150px;
    min-height: 60px;
}

.product-price .price-gross {
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 5px;
}

.price.price-old {
    color: var(--color-primary);
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
}

.product-price .price-new {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
}

.history-price .icon {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: #fff;
    transition: background-color .2s;
}

@media screen and (min-width: 1140px) {
    .history-price .icon:hover {
        background-color: var(--color-primary);
    }
}

.history-price .icon svg {
    display: block;
    max-width: 100%;
}

.history-price .icon svg path {
    color: inherit;
}

.history-price-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-from {
    font-size: 24px;
    font-weight: 800;
}

.input-group-addon {
    border-radius: 10px;
}

.slider-bottom {
    display: flex;
    justify-content: flex-end;
    gap: calc(2 * var(--space-50));
    position: absolute;
    bottom: 0;
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
    margin-right: auto;
    max-width: 980px;
    width: 100%;
    padding-bottom: var(--space-50);
    align-items: flex-end;
}

.slider-pagination ul {
    display: flex;
    gap: calc(vaR(--space-25) + 5px);
}

.slider-pagination {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.slider-pagination .btn {
    pointer-events: auto;
}

.slider-pagination-btn {
    width: 9px;
    height: 9px;
    padding: 0;
    margin: 0;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: .1s all;
    background-color: transparent;
}

@media screen and (min-width: 1140px) {
    .slider-pagination-btn:hover {
        background-color: #fff;
    }
}

.slider-pagination ul li {
    display: flex;
    align-items: center;
}

.slider-pagination ul li.slick-active .slider-pagination-btn {
    width: 14px;
    height: 14px;
    background-color: #fff;
}

.slider-logo {
    width: 33%;
}

.slider-logo img {
    display: block;
    max-width: 100%;
}

.aboutUs-middle-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    padding: var(--space-60) calc(2 * var(--space-50));
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    top: 25%;
    right: 0;
    text-align: right;
    max-width: 480px;
    color: #fff;
}

.aboutUs-middle-content .title1 {
    font-size: calc(var(--font-30) + 2px);
    font-weight: 700;
    text-shadow: 12px 20px 20px rgba(84, 84, 84, .3);
}

.aboutUs-middle:before {
    position: absolute;
    content: "";
    inset: 0;
    background-color: #736a64;
    opacity: .3;
}

.aboutUs-middle-content .title2 {
    font-size: 15px;
    line-height: 2em;
    letter-spacing: 0.05em;
}

.aboutUs-middle-content .btn {
    margin-top: var(--space-25);
}

.aboutUs-left .collection-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: calc(-1 * var(--space-25)) calc((-1 * var(--space-50)) + 3px);
}

.aboutUs-left .collection-item {
    display: flex;
    flex-direction: column;
    gap: 17px;
    padding: var(--space-25) calc((1 * var(--space-50)) - 3px);
    width: 33.3333%;
    align-items: center;
}

.aboutUs-left .collection-item .icon {
    width: 100%;
    max-width: 120px;
    aspect-ratio: 1;
    padding: calc(var(--space-25));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
}

.aboutUs-left .collection-item .icon > * {
    display: block;
    max-width: 100%;
}

.aboutUs-left .collection-item .caption {
    font-size: 14px;
    line-height: 17px;
}

.aboutUs-see-more {
    align-self: flex-end;
}

.aboutUs-text-top {
    align-self: flex-end;
}

.aboutUs-text-top .text {
    text-align: right;
}

.aboutUs-text-top .text {
    font-size: var(--font-32);
    line-height: 1.2;
    letter-spacing: 0.03em;
}

.aboutUs-text-top .text strong {
    font-size: calc(var(--font-48) + var(--font-24));
    line-height: 1.3em;
}

.aboutUs-right-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-40);
}

.aboutUs-right-title {
    font-size: var(--font-32);
    font-weight: 700;
    line-height: 1.2em;
    color: var(--color-primary);
}

.arrows {
    display: flex;
    align-items: center;
    gap: 13px;
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
    color: var(--color-primary);
    border-radius: 10px;
    transition: .2s all;
}

.btn-arrow.btn-arrow-white {
    border: 2px solid #fff;
    color: #fff;
}

.btn-arrow svg {
    display: block;
    max-width: 100%;
}

.btn-arrow svg path {
    fill: currentColor;
}

@media screen and (min-width: 1140px) {
    .btn-arrow:hover {
        background-color: var(--color-primary);
        color: #fff;
    }
    .btn-arrow.btn-arrow-white:hover{
        background-color: #fff;
        color: var(--color-primary);
    }
    .btn-arrow:hover * {
        opacity: 1;
    }
}

.recommendedSlide-img {
    flex-shrink: 0;
    width: 100%;
}

.recommendedSlide-img img {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 25px;
}

.recommendedSlide {
    padding: 20px 0;
}

.recommendedSlide-inner {
    display: flex;
    flex-direction: column;
    transition: .2s all;
}

.recommendedSlide-inner .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recommendedSlide-inner .caption {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3333em;
    transition: all .2s linear;
    margin-top: 15px;
}

.recommendedSlide-inner .caption2 {
    font-size: 14px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommendedSlide-inner .icon {
    width: 38px;
    height: 38px;
    border: 2px solid var(--color-secondary);
    margin-left: auto;
    border-radius: 50%;
    transition: .2s all;
    color: var(--color-primary);
    opacity: 0;
}

@media screen and (min-width: 1140px) {
    .recommendedSlide-inner:hover .caption {
        color: var(--color-secondary);
    }

    .recommendedSlide-inner:hover .icon {
        opacity: 1;
    }
}

.recommendedSlider-container {
    margin: -20px 0;
}

.main-bananer {
    position: relative;
    padding: calc((2 * var(--space-60) - 5px)) 0;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    z-index: 0;
    margin: calc(var(--space-60)) 0;
}

.main-bananer:after {
    position: absolute;
    content: "";
    inset: 0;
    background-color: #000;
    opacity: .2;
    z-index: -1;
}

.main-bananer-title {
    font-size: calc(2 * var(--font-36));
    font-weight: 700;
    letter-spacing: 0.02em;
}

.main-bananer-inner {
    display: flex;
    gap: var(--space-25);
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.main-bananer-text.text {
    font-size: var(--font-30);
    line-height: 1.2em;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.main-bananer-btn {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-50);
    border-radius: 15px;
    border: 2px solid var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
    padding: 10px var(--space-40);
    transition: .2s all;
    box-shadow: 0px 0px 50px 10px #fff;
}

.main-bananer-btn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.main-bananer-btn .icon svg {
    display: block;
}

.main-bananer-btn .icon svg path {
    fill: var(--color-secondary) !important;
}

.main-bananer-btn .caption {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

@media screen and (min-width: 1140px) {
    .main-bananer-btn:hover {
        background-color: #fff;
        border-color: var(--color-secondary);
        color: var(--color-secondary);
    }
}

.main-icons-inner .section-heading {
    margin-bottom: var(--space-60);
}

.main-icons-list {
    display: flex;
    flex-wrap: wrap;
    margin: calc(var(--space-25) * -1) 0;
    justify-content: center;
}

.main-icons-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-25);
    width: 20%;
    padding: var(--space-25) var(--space-50);
}

.main-icons-item .icon {
    width: 120px;
    height: 120px;
    padding: calc(var(--space-25) + 5px);
    border-radius: 50%;
    border: 3px solid var(--color-secondary);
    color: var(--color-primary);
}

.main-icons-item .caption {
    font-size: 18px;
    line-height: 1.3em;
    max-width: 150px;
    text-align: center;
}

.main-icons {
    margin: var(--space-60) 0;
}

.btn-arrow-secondary {
    background-color: #fff;
    border-color: var(--color-secondary);
}

@media screen and (min-width: 1140px) {
    .btn-arrow-secondary:hover {
        color: #fff;
        background-color: var(--color-secondary);
        border-color: var(--color-secondary);
    }

    .btn-arrow-secondary:hover .icon svg > * {
        opacity: 1;
    }
}

.tilesSlider-slide {
    padding: 15px;
}

.tilesSlider-container {
    margin: -15px;
}

.shop-product-box-horizontal {
    padding: calc(var(--space-25) - 10px);
    height: 100%;
}

.shop-product-box-horizontal .product-content-bottom {
    display: flex;
    align-items: flex-start;
    padding-top: var(--space-25);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.product-list-horizontal {
    margin: calc(-1 * (var(--space-25) - 10px));
}

.shop-product-box-horizontal .product-container {
    position: relative;
    display: flex;
    width: 100%;
    background-color: #fff;
    height: 100%;
    transition: .2s all;
    border-radius: 25px;
    overflow: hidden;
}

.shop-product-box-horizontal .product-container:after {
    position: absolute;
    content: "";
    inset: 0;
    border: 2px solid var(--color-secondary);
    transition: .2s all;
    opacity: 0;
    border-radius: 25px;
    pointer-events: none;
}

@media screen and (min-width: 1140px) {
    .shop-product-box-horizontal .product-container:hover:after {
        opacity: 1;
    }
}

.shop-product-box-horizontal .product-container .product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-horizontal {
    width: 100%;
    height: 100%;
}

.product-content-floating {
    position: absolute;
    width: 100% !important;
    bottom: 0;
    padding: calc(var(--space-25) + 5px);
    padding-bottom: calc(var(--space-25) + 10px);
    color: #fff;
}

.product-content-floating .product-content-middle {
    display: none;
}

.product-content-floating .product-content-bottom {
    display: none;
}

.product-image-horizontal img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-product-box-horizontal .product-container .product-image {
    width: 55.4%;
    max-width: 450px;
}

.shop-product-box-horizontal .product-container .product-content {
    width: 44.6%;
    padding: calc(var(--space-25) - 5px);
    padding-top: var(--space-25);
    gap: calc(var(--space-25) - 10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shop-product-box-horizontal .product-content-top {
    flex-grow: 0;
    padding-right: 40px;
}

.shop-product-box-horizontal .product-content-top .product-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3333em;
}

.shop-product-box-horizontal .product-content-top .product-materials {
    font-size: 14px;
}

.shop-product-box-horizontal .product-container .item-ration-label {
    display: none;
}

.product-list-horizontal .slick-slide {
    height: 100%;
}

.product-list-horizontal .slick-slide > div {
    height: 33.33%;
}

header.sticky #main-menu-bottom > ul > li,
header.sticky #main-menu > ul > li {
    padding: 12px 0;
}

header.sticky .header-top-row {
    padding: 9px 0;
}

header.sticky #main-menu-bottom ul li .submenu,
header.sticky #main-menu ul li .submenu {
    top: 105px;
}

header.sticky #main-menu-bottom .submenu.one-column,
header.sticky #main-menu .submenu.one-column {
    top: 43px;
}

.header-top-btn.btn-info .caption .line-1 {
    transition: .2s all;
    height: 17px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.header-top-btn.btn-info .caption {
    transition: .2s all;
}

header.sticky .header-top-btn.btn-info .caption .line-1 {
    opacity: 0;
    transition: .2s all;
    height: 0;
}

.logo {
    transition: .2s all;
}

header.sticky .logo {
    max-width: 150px;
}

section.search {
    position: relative;
    padding: var(--space-40) 0;
}

section.search .bg-container {
    pointer-events: none;
}

section.search .bg-container img {
    position: absolute;
    inset: 0;
    z-index: -2;
    transition: .5s all;
}

section.search .bg-container:after {
    position: absolute;
    content: "";
    inset: 0;
    z-index: -1;
    background-color: #736A64;
    opacity: .3;
}

section.search .bg-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.search .search-inner .shop-product-box .product-container {
    -webkit-box-shadow: 9.5px 16.45px 32px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 9.5px 16.45px 32px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 9.5px 16.45px 32px 0px rgba(0, 0, 0, 0.15);
}

section.search .search-inner {
    display: flex;
    justify-content: space-between;
    color: #fff;
    position: relative;
    z-index: 10;
}

section.search .search-left {
    margin-bottom: calc(-1 * (166px + (var(--space-60) + 10px)));
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) - 5px);
    width: 66%;
}

section.search .search-left .nav-tabs {
    border: none;
}

section.search .search-left .nav-tabs > li:not(:last-child) {
    margin-right: var(--space-40);
}

section.search .search-left .nav-tabs > li > a {
    margin-right: 0;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 18px;
    line-height: 48px;
}

section.search .search-left .nav-tabs > li > a:hover {
    text-decoration: underline;
    color: #fff;
    background-color: transparent;
}

section.search .search-left .nav-tabs > li.active > a {
    color: unset;
    background-color: unset;
    text-decoration: underline;
}

section.search .search-right form {
    width: 100%;
}

section.search .search-right {
    padding-left: calc(2 * var(--space-50));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-25);
    flex-grow: 1;
}

.search-right-bottom img {
    display: block;
    max-width: 100%;
}

.search-right-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;

}

.search-right-top-title {
    font-size: clamp(30px, 3vw, 58px);
    font-weight: 700;
    text-align: left;
}

.search-right-top-title-2 {
    max-width: 380px;
    font-size: clamp(18px, 1.6vw, 30px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-align: left;
}

section.search .search-right .product-search-form .form-elements {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 0;
}

section.search .product-search-form .form-elements .form-group {
    margin-bottom: 0;
}

section.search .product-search-form .form-elements .form-element-container {
    padding-bottom: 0;
    position: relative;
}

section.search .product-search-form .form-elements .form-element-container .form-element-name {
    position: absolute;
    color: #545454;
    font-size: 14px;
    line-height: 48px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 1;
    top: 0;
    left: 0;
    padding-left: 14px;
    margin-bottom: 0;
    overflow: hidden;
    max-width: 155px;
    white-space: nowrap;
    border-radius: 10px;
    width: 100%;
    pointer-events: none;
}

section.search .product-search-form .form-elements .form-element-container:has(.form-range) .form-element-name {
    background-color: #fff;
    max-width: unset;
    width: 33.33%;
}

section.search .select2-container--default .select2-selection--multiple,
section.search .select2-container .select2-selection--single {
    border: 2px solid;
    border-color: #fff !important;
    border-radius: 10px;
}

@media screen and (min-width: 1140px) {
    section.search .select2-container--default .select2-selection--multiple:hover,
    section.search .select2-container .select2-selection--single:hover {
        border-color: var(--color-secondary) !important;
    }
}

section.search .product-search-form .form-elements .form-element-container .form-element-select .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 165px;
    color: var(--color-secondary);
}

section.search .product-search-form .form-elements .form-element-container .form-element-select .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #545454;
}

section.search .product-search-form .form-elements .form-element-container .form-element-select .select2-container--default .select2-selection--single .select2-selection__arrow {
    color: #545454;
}

section.search .product-search-form .form-elements .form-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.search .shop-product-box .product-box-content {
    padding: 15px;
}

section.search .shop-product-box .product-container .product-bottom {
    padding-top: var(--space-25);
}

section.search .product-search-form .form-elements .form-button .btn-filter {
    margin-top: 10px;
    min-height: 56px;
    border: 2px solid var(--color-primary);
    display: flex;
    gap: calc(var(--space-25) - 5px);
    border-radius: 10px;
    min-width: 250px;
    font-size: 18px;
    letter-spacing: 0.05em;
    box-shadow: 0px 0px 50px 10px #fff;
}

section.search .product-search-form .form-elements .form-button .btn-filter .icon svg {
    color: var(--color-secondary);
}

@media screen and (min-width: 1140px) {
    section.search .product-search-form .form-elements .form-button .btn-filter:hover {
        color: var(--color-secondary);
        border-color: var(--color-secondary);
    }
}

section.search .product-search-form .form-elements .form-element-container .form-range {
    height: unset;
    padding: 0;
    margin-bottom: 0;
    justify-content: flex-end;
}

section.search .product-search-form .form-elements .form-element-container .form-range .col {
    width: 33.33%;
    padding-left: 9px;
}

section.search .product-search-form .form-elements .form-element-container .form-range .col .form-control {
    border-width: 2px;
    border-color: #fff;
    border-radius: 10px;
    color: var(--color-secondary);
}

@media screen and (min-width: 1140px) {
    section.search .product-search-form .form-elements .form-element-container .form-range .col .form-control:hover {
        border-color: var(--color-secondary);
    }
}

.search-product-list {
    display: flex;
    flex-wrap: wrap;
    margin: calc(-1 * (var(--space-25) - 12px));
}

.search-product-list .shop-product-box {
    width: 33.333%;
    padding: calc(var(--space-25) - 12px);
    color: var(--color-primary);
}

section.search .bg-container img:not(.active) {
    opacity: 0;
}

.recommendedNews.news-item-list {
    margin-bottom: 0;
}

.contact-form-wrapper .consent-all {
    color: #fff;
}

.article-content .news-category-list .category-btn {
    color: #fff;
}

.history-price {
    position: relative;
    z-index: 1;
}

.history-price-wrapper .tooltip-inner {
    background: #fff;
    color: var(--color-primary);
    padding: 18px 8px;
    text-align: center;
    font-size: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    max-width: 160px;
}

.shop-product-box .btn-circle .icon svg {
    width: 100%;
    height: 100%;
}

.shop-product-box .btn-circle .icon {
    width: 27px;
    height: 27px;
}


.shop-product-box .btn-circle {
    width: 50px;
    height: 50px;
    padding: 10px 10px 10px 8px;
}

.shop-product-box .btn-circle.btn-secondary:hover {
    color: var(--color-secondary);
}

.shop-product-box .btn-circle.btn-white {
    border: 2px solid var(--color-secondary);
}

.shop-product-box .btn-circle.btn-white:hover {
    background: var(--color-secondary);
    color: #fff;
}

.shop-product-box-horizontal .product-container .product-title {
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

.shop-product-box-horizontal .product-container .title-dark .product-materials,
.shop-product-box-horizontal .product-container .title-dark .product-title {
    color: var(--color-primary);
}

.slider-bottom {
    pointer-events: none;
}


.point {
    position: absolute;
    border-radius: 50%;
    z-index: 3;
    cursor: pointer;
    transition: all .2s linear;
}

.point.active {
    z-index: 6;
}

.point-inner {
    background-color: #fff;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all .2s linear;
}


.point:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.point:hover:after,
.point:hover .point-inner:after {
    background-color: rgba(4, 170, 47, 0.5);
}

.point-inner:after {
    pointer-events: none;
}

.point.active:after,
.point.active .point-inner:after {
    background-color: rgba(4, 170, 47, 0.5);
}

.point.active .point-inner {
    background-color: #fff;
}

.shop-configurator-tooltip .price-box {
    padding-bottom: 0 !important;
}

.point:after {
    content: '';
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(4, 170, 47, 0.5);
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all .2s linear;
    animation: pointAnimation 2.5s ease-in-out infinite;
}


.point-inner:after {
    content: '';
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background-color: rgba(4, 170, 47, 0.5);
    opacity: 0;
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all .2s linear;
    /*animation: pointAnimation 2.5s ease-in-out infinite;*/
}

.point.active .point-inner:after {
    opacity: 1;
}

.point.active:after {
    opacity: 0;
}

.point.active:before {
    content: '';
    position: absolute;
    inset: -20px;
}

@keyframes pointAnimation {
    0% {
        transform: translateX(-50%) translateY(-50%) scale(0);
    }
    50% {
        transform: translateX(-50%) translateY(-50%) scale(1);
    }
    100% {
        transform: translateX(-50%) translateY(-50%) scale(0);
    }
}

.point .cloud-content {
    position: absolute;
    left: 0;
    width: 219px;
    background-color: #fff;
    bottom: 0px;
    opacity: 0;
    pointer-events: none;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: all .2s linear;
    cursor: unset;
}

.point .point-name {
    color: #fff;
    font-size: 18px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    z-index: -1;
    position: absolute;
    width: 200px;
    top: -10px;
    transform: translateY(-100%);
}

.point.active .cloud-content {
    opacity: 1;
    pointer-events: initial;
}

.cloud-content-image {
    display: block;
    margin: -5% -5% 0;
    padding-bottom: 5px;
}

.cloud-content-image img {
    display: block;
    max-width: 100%;
}

.cloud-content-name a {
    transition: color 300ms;
}

.cloud-content-name {
    color: #000;
    font-size: 13px;
    font-style: normal;
    line-height: 1.8571em;
}

.cloud-content-bottom {
    margin-top: 5px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.cloud-content-actions .price:not(.price-old) {
    font-size: 24px;
    font-weight: 800;
}

.cloud-content-actions .price:not(.price-old) .price-from {
    font-weight: 700;
    font-size: 18px;
}

.cloud-content-actions .btn-favorite .icon {
    width: 20px;
}

.cloud-content-actions .btn-favorite svg * {
    transition: all 300ms;
}

.cloud-content-actions .btn-favorite.active svg * {
    fill: #fff;
}

.cloud-content-actions .btn-favorite.active {
    color: #fff;
    background-color: var(--color-secondary);
}

.cloud-content-actions .btn-favorite:hover svg * {
    fill: transparent;
}

.cloud-content-actions .btn-favorite:hover {
    color: #fff;
    background-color: var(--color-secondary);
}

.cloud-content-actions .btn-favorite {
    padding: 5px;
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    background-color: transparent;
    border-radius: 5px;
}

.cloud-content-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.cloud-content-name a[href]:hover {
    color: var(--color-secondary);
}

.slider-bottom {
    justify-content: center;
}

.slider-logo {
    position: absolute;
    bottom: var(--space-50);
    right: var(--space-60);
    z-index: 1;
    pointer-events: none;
}

.right-actions > .user-nav > .user-nav-item-logout-wrapper {
    display: none;
}

.product-content-bottom .btn,
.product-bottom .product-actions .btn {
    border-color: #D9D9D9;
    color: #ccc7c4;
    font-size: 16px;
    font-weight: 600;
    padding: 5px 20px;
    min-width: unset;
    min-height: 40px;
    height: 40px;
    background-color: #fff;
}

@media screen and (min-width: 1140px) {
    .product-content-bottom .btn:hover,
    .product-bottom .product-actions .btn:hover {
        border-color: var(--color-secondary);
        color: #fff;
        background-color: var(--color-secondary);
    }
}

.search-right-bottom {
    max-width: 404px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.section-heading-right {
    display: flex;
    align-items: center;
    gap: var(--space-50);
}

.tile-item {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
}

.footer-mid .text {
    padding: calc(var(--space-25) + 5px) 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.8571em;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col-heading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 18px;
    letter-spacing: 0.03em;
    font-weight: 600;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-pad-images {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.footer-pad-image-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 62px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.footer-col-content .social-list > ul > li a .caption {
    display: none;
}

.footer-col-content .social-icon {
    width: 50px;
    height: 50px;
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    transition: all .2s linear;
}

.footer-col-content .social-list > ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-col-4-text {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 1140px) {
    .footer-col.col-3 .footer-col-content {
        display: flex;
        flex-direction: column;
    }
}


.footer-social-images {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-25);
    margin-top: auto;
    padding-top: var(--space-25);
}

.footer-social-image-item img {
    display: block;
    max-width: 100%;
}

.section-heading > .section-title + *:nth-child(2):last-child {
    flex-grow: 1;
    justify-content: flex-end;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

*[style="color:#86d11e"] {
    color: var(--color-secondary) !important;
}

.shop-product-box.product-small .product-price .price:not(.price-old):not(.price-new),
.shop-product-box.product-small .product-price .price-new {
    font-size: 16px;
}

.rwdPanel .header-top-btn.btn-info,
.rwdPanel .header-top-btn.btn-info:focus {
    color: var(--color-primary);
}

.basket-table .history-price-wrapper {
    justify-content: center;
}

.panel-heading {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.menu-image {
    margin-right: -25%;
    display: block !important;
    align-self: center;
    max-height: calc(100vh - 200px);
    padding: 10px 0;
    overflow-y: auto;
    flex-shrink: 0;
    width: 50%;
}

.menu-image img {
    display: block;
    max-width: 100%;
}