html, body {
    background-color: #DCE8ED;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    min-height: 100vh;
    color: #0E1214;
}
body {
    background-image: url("../img/bg_light.svg");
    background-position: top center;
    background-repeat: repeat-y;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 16px;
    line-height: 28px;
}
a, span, div {
    outline: none;
}

.layout-container {
    width: 100%;
    /*overflow: hidden;*/
}
.clear {
    clear: both;
}
/* Base */
.rel {
    position: relative;
}
.abs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.nowrap {
    white-space: nowrap;
}
.flex {
    display: flex;
}
a.linkblock {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: none;
    text-decoration: none;
}
p {
    margin: 0 0 15px 0;
}
p:last-child {
    margin: 0;
}

h1 {
    margin: 0;
}


/* Cookies Notice */
.cookies-notice {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    /*transform: translateX(-50%);*/
    background: #FFFFFF;
    color: #0E1214;
    padding: 0;
    border-radius: 0;
    z-index: 1000;
    transition: opacity 0.5s ease;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
}
.cookies-notice.show {
    display: block;
}
.cookies-notice.hide {
    opacity: 0;
}
.cookies-notice .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(221, 232, 237, 0.6);
    width: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.cookies-notice:hover .progress-bar {
    opacity: 0;
}
.cookies-notice .cookies-notice-cont {
    display: flex;
    gap: 20px;
    align-content: center;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
    line-height: 20px;
    padding: 20px;
}
.cookies-notice .cookies-notice-cont p {
    display: inline;
    margin: 0 5px 0 0;
}
.cookies-notice .cookies-notice-cont .region--cookies-notice {
    flex-grow: 1;
}
.cookies-notice a.btn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 38px;
    padding: 0px 10px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 800;
    text-transform: uppercase;
    background: #0E1214;
    color: #FFFFFF;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    border: 4px solid #0E1214;
    width: 100%;
}
.cookies-notice a.btn:hover {
    background: #87A7B7;
    border-color: #87A7B7;
}
.cookies-notice .btns {
    display: inline;
}
.cookies-notice .btns a {
    display: inline;
    margin: 0 5px 0 0;
    font-weight: 600;
    color: #0E1214;
    text-decoration: none;
    border-bottom: 1px solid rgba(14, 18, 20, 0.2);
}
.cookies-notice .btns a:hover {
    color: #87A7B7;
    border-bottom-color: rgba(135, 167, 183, 0.4);
}



/* HorScroll */
.hor-scroller {
    overflow-y: hidden;
    position: relative;
}
.hor-scroller .hor-scroller__items {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none !important;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: none;
}
.hor-scroller.hor-scroller--no-scroll .hor-scroller__items {
    flex-wrap: wrap;
    white-space: wrap;
}
.hor-scroller__items::-webkit-scrollbar {
    display: none;
    width: 0 !important;
    height: 0 !important;
}
.hor-scroller__item {
    display: flex;
    text-decoration: none;
}
.hor-scroller__item_active {
}
.hor-scroller__arrow {
    display: none;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    background: transparent;
    color: white;
    border: none;
    padding: 0 5px;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.hor-scroller__arrow .icon-arrow {
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_next.svg);
    background-position: 0px 0px;
    background-size: 20px 40px;
    background-repeat: no-repeat;
}
body.path-frontpage .hor-scroller__arrow .icon-arrow {
    background-image: url(../img/icon_next_black.svg);
}
.hor-scroller__arrow:hover .icon-arrow {
    background-position-y: -20px;
}
.hor-scroller__arrow.arrow-show {
    opacity: 1;
    pointer-events: auto;
}
.hor-scroller__arrow--left {
    left: 0;
    padding-right: 20px;
}
.hor-scroller__arrow--left .icon-arrow {
    transform: rotate(180deg);
}
.hor-scroller__arrow--right {
    right: 0;
    padding-left: 20px;
}
.hor-scroller--no-scroll {
    overflow-x: hidden !important;
}
/* HorScroll: hor-scroller-fades */
.hor-scroller.hor-scroller-fades .hor-scroller__items {
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
    mask-position: center;
    mask-size: 200% 100%; 
    transition: mask-size 0.3s ease, mask-position 0.3s ease;
}
.hor-scroller.hor-scroller-fades.hor-scroller-arrows .hor-scroller__items {
    -webkit-mask-image: linear-gradient(to right, transparent 10px, black 80px, black calc(100% - 80px), transparent calc(100% - 10px));
            mask-image: linear-gradient(to right, transparent 10px, black 80px, black calc(100% - 80px), transparent calc(100% - 10px));
}
.hor-scroller.hor-scroller-fades .hor-scroller__items.arrow-left-show {
    mask-size: calc(100% + 100px) 100%; 
    mask-position: left;
}
.hor-scroller.hor-scroller-fades .hor-scroller__items.arrow-right-show {
    mask-size: calc(100% + 100px) 100%; 
    mask-position: right;
}
.hor-scroller.hor-scroller-fades .hor-scroller__items.arrow-left-show.arrow-right-show {
    mask-size: 100% 100%; 
}
/* HorScroll: hor-scroller-arrows */
.hor-scroller.hor-scroller-arrows .hor-scroller__arrow {
    display: flex;
}


header,
main,
footer {
    margin: 0;
}


/* HEADER */
header .header-blocks {
    min-height: 80px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    gap: 20px;
}
header .header-blocks .header-block {
    padding: 20px 0;
}

header .header-blocks .header-block.h-contacts {
    display: none;
}

header .header-blocks .header-block.h-logo {
    
}
header .header-blocks .header-block.h-logo a,
header .header-blocks .header-block.h-logo img,
header .header-blocks .header-block.h-logo a img {
    line-height: 0;
    font-size: 0;
    display: block;
    margin: 0;
    padding: 0;
}
header .header-blocks .header-block.h-logo img {
    max-width: 100%;
}

header .header-blocks .header-block.h-contacts {
    flex-grow: 1;
}
header .header-blocks .header-block.h-contacts .block-block-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    gap: 20px;
}
header .header-blocks .header-block.h-contacts .contacts {
    font-size: 16px;
    line-height: 22px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    gap: 15px;
}
header .header-blocks .header-block.h-contacts .contacts .contacts-icon {
    align-self: center;
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    background-position: center;
    background-repeat: no-repeat;
}
header .header-blocks .header-block.h-contacts .contacts .contacts-icon.address-icon {
    background-image: url("../img/icon_address_light.svg");
}
header .header-blocks .header-block.h-contacts .contacts .contacts-icon.phone-icon {
    background-image: url("../img/icon_phone_light.svg");
}
header .header-blocks .header-block.h-contacts .contacts .contacts-cont {
    align-self: flex-start;
}
header .header-blocks .header-block.h-contacts .contacts .contacts-line-label {
    font-weight: 800;
    text-transform: uppercase;
    color: #87A7B7;
}

header .header-blocks .header-block.h-button .cart-block a {
    display: block;
    color: #0E1214;
    text-decoration: none;
    border: none;
}
header .header-blocks .header-block.h-button .cart-block a .cart-wrap {
    font-size: 16px;
    line-height: 22px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    gap: 15px;
}
header .header-blocks .header-block.h-button .cart-block a .cart-wrap .cart-icon {
    align-self: center;
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../img/icon_cart_light.svg");
    position: relative;
}
header .header-blocks .header-block.h-button .cart-block.cart-block-empty a .cart-wrap .cart-icon {
    background-image: url("../img/icon_cart_blue.svg");
}
header .header-blocks .header-block.h-button .cart-block a .cart-wrap .cart-icon .cart-icon-badge {
    box-sizing: border-box;
    background-color: #87A7B7;
    font-size: 14px;
    line-height: 14px;
    min-height: 22px;
    min-width: 22px;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    font-weight: 800;
    border-radius: 22px;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(40%, -30%);
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
}
header .header-blocks .header-block.h-button .cart-block a .cart-wrap .cart-cont {
    display: none;
}
header .header-blocks .header-block.h-button .cart-block a .cart-wrap .cart-cont .cart-line-label {
    display: block;
    font-weight: 800;
    text-transform: uppercase;
}
header .header-blocks .header-block.h-button .cart-block a .cart-wrap .cart-cont .cart-line-blocks {
    display: block;
}


/* CONTENT */
.cont-wrap,
.views-wrap {
    padding: 0 20px;
}
.cont,
.views-wrap .views-cont {
    margin: 0 auto;
    padding: 0;
    width: auto;
}
.fm-cont {
    margin: 0 auto;
    padding: 0;
    width: auto;
}
.fm-cont .fm-cont-padding {
    padding-left: 20px !important;
    padding-right: 20px !important;
}


/* bg */
main.content-top-yes {
    background-color: rgba(135,167,183,0.15);
}
main.content-top-no {
    background-color: #FFFFFF;
}


/* Menu main */
.menu-main ul.menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 20px;
    font-size: 16px;
    line-height: 22px;
}
.menu-main ul.menu li {
    margin: 0;
    padding: 0;
}
.menu-main ul.menu li a {
    font-weight: 800;
    color: #526D7B;
    border: none;
    text-decoration: none;
    text-transform: uppercase;
    top: 1px;
    position: relative;
}
#mainmenu.catalog-active .menu-main ul.menu li.catalog a,
#mainmenu .menu-main ul.menu li.menu__item--active-trail a {
    color: #87A7B7;
}
#mainmenu.catalog-active .menu-main ul.menu li.catalog a.is-active,
#mainmenu .menu-main ul.menu li.menu__item--active-trail a.is-active {
    color: #0E1214;
}
#mainmenu .menu-main ul.menu li a:hover,
#mainmenu.catalog-active .menu-main ul.menu li.catalog a:hover,
#mainmenu .menu-main ul.menu li.menu__item--active-trail a:hover,
#mainmenu.catalog-active .menu-main ul.menu li.catalog a.is-active:hover,
#mainmenu .menu-main ul.menu li.menu__item--active-trail a.is-active:hover {
    color: #0E1214;
}


/* BREADCRUMBS */
#breadcrumb {
    min-height: 60px;
    position: relative;
    z-index: 2;
}
#breadcrumb nav.breadcrumb {
    margin-top: -20px;
}
.breadcrumb ol.breadcrumb__list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}
.breadcrumb ol.breadcrumb__list li.breadcrumb__item {
    display: flex;
    text-align: match-parent;
    color: #87A7B7;
    line-height: 20px;
    margin: 10px 0;
}
.breadcrumb ol.breadcrumb__list li.breadcrumb__item:nth-child(n+2):before {
    margin: 0 10px;
    content: "»";
    border: none;
    color: #87A7B7;
    opacity: 0.4;
}
.breadcrumb ol.breadcrumb__list li.breadcrumb__item a.breadcrumb__link {
    color: #87A7B7;
    text-decoration: none;
    text-transform: none;
    border-bottom: 1px solid rgba(135, 167, 183, 0.2);
}
.breadcrumb ol.breadcrumb__list li.breadcrumb__item span.breadcrumb__nolink,
.breadcrumb ol.breadcrumb__list li.breadcrumb__item:last-child a.breadcrumb__link {
    color: rgba(135, 167, 183, 0.4);
    text-decoration: none;
    text-transform: none;
    border-bottom-color: transparent;
}
.breadcrumb ol.breadcrumb__list li.breadcrumb__item a.breadcrumb__link:hover,
.breadcrumb ol.breadcrumb__list li.breadcrumb__item:last-child a.breadcrumb__link:hover {
    color: #526D7B;
    border-bottom-color: rgba(82, 109, 123, 0.2);
}


/* Main Categories on Front page */
.maincat .views-cont {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.maincat .maincat-item {
    width: 100%;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.maincat .maincat-item .maincat-img-wrap,
.maincat .maincat-item .maincat-text-wrap {
    width: 100%;
}
.maincat .maincat-item .maincat-img-wrap img {
    display: block;
    width: 100%;
    min-width: 100%;
    height: auto;
    line-height: 0;
    font-size: 0;
    padding: 0;
    margin: 0;
}
.maincat .maincat-item .maincat-text-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.maincat .maincat-item .maincat-text-wrap .maincat-text {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.maincat .maincat-item .maincat-text-wrap .maincat-text .maincat-title {
    display: block;
    width: 100%;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 28px;
    line-height: 38px;
    color: #0E1214;
}
.maincat .maincat-item .maincat-text-wrap .maincat-text .maincat-description {
    display: block;
    width: 100%;
    color: #526D7B;
}
.maincat .maincat-item .maincat-text-wrap a.maincat-button {
    padding: 7px 10px;
    font-size: 20px;
    line-height: 22px;
    text-decoration: none;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    border: 4px solid #0E1214;
    color: #0E1214;
}


/* Фильтры */
.prod-vars-list .formwrap {
    margin: 0 auto;
    padding: 0;
    text-align: center;
}
.prod-vars-list.exp-yes.header-yes .formwrap {
    margin-top: 40px;
}
.prodselect-more .prod-vars-list .formwrap,
.prodselect-more .prod-vars-list.exp-yes.header-yes .formwrap {
    margin-top: 20px;
}
.prod-select-with-vars .prod-vars-list .formwrap,
.prodselect-more .prod-vars-list .formwrap {
    text-align: left;
}
.prod-vars-list .bef-exposed-form {
    display: block;
    /* display: flex; */
    /* gap: 20px; */
    margin-left: -20px;
    margin-top: -20px;
}
.prod-vars-list .bef-exposed-form .form-item {
    display: inline;
}
.prod-vars-list .bef-exposed-form .bef-links {
    display: inline;
    /* flex-wrap: wrap-reverse; */
    /* gap: 20px; */
    font-size: 0;
    line-height: 0;
    letter-spacing: -1px;
}
.prod-vars-list .bef-exposed-form .bef-links a.bef-link {
    background: #DCE8ED;
    color: #87A7B7;
    padding: 8px 14px;
    border: none;
    text-decoration: none;
    margin: 20px 0 0 20px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: normal;
    width: auto;
    min-height: 20px;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    _height: 20px;
}
.prod-vars-list .bef-exposed-form .bef-links a.bef-link:hover {
    color: #526D7B;
}
.prod-vars-list .bef-exposed-form .bef-links a.bef-link--selected {
    background: #87A7B7;
    color: #FFFFFF;
}
.prod-vars-list .bef-exposed-form .bef-links a.bef-link--selected:hover {
    /* color: #DCE8ED; */
    color: #FFFFFF;
}
.prod-vars-list .bef-exposed-form .form-actions {
    display: inline;
    font-size: 0;
    line-height: 0;
    letter-spacing: -1px;
}
.prod-vars-list .bef-exposed-form .form-actions button.form-submit {
    background: #526D7B;
    color: #FFFFFF;
    padding: 8px 14px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 16px;
    border: none;
    text-decoration: none;
    margin: 20px 0 0 20px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: normal;
    width: auto;
    min-height: 20px;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    _height: 20px;
    cursor: pointer;
}
.prod-vars-list .bef-exposed-form .form-actions button.form-submit:hover {
    background: #0E1214;
}
.prod-vars-list .bef-exposed-form .form-actions button.js-hide {
    display: none;
}
.prod-vars-list .bef-exposed-form .form-item-items-per-page {
    font-size: 0;
    line-height: 0;
    letter-spacing: -1px;
}
.prod-vars-list .bef-exposed-form .form-item-items-per-page,
.prod-vars-list .bef-exposed-form .form-item-items-per-page label {
    display: none;
}