:root {
    /* --- Backgrounds --- */
    --site-bg: #ffffff;

    --main-color: #3E77AA;
    --main-color-light: #5c96c9;
    --main-color-lighter: #5c96c9a8;
    /* --- Color for shadow .black ---  */
    --sub-color: #3498DB;
    --sub-color-light: #3498DB26;

    --footer-bg: #171616;

    /* --- Texts --- */
    --text: #171616;
    --text-inverse: #fff;
    --text-error: #E74C3C;
    --text-error-hover: #F15E48;
    --text-light: #717171;

    /* --- Buttons --- */
    --btn-bg: #3498DB;
    --btn-bg-hover: #3E77AA;

    /* --- Links --- */
    --link: #3498DB;
    --link-hover: #171616;

    /* --- Icons (SVG) --- */
    --icon-color: #fff;
    --icon-color-gray: #ccc;
    --icon-color-hover: #3498DB;

    --base-color-1: #ffffff;
    --base-color-2: #FAFAFA;
    --base-color-3: #EFEFEF;
    --base-color-4: #D9D9D9;
    --base-color-5: #CACACA;
    --base-color-6: #727272;
    --base-color-7: #4D4D4D;
    --base-color-8: #171616;
    --base-color-9: #1F1F1F;

    --design-color-1: #3E77AA;
    --design-color-2: #3498DB;
    --design-color-3: #FCA205;
    --design-color-4: #FCA205;
    --design-color-5: #F15E48;
    --design-color-6: #E74C3C;
    --design-color-7: #e74d3ca8;

    /* --- Common colors --- */
    --white: #fff;
    --black: #000;
    --error: #f01818;
    --error_light: #f018183d;
    --success: #4caf50;
    --gray: #666;
    --gray-light: #8a8a8a;
    --orange: #FCA205;
    --orange-hover: #FCA205;
    --orange_light: #fdf6e4;
    /* --- Common Opacity colors --- */
    --white-opacity: #FFFFFF5E;
    --border-opacity: #ffffff80;
    --white-opacity-lighter: #FFF3;
    --border-opacity-lighter: #ffffff54;
    --gray-opacity: #0f141966;

    /* --- Socials & Messengers --- */
    --viber: #675da9;
    --telegram: #0088cc;
    --whatsapp: #26d266;
    --facebook: #1877F2;
    --twitter: #0f1419;
    --youtube: #f03;
    --pinterest: #e60023;
    --instagram: #f7085c;

    /* --- Borders --- */
    --border-color: #ddd;
    --border-radius: 0;
    /* Radius for larger backgrounds, sliders, tiles etc. */
    --btn-radius: 0;
    /* Radius for buttons, inputs, checkboxes, etc. */

    /* --- Slider for Prices & Filters --- */
    --slider-handle-width: 24px;
    --slider-handle-width-minus: calc(var(--slider-handle-width) * -1);
    /* NO need to change */

    /* --- Content width & Margin --- */
    --content-width: 1332px;
    --content-margin: max(0px, calc((100% - var(--content-width)) / 2));
    /* NO need to change */

    /* Height of one inner filter element */
    --adm-filter-height: 33px;
    /* For fixed height list */

    /* Products photo aspect ratio */

    /* Gap around the product & tiles */
    --gap-mobile: 8px;
    --gap-desktop: 16px;
    --gap-mobile-twice: calc(var(--gap-mobile) * 2);
    /* NO need to change */
    --gap-desktop-twice: calc(var(--gap-desktop) * 2);
    /* NO need to change */
    --gap-offset-mobile: calc(-1 * var(--gap-mobile));
    /* NO need to change */
    --gap-offset-desktop: calc(-1 * var(--gap-desktop));
    /* NO need to change */

    /* Margin below the component */
    --section-margin-mobile: 50px;
    --section-margin-desktop: 75px;
    /* Page margin */
    --margin-lt-rt: 16px;
    --margin-lt-rt-minus: calc(-1 * var(--margin-lt-rt));
    /* NO need to change */
    --margin-lt-rt-twice: calc(var(--margin-lt-rt) * 2);
    /* NO need to change */

    /* Title wrap bottom margin */
    --title-margin-mobile: 16px;
    --title-margin-desktop: 24px;

    /* Title font-size */
    --title-font-size-mobile: 24px;
    --title-font-size-desktop: 42px;

    --h1: 24px;
    --h2: 20px;
    --h3: 18px;
    --h4: 16px;
    --h5: 16px;

    /* Width of Sub slider on Product page - in main product slider & zoom slider in popup */
    --sub_slider_vertical_width: 65px;
}

/* --- Fonts --- */
@font-face {
    font-family: 'Roboto';
    src: url('/fonts/roboto-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/roboto-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- Preloader & Background shadow --- */
.black,
.popup_ring {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    background: rgba(31, 31, 31, 0.6);
    z-index: 12;
    pointer-events: auto;
}

.black.less {
    z-index: 10;
}

.black.hidden {
    pointer-events: none;
}

.black::before {
    content: '';
    width: 100%;
    height: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s;
    z-index: -1;
    backdrop-filter: blur(2px);
}

.popup_ring {
    background: none;
    opacity: 1;
    z-index: 13;
    width: 200px;
    height: 100px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup_ring.inside {
    position: relative;
    top: 0;
    transform: translate(-50%, 0);
}

.popup_ring div,
.popup_ring span {
    position: absolute;
}

.popup_ring div {
    top: 0;
    left: 50%;
    width: 100px;
    height: 100px;
    animation: rotate 6.9s linear infinite;
}

.popup_ring div span {
    left: -8px;
    top: 50%;
    margin: -8px 0 0 0;
    width: 20px;
    height: 20px;
    display: block;
    background: var(--main-color);
    box-shadow: 2px 2px 8px rgba(42, 63, 84, 0.09);
    border-radius: 6px;
    transform: rotate(90deg);
    animation: move 6.9s linear infinite;
}

.popup_ring div span:before,
.popup_ring div span:after {
    content: '';
    position: absolute;
    display: block;
    border-radius: 6px;
    width: 18px;
    height: 18px;
    background: inherit;
    top: 50%;
    left: 50%;
    margin: -7px 0 0 -7px;
    box-shadow: inherit;
}

.popup_ring div span:before {
    animation: drop1 .8s linear infinite;
}

.popup_ring div span:after {
    animation: drop2 .8s linear infinite .4s;
}

.popup_ring div:nth-child(2) {
    animation-delay: -2.3s;
}

.popup_ring div:nth-child(2) span {
    animation-delay: -2.3s;
}

.popup_ring div:nth-child(3) {
    animation-delay: -4.6s;
}

.popup_ring div:nth-child(3) span {
    animation-delay: -4.6s;
}

@keyframes moveSvg {
    0% {
        offset-distance: 0;
    }

    25% {
        background: var(--sub-color);
    }

    75% {
        background: var(--orange);
    }

    100% {
        offset-distance: 100%;
    }
}

@keyframes rotate {
    50% {
        transform: rotate(360deg);
        margin-left: 0;
    }

    50.0001%,
    100% {
        margin-left: -100px;
    }
}

@keyframes move {

    0%,
    50% {
        left: -10px;
    }

    25% {
        background: var(--sub-color);
    }

    75% {
        background: var(--orange);
    }

    50.0001%,
    100% {
        left: auto;
        right: -10px;
    }
}

@keyframes drop1 {
    100% {
        transform: translate(40px, 10px) scale(0);
    }
}

@keyframes drop2 {
    0% {
        transform: translate(0, 0) scale(0.9);
    }

    100% {
        transform: translate(40px, -10px) scale(0);
    }
}

/* --- Body - fonts, colors, background --- */
HTML,
Body {
    scrollbar-color: var(--gray) var(--site-bg);
    touch-action: manipulation;
    height: 100%;
}

Body {
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--text);
    display: flex;
    flex-direction: column;
    padding-top: 90px;
    height: 100%;
    width: 100%;
    min-width: 375px;
    background: var(--site-bg);
}

Body.body_overflow {
    overflow: hidden;
}

::-webkit-scrollbar-thumb {
    background: var(--gray);
}

::-webkit-scrollbar {
    background: var(--site-bg);
}

.centre {
    margin: 0 auto;
    padding: 0 var(--margin-lt-rt);
    width: 100%;
    max-width: var(--content-width);
}

/* --- Common other --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

Body,
H1,
H2,
H3,
H4,
P,
LI,
Figure,
Figcaption,
Blockquote,
DL,
DD {
    margin: 0;
}

Menu,
UL,
OL {
    list-style: none;
    margin: 0;
    padding: 0;
}

Img {
    display: block;
}

Input,
Button,
Textarea,
Select {
    font: inherit;
}

Table {
    table-layout: fixed;
}

/* --- Common Link --- */
A {
    touch-action: manipulation;
}

A.link {
    color: var(--link);
    text-decoration: underline;
    width: max-content;
    transition: .3s;
}

A.link.no_line {
    text-decoration: none;
}

A.link.small {
    font-size: 14px;
}

A.link.has_icon {
    display: flex;
    align-items: center;
}

A.link.has_icon svg.icon {
    width: 12px;
    height: 12px;
    fill: var(--link);
}

A.link.inverse {
    color: var(--link-hover);
}

A.link.orange {
    color: var(--orange);
}

A.link.inverse.has_icon svg.icon {
    fill: var(--link-hover);
}

A.edit {
    font-size: 16px;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    min-height: 22px;
    transition: .3s;
}

A.edit .icon {
    fill: var(--text);
}

A.plus {
    padding: 0 0 0 24px;
    position: relative;
}

A.plus::before,
A.plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: var(--main-color);
    transition: .3s;
}

A.plus::after {
    transform: translateY(-50%) rotate(90deg);
}

/* --- Arrows --- */
.has_arrow::before,
.has_arrow::after {
    content: '';
    width: 8px;
    height: 2px;
    border-radius: 2px;
    background: var(--link);
    position: absolute;
    top: 11px;
    right: 0;
    transform: rotate(-45deg);
    transition: .3s;
}

.has_arrow::after {
    top: 6px;
    transform: rotate(45deg);
}

.has_arrow.left::before {
    transform: rotate(45deg);
}

.has_arrow.left::after {
    transform: rotate(-45deg);
}

.has_arrow.bottom::before {
    top: 18px;
    right: 11px;
}

.has_arrow.bottom::after {
    top: 18px;
    right: 16px;
}

.has_arrow.bottom.open::before {
    transform: rotate(45deg);
}

.has_arrow.bottom.open::after {
    transform: rotate(-45deg);
}

.has_arrow.top::before {
    top: 18px;
    right: 16px;
}

.has_arrow.top::after {
    top: 18px;
    right: 11px;
}

/* --- Dropdown --- */
.dropdown {
    position: relative;
    border-radius: var(--btn-radius);
    display: flex;
    border: 2px solid var(--border-color);
    height: 38px;
    transition: .3s;
}

.dropdown.error {
    border-color: var(--error);
}

.dropdown.dropdown-open {
    border-radius: var(--btn-radius) var(--btn-radius) 0 0;
    border: 2px solid var(--sub-color);
    transition: .3s;
}

.dropdown.dropdown-open.error {
    border-color: var(var(--sub-color));
}

.dropdown .overflow {
    width: 100%;
    height: 100%;
    padding: 0 40px 0 0;
    background: var(--white);
    position: relative;
    border-radius: calc(var(--btn-radius) - 2px);
}

.dropdown.dropdown-open .overflow {
    z-index: 10;
    border-radius: calc(var(--btn-radius) - 2px) calc(var(--btn-radius) - 2px) 0 0;
}

.dropdown Span {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.2;
    cursor: pointer;
    height: 100%;
    padding: 0 0 0 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    white-space: nowrap;
    z-index: 2;
}

.dropdown.error Span {
    background-image: url("../images/danger.png");
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%;
}

.dropdown .overflow Input {
    border: none;
    height: 100%;
    width: 100%;
    padding: 0 0 0 8px;
}

.drop_arrow {
    font-size: 0;
    position: absolute;
    right: 0;
    top: 0;
    background: var(--white);
    border: none;
    width: 40px;
    height: 100%;
    transition: .3s;
    cursor: pointer;
    border-radius: calc(var(--btn-radius) - 2px);
}

.drop_arrow::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -5.5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5.5px 0 5.5px;
    border-color: var(--border-color) transparent transparent transparent;
    transition: .3s;
}

.dropdown-open .drop_arrow:after {
    transform: rotateX(180deg);
}

.dropdown UL,
.autocomplete-suggestions {
    position: absolute;
    top: 34px;
    right: -2px;
    left: -2px;
    background: var(--white);
    border: 2px solid var(--border-color);
    max-height: 400px;
    overflow: auto;
    border-radius: 0 0 var(--btn-radius) var(--btn-radius);
    box-shadow: 0 10px 10px rgba(0, 0, 0, .3);
    z-index: 12;
    margin: 0;
    border-top: none;
    display: none;
    transition: .3s;
}

.autocomplete-suggestions {
    margin: -2px 0 0 0;
    border-color: var(--sub-color);
}

.dropdown.dropdown-open UL {
    border-color: var(--sub-color);
    transition: .3s;
}

.dropdown UL LI {
    position: relative;
    background: none;
    width: 100%;
}

.dropdown UL LI:first-child,
.autocomplete-suggestion+.autocomplete-suggestion:first-child {
    border: none;
}

/* --- if inline-block - dropdown list --- */
.dropdown UL LI A,
.autocomplete-suggestion {
    width: 100%;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    color: var(--text-light);
    position: relative;
    padding: 8px;
    cursor: pointer;
    display: inline-block;
    transition: .3s;
}

/* --- if flex - dropdown list --- */
.option_dropdown.dropdown UL LI A {
    display: flex;
}

.autocomplete-selected {
    background: var(--sub-color-light);
}

.dropdown UL LI A.selected {
    display: none;
}

/* --- Slider for Price or Filters --- */
.noUi-target * {
    cursor: default;
}

.slider_properties {
    width: calc(100% - (var(--slider-handle-width) * 2));
    display: flex;
    position: relative;
}

.slider_properties::before {
    content: '';
    position: absolute;
    width: calc(100% + (var(--slider-handle-width) * 2));
    height: 3px;
    background: var(--border-color);
    border-radius: var(--border-radius);
    left: 0;
    top: 0;
}

.noUi-base {
    height: 3px;
    width: 100%;
    position: relative;
    max-width: 100%;
    left: var(--slider-handle-width);
    background: var(--border-color);
    border-radius: var(--border-radius);
    z-index: 1;
}

.noUi-handle {
    height: 24px;
    width: var(--slider-handle-width);
    background: var(--border-color);
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    cursor: pointer;
}

.noUi-handle-lower {
    left: var(--slider-handle-width-minus);
}

.noUi-origin {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    background: var(--btn-bg);
    height: 3px;
}

.noUi-origin+.noUi-origin {
    background: var(--border-color);
    z-index: 3;
}

/* --- Radiobutton --- */
.radio_wrap,
.check_wrap {
    padding: 8px 8px 8px 30px;
    margin: 0 0 8px 0;
    position: relative;
}

Input[type="radio"]:checked,
Input[type="radio"]:not(:checked),
Input[type="checkbox"],
Input[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

Input[type="radio"]:checked+Label,
Input[type="radio"]:not(:checked)+Label,
Input[type="checkbox"]:checked+Label,
Input[type="checkbox"]:not(:checked)+Label {
    position: relative;
    line-height: 1.2;
    cursor: pointer;
}

Input[type="radio"]:checked+Label::before,
Input[type="radio"]:not(:checked)+Label::before,
Input[type="checkbox"]:checked+Label::before,
Input[type="checkbox"]:not(:checked)+Label::before,
.check_item::before,
.radio_item::before,
.options_list LI A::before,
.options_list.checkbox LI A::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 50%;
    transition: .3s;
}

Input[type="radio"]:checked+Label::before,
Input[type="checkbox"]:checked+Label::before,
.check_item.active::before,
.radio_item.active::before,
.options_list LI A.active::before,
.options_list.checkbox LI A.active::before {
    border-color: var(--text-light);
}

Input[type="radio"]:checked+Label::after,
Input[type="radio"]:not(:checked)+Label::after,
Input[type="checkbox"]:checked+Label::after,
Input[type="checkbox"]:not(:checked)+Label::after,
.check_item.active::after,
.radio_item.active::after,
.options_list LI A.active::after,
.options_list.checkbox LI A.active::after {
    left: -26px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sub-color);
    opacity: 1;
    content: '';
    position: absolute;
    transition: .3s;
}

Input[type="radio"]:not(:checked)+Label::after,
Input[type="checkbox"]:not(:checked)+Label::after,
.check_item::after,
.radio_item::after,
.options_list LI A::after,
.options_list.checkbox LI A::after {
    opacity: 0;
}

/* --- Radiobutton If <a href="#"></a> --- */
.radio_item,
.check_item {
    text-decoration: none;
    color: var(--link);
    display: inline-flex;
    padding: 0 0 0 32px;
    position: relative;
    cursor: pointer;
    transition: .3s;
}

.radio_item::before,
.check_item::before {
    left: 0;
    top: 7px;
}

.radio_item.active::after {
    left: 4px;
    top: 12px;
}

/* --- Checkbox --- */
Input[type="checkbox"]:checked+Label::before,
Input[type="checkbox"]:not(:checked)+Label::before,
.check_item::before,
.options_list.checkbox LI A::before {
    border-radius: var(--btn-radius);
}

Input[type="checkbox"]:checked+Label::after,
Input[type="checkbox"]:not(:checked)+Label::after,
.check_item.active::after,
.options_list.checkbox LI A.active::after {
    left: -26px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: calc(var(--btn-radius) / 2);
}

/* --- Checkbox If <a href="#"></a> --- */
.check_item.active::after {
    left: 4px;
    top: 11px;
}

/* --- Slick Slider - Main styles --- */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    min-height: 1px;
    outline: none;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide Img {
    display: block;
}

.slick-slide.slick-loading Img {
    display: none;
}

.slick-slide.dragging Img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-disabled {
    pointer-events: none;
    opacity: .4;
}

/* --- Main template styles --- */
/* --- If One Col --- */
.main_col {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

/* --- Article Preview --- */
.article_place {
    display: flex;
    margin-bottom: var(--section-margin-mobile);
}

.main_slider_container.main_page-slider:nth-child(1) + .article_place {
    margin-top: calc(var(--section-margin-mobile) * -1);
    margin-bottom: 0;
    padding-top: var(--section-margin-mobile);
    padding-bottom: 30px;
    background-color: var(--base-color-2);
}

Article {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: var(--section-margin-mobile);
}

.article_place Article {
    margin-bottom: 0;
}

.article_open {
    position: relative;
}

.article_open.shadow::before {
    content: "";
    width: 100%;
    height: 80%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.article_close {
    display: none;
}

.article_close.active {
    display: block;
}

.article_open-btn {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--base-color-8);
    font-weight: 500;
    display: flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    transition: color 0.3s;
}


.article_open-btn .icon {
    margin-left: 4px;
    width: 24px;
    height: 24px;
    fill: var(--design-color-2);
    transition: transform 0.3s;
}

.article_open-btn.open .icon {
    transform: rotate(-90deg);
}

h1,
.H1,
.main_title.h1 {
  font-size: var(--h1);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: calc(var(--h1) / 1.4);
}

article * + h1 {
  margin-top: calc(var(--h1) * 2);
}

h2,
.H2,
.main_title.h2 {
  font-size: var(--h2);
  font-weight: 500;
  line-height: 1;
  margin-bottom: calc(var(--h2) / 1.4);
}

article * + h2 {
  margin-top: calc(var(--h2) * 2);
}

h3,
.H3,
.main_title.h3 {
  font-size: var(--h3);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: calc(var(--h3) / 1.4);
}

article * + h3 {
  margin-top: calc(var(--h3) * 2);
}

h4,
.H4,
.main_title.h4 {
  font-size: var(--h4);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: calc(var(--h4) / 1.4);
}

article * + h4 {
  margin-top: calc(var(--h4) * 2);
}

h5,
.H5,
.main_title.h5 {
  font-size: var(--h5);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: calc(var(--h5) / 1.4);
}

article * + h5 {
  margin-top: calc(var(--h5) * 2);
}

article h1,
article h2,
article h3,
article h4,
article h5 {
    break-inside: avoid;
}

.main_title.h1,
.main_title.h2,
.main_title.h3 {
    margin-bottom: 0;
}

.main_title.h4 {
    margin-bottom: -2px;
}

.article_place.list_one-col.right_text article h1 strong,
.article_place.list_one-col.right_text article h1 b,
.article_place.list_one-col.right_text article h2 strong,
.article_place.list_one-col.right_text article h2 b,
.article_place.list_one-col.right_text article h3 strong,
.article_place.list_one-col.right_text article h3 b,
.article_place.list_one-col.right_text article h4 strong,
.article_place.list_one-col.right_text article h4 b,
.article_place.list_one-col.right_text article h5 strong,
.article_place.list_one-col.right_text article h5 b {
    color: var(--design-color-2);
    font-weight: 500;
}

.article_place.list_one-col h2,
.article_place.list_two-col h2 {
    font-size: var(--h1);
    margin-bottom: calc(var(--h1) / 1.4);
}

.article_place.short .H1 {
    width: 80%;
    max-width: 564px;
}

Article P {
    margin: 0 0 25px 0;
}

Article P:last-child {
    margin: 0;
}

Article A {
    color: var(--link);
    transition: .3s;
}

Article UL {
    list-style: disc;
    margin: 0 0 25px 0;
    padding: 0 0 0 32px;
    display: flex;
    flex-direction: column;
}

Article OL {
    list-style: decimal;
    margin: 0 0 25px 0;
    padding: 0 0 0 32px;
    display: flex;
    flex-direction: column;
}

Article UL LI::marker,
Article OL LI::marker {
    color: var(--sub-color);
    font-size: inherit;
    font-weight: 700;
}

Article HR {
    background: var(--border-color);
    border: 0;
    height: 1px;
    margin: 0 0 16px 0;
}

Article Sub,
Article Sup {
    font-size: 10px;
}

Article Blockquote {
    font-style: italic;
    margin: 0 0 25px 20%;
    padding: 8px 0 8px 16px;
    border-left: 8px solid var(--sub-color);
    max-width: 60%;
    column-span: all;
}

Article Blockquote P {
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
}

Article Blockquote P:last-child {
    margin: 0;
}

Article Figure.table {
    min-width: 100%;
    margin: 0 0 25px 0;
    column-span: all;
}

Article Strong {
    font-weight: 700;
}

Article .table Table {
    border-collapse: collapse;
    border-color: var(--site-bg);
    border-style: solid;
    width: 100%;
    overflow: hidden;
    table-layout: fixed;
}

Article .table Table TR:nth-child(odd) {
    background: var(--site-bg);
}

Article .table Table TR:nth-child(even) {
    background: var(--text-inverse);
}

Article .table Table TH {
    background: var(--main-color);
    color: var(--text-inverse);
    padding: 8px;
    text-align: left;
    border: none;
    word-wrap: break-word;
}

Article .table Table TD {
    border-right: 1px solid var(--site-bg);
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
}

Article .table Table TR:nth-child(odd) TD {
    border-color: var(--text-inverse);
}

Article .image-inline {
    max-width: 100%;
    height: auto !important;
    opacity: 1 !important;
    min-width: 100%;
}

Article .image {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    margin: 0 0 26px 0;
    width: 100%;
}

Article .image Img,
Article Img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    min-width: 100%;
}

Article .image>figcaption {
    caption-side: bottom;
    color: var(--main-color);
    display: table-caption;
    font-size: 12px;
    outline-offset: -1px;
    padding: 6px 12px;
    word-break: break-word;
}

Article .long_div.article_btn {
    margin: 22px 0 0 0;
}

Article A.has_arrow {
    position: relative;
    padding: 0 20px 0 0;
}

Article A.has_arrow.bottom::before,
Article A.has_arrow.bottom::after {
    top: 11px;
    right: 0;
}

Article A.has_arrow.top::before,
Article A.has_arrow.top::after {
    top: 10px;
    right: 5px;
}

Article A.has_arrow.bottom::after {
    right: 5px;
}

Article A.has_arrow.top::after {
    right: 0;
}

Article A.inverse.has_arrow::before,
Article A.inverse.has_arrow::after {
    background: var(--link-hover);
}

.article_place.seo {
    order: 33;
}

.article_place.list_two-col ul,
.article_place.list_one-col ul {
    list-style: none;
    padding: 0;
    break-inside: avoid;
}

.article_place.list_two-col ul li,
.article_place.list_one-col ul li {
    color: var(--design-color-2);
    padding-left: 30px;
    line-height: 30px;
    margin-bottom: 2px;
    position: relative;
}

.article_place.list_two-col ul li::before,
.article_place.list_one-col ul li::before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../images/checked-icon.png');
    background-repeat: no-repeat;
}

.article_place.list_one-col .article_text > .table:nth-child(1) {
    margin-bottom: 0;
}

.article_place.list_one-col .article_text > .table:nth-child(1) table {
    display: flex;
    overflow: unset;
    margin-bottom: 0;
}

.article_place.list_one-col .article_text > .table:nth-child(1) tr {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.article_place.list_one-col .article_text > .table:nth-child(1) td {
    display: block;
    padding: 0;
    width: 100%;
}

.article_place.list_one-col .article_text > .table:nth-child(1) td > *:nth-last-child(1) {
    margin-bottom: 0;
}

.article_place.list_one-col .article_text > .table:nth-child(1) figure.image {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    width: 100%;
    max-width: 100%;
    float: unset;
}

.article_place.list_one-col .article_text > .table:nth-child(1) img {
    margin: 0 auto;
    width: auto;
    max-width: 100%;
    min-width: unset;
}

.article_place.list_two-col .article_text > .table:nth-child(1) {
    margin-bottom: 0;
}

.article_place.list_two-col .article_text > .table:nth-child(1) table {
    display: flex;
    overflow: unset;
    margin-bottom: 0;
}

.article_place.list_two-col .article_text > .table:nth-child(1) tbody {
    width: 100%;
}

.article_place.list_two-col .article_text > .table:nth-child(1) tr {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.article_place.list_two-col .article_text > .table:nth-child(1) td {
    display: block;
    padding: 0;
    width: 100%;
}

.article_place.list_two-col .article_text > .table:nth-child(1) td > *:nth-last-child(1) {
    margin-bottom: 0;
}

.article_place.list_two-col .article_text > .table:nth-child(1) figure.image {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    width: 100%;
    max-width: 100%;
    float: unset;
}

.article_place.list_two-col .article_text > .table:nth-child(1) img {
    margin: 0 auto;
    width: auto;
    max-width: 100%;
    min-width: unset;
}

.article_place.desktop_bigger article {
    font-weight: 400;
}

/* --- Input & Textarea - Common styles --- */
Input,
Select {
    height: 48px;
    border: none;
    border-radius: var(--btn-radius);
    padding: 0 16px;
    outline: none;
}

Input[type=text],
Input[type=password],
Input[type=email],
Input[type=tel],
Input[type=number],
Input[type=search],
Textarea,
Select {
    width: 100%;
    border: 1px solid var(--border-color);
    transition: border 0.3s;
}

Input[type=text].error,
Input[type=password].error,
Input[type=email].error,
Input[type=tel].error,
Input[type=number].error,
Input[type=search].error,
Textarea.error {
    border-color: var(--error) !important;
    background: var(--white) url("../images/danger.png") no-repeat calc(100% - 10px) 12px / 22px;
    z-index: 2;
}

.password_box Input[type=password].error,
.password_box Input[type="text"].error {
    background-image: none;
}

Input[type=text]:focus,
Input[type=password]:focus,
Input[type=email]:focus,
Input[type=tel]:focus,
Input[type=number]:focus,
Input[type=search]:focus,
Textarea:focus,
Select:focus {
    border-color: var(--sub-color) !important;
    outline: 0;
    outline-offset: 0;
}

Input[type=text]:disabled,
Input[type=tel]:disabled {
    background: var(--border-color);
    pointer-events: none;
}

Textarea {
    padding: 13px 8px;
    resize: vertical;
    outline: none;
    border-radius: var(--btn-radius);
    min-height: 120px;
    max-height: 400px;
}

Select {
    background-color: var(--white);
    cursor: pointer;
    padding-right: 32px;
    appearance: none;
    background-position: right 9px center;
    background-repeat: no-repeat, repeat;
    background-size: 14px 8px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg fill='%238a8a8a' viewBox='0 0 13 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.5 7a.956.956 0 0 1-.657-.256l-5.57-5.25a.839.839 0 0 1 0-1.237.968.968 0 0 1 1.312 0L6.5 4.888 11.415.257a.968.968 0 0 1 1.313 0 .839.839 0 0 1 0 1.237l-5.572 5.25A.956.956 0 0 1 6.5 7Z'/%3E%3C/svg%3E");
}

/* --- Popup --- */
.popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 16px);
    max-width: 500px;
    background: var(--white);
    padding: 16px;
    border-radius: var(--border-radius);
    z-index: 13;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
    overflow: auto;
    max-height: calc(100% - 64px);
    display: none;
}

.popup.active {
    display: flex;
    flex-direction: column;
}

.popup .row {
    display: flex;
    justify-content: center;
}

.popup .row.left {
    justify-content: flex-start;
}

.popup .row .btn {
    margin: 0;
    width: 100%;
}

.popup .row .btn span + .icon {
    flex: 0 0 20px;
    margin-left: 6px;
    width: 20px;
    height: 20px;
}

.popup .row.left .btn {
    margin: 0 8px 0 0;
}

/* --- To Wishlist or Compare - Popup --- */
.for_wish_product {
    display: flex;
    margin: 0 0 24px 0;
}

.for_wish_product .ag_photo {
    width: 42px;
    height: 42px;
}

.wl_text {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.wlt_tit {
    display: flex;
    margin: 0 0 8px 0;
}

.wlt_price {
    font-size: 18px;
    color: var(--orange);
}

.wlt_price Small {
    font-size: 15px;
}

.wish_lists_popup .wish_lists {
    display: flex;
    flex-direction: column;
    margin: 0 0 8px 0;
}

.wish_lists_popup .wish_lists LI {
    position: relative;
    padding: 8px 30px 8px 16px;
    border-radius: var(--btn-radius);
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 16px;
    margin: 0 0 8px 0;
    transition: .3s;
}

.wish_lists LI.has_arrow::before,
.wish_lists LI.has_arrow::after {
    right: 12px;
    top: 20px;
    background: var(--gray-light);
}

.wish_lists LI.has_arrow::after {
    top: 15px;
}

/* --- Delete - Popup --- */
.delete_popup {
    padding: 32px;
}

/* --- Common Notification Popup --- */
.notification {
    animation: appearance .5s ease-in;
    position: fixed;
    top: 62px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 13;
    overflow: initial;
    max-height: calc(100% - 64px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
    width: calc(100% - 16px);
    max-width: 500px;
    background: var(--white);
    padding: 16px;
    border-radius: var(--border-radius);
}

.notification::before,
.notification::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--white);
    border-radius: inherit;
    animation: pulse 2s ease-out infinite;
    opacity: 0;
    animation-delay: .75s;
}

.notification::after {
    animation-delay: 1.25s;
    border-width: 1px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes appearance {
    0% {
        top: -100px;
    }

    100% {
        top: 62px;
    }
}

.notification .title_wrap {
    margin: 0 0 var(--title-margin-mobile) 0;
}

.notification .title_wrap .main_title {
    font-size: 18px;
}

.notification .for_wish_product {
    margin: 0;
}

/* --- Rows & Hidden - Common styles --- */
.hidden {
    display: none !important;
}

.long_div {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 0 24px 0;
    position: relative;
}

/* --- inputs --- */

.styled_input {
    display: flex;
    flex-direction: column;
    margin: 0 0 24px 0;
    width: 100%;
}

.styled_input .title {
    display: none;
    font-size: 18px;
    margin-bottom: 10px;
}

.styled_input .title i {
    font-style: normal;
    color: var(--design-color-6);
}

.styled_input .input_wrap {
    position: relative;
    width: 100%;
}

.styled_input .input_wrap > .icon {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 14px;
    left: 16px;
    fill: #A69F9F;
}

.styled_input .input_wrap > .icon + input,
.styled_input .input_wrap > .icon + textarea {
    padding-left: 48px;
}

.styled_input .input_info {
    font-size: 14px;
    font-weight: 300;
    margin-top: 10px;
}

.styled_input .input_info.error {
    color: var(--error);
}

/* --- Warnings --- */
.warning_box {
    display: flex;
    align-items: center;
    padding: 8px;
    border: 2px solid var(--orange);
    color: var(--orange);
    border-radius: var(--border-radius);
    margin: 8px 0 16px;
    text-decoration: none;
    min-height: 32px;
    z-index: 2;
    position: relative;
    width: 100%;
    transition: .3s;
}

.warning_box.red {
    border-color: var(--error);
    color: var(--error);
}

.warning_box.success {
    border-color: var(--success);
    color: var(--success);
}

.warning_box.no_no {
    animation: wrong .5s ease-in;
    position: relative;
}

.warning_box .w_text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.warning_box .icon {
    margin: 0 8px 0 0;
    fill: var(--orange);
    flex-shrink: 0;
}

.warning_box.red .icon {
    fill: var(--error);
}

.warning_box.success .icon {
    fill: var(--success);
}

.warning_box.no_margin {
    margin: 0;
}

.warning_box.no_margin_bottom {
    margin-bottom: 0;
}

.warning_box.no_padding {
    padding: 0;
}

.warning_box.small {
    padding: 2px 8px;
}

.long_div.error {
    border: 2px solid var(--error);
    border-radius: var(--border-radius);
    padding: 8px 16px 8px 38px;
    background: var(--error_light) url("../images/danger.png") no-repeat 8px 50%;
    color: var(--error);
    background-size: 22px;
}

.long_div.error.no_no {
    animation: wrong .5s ease-in;
    position: relative;
}

@keyframes wrong {
    0% {
        left: 0;
    }

    10% {
        left: -8px;
    }

    20% {
        left: -16px;
    }

    30% {
        left: -8px;
    }

    40% {
        left: 0;
    }

    50% {
        left: 8px;
    }

    60% {
        left: 16px;
    }

    70% {
        left: 8px;
    }

    80% {
        left: 0;
    }

    90% {
        left: -8px;
    }

    100% {
        left: 0;
    }
}

.long_div .input_error {
    position: absolute;
    width: max-content;
    max-width: 70%;
    height: 70%;
    padding: 6px 8px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    color: var(--text-inverse);
    right: 0;
    top: -4px;
    font-size: 12px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    background: var(--error);
    transition: .3s;
}

.form_place.change_contacts .long_div .input_error {
    height: calc(70% - 8px);
}

.long_div .input_error.active {
    opacity: 1;
    visibility: visible;
    overflow: visible;
}

.long_div.error A {
    color: var(--text-error);
    transition: .3s;
}

.long_div.center {
    text-align: center;
    justify-content: center;
}

.long_div.row {
    flex-direction: row;
}

.long_div Label {
    color: var(--text);
    font-size: 18px;
    font-weight: 300;
    margin: 0 0 10px 0;
}

.long_div Label i {
    font-style: normal;
    color: var(--design-color-6);
}

/* --- Title - Common styles --- */
.title_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 var(--title-margin-mobile) 0;
}

.main_title {
    display: flex;
    flex-wrap: wrap;
    font-size: var(--title-font-size-mobile);
    font-weight: 500;
    color: var(--text);
}

.margin_right .main_title {
    margin-right: 32px;
}

svg.icon {
    width: 20px;
    height: 20px;
    transition: .3s;
}

svg.icon.margin {
    margin: 0 6px 0 0;
}

svg.icon.margin_left {
    margin: 0 0 0 6px;
}

svg.icon.margin.big {
    margin: 0 12px 0 0;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    width: max-content;
    max-width: 100%;
    background: var(--btn-bg);
    padding: 0 16px;
    border-radius: var(--btn-radius);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-inverse);
    text-align: center;
    cursor: pointer;
    position: relative;
    border: none;
    transition: .3s;
}

.btn.active,
.lor_col .together A.active,
.enter_form .together A.btn.active {
    background: var(--btn-bg-hover);
}

.btn.mini {
    font-size: 14px;
    padding: 0 8px;
    min-height: 28px;
}

.btn.big {
    font-size: 20px;
    min-height: 48px;
}

.btn.light {
    background: var(--design-color-7);
    color: var(--base-color-1);
    border: 2px solid transparent;
}

.btn.inverse {
    background: var(--main-color);
    border: 2px solid transparent;
}

.btn.warning {
    background: var(--orange);
    border: 2px solid transparent;
}

.btn.delete {
    background: var(--text-error-hover);
    border: 2px solid transparent;
}

.btn.light.inverse {
    background: var(--main-color-lighter);
    color: var(--site-bg);
    border: 2px solid transparent;
}

.btn.outline {
    color: var(--text);
    background-color: transparent;
    border: 1px solid var(--design-color-2);
}

.btn.outline .icon {
    fill: var(--design-color-2);
    transition: fill 0.3s;
}

.btn.secondary {
    background-color: var(--design-color-6);
}

.btn .icon {
    width: 20px;
    height: 20px;
    fill: var(--white);
    flex-shrink: 0;
    transition: .3s;
}

.btn.left {
    justify-content: flex-start;
}

.btn.disabled {
    opacity: .4;
    pointer-events: none;
}

.btn.has_arrow {
    padding: 0 32px 0 16px;
}

.btn.has_arrow::before,
.btn.has_arrow::after {
    background: var(--white);
}

/* --- Narrow promo banner in header --- */
.upper_info {
    display: flex;
    width: 100%;
    height: 32px;
    justify-content: center;
    align-items: center;
}

.upper_info Img {
    max-width: 100%;
    max-height: 32px;
    object-fit: contain;
}

/* --- AD banner --- */
.mediap {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 10;
    width: 300px;
    height: 300px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    will-change: transform, opacity;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1), 0 0 1px rgba(0, 0, 0, .2);
    transition: transform .8s cubic-bezier(.34, 1.56, .64, 1), opacity .6s ease, filter .6s ease, box-shadow .4s ease;
    transform-origin: left bottom;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mediap.no_active {
    pointer-events: none;
    opacity: 0;
    filter: blur(10px);
    transform: translate(-100%, 20%) rotate(-15deg) scale(.8);
}

.mediap .close_media {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(0, 0, 0, .3);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer_svg {
    position: absolute;
    inset: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    transform: rotate(-90deg);
    pointer-events: none;
    overflow: visible;
}

.timer_bg {
    fill: none;
    stroke: rgba(255, 255, 255, .4);
    stroke-width: 4px;
}

.timer_path {
    fill: none;
    stroke: var(--error);
    stroke-width: 3px;
    stroke-linecap: round;
    stroke-dasharray: 95;
    stroke-dashoffset: 95;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, .5));
}

.mediap:not(.no_active) .timer_path {
    animation: timer-fill var(--timer-speed, 5s) linear forwards;
}

@keyframes timer-fill {
    to {
        stroke-dashoffset: 0;
    }
}

.mediap .close_media::before,
.mediap .close_media::after {
    content: '';
    position: absolute;
    height: 14px;
    width: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.mediap .close_media::before {
    transform: rotate(45deg);
}

.mediap .close_media::after {
    transform: rotate(-45deg);
}

.mediap_link {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.mediap Img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease, filter .6s ease;
}

/* --- Main HEADER --- */
.main_header {
    background: var(--main-color);
    padding: 16px 0;
    margin: 0 0 8px 0;
    z-index: 11;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
}

.main_header .icon,
.main_header .svg_icon {
    width: 24px;
    height: 24px;
    fill: var(--white);
    transition: .3s;
    flex-shrink: 0;
}

.main_header .centre {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- main row --- */
.nav_panel {
    display: flex;
    align-items: center;
}

.ico_cat {
    position: relative;
    width: 24px;
    height: 24px;
    margin: 0 12px 0 0;
    display: flex;
}

.ic_1,
.ic_2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
}

.ic_1::before,
.ic_1::after,
.ic_2::before,
.ic_2::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 11px;
    height: 11px;
    border: 2px solid var(--white);
    content: '';
    border-radius: 3px;
    transition: .3s;
}

.ic_1::after {
    left: auto;
    right: 0;
}

.ic_2::before {
    top: auto;
    bottom: 0;
}

.ic_2::after {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
}

.catalog_btn.active .ic_1::before,
.catalog_btn.active .ic_1::after,
.catalog_btn.active .ic_2::before,
.catalog_btn.active .ic_2::after {
    border: 0;
    width: 12px;
    height: 3px;
    background: var(--white);
    transform: rotate(45deg);
    top: 6px;
    left: 2px;
}

.catalog_btn.active .ic_1::after {
    left: auto;
    right: 2px;
    transform: rotate(-45deg);
}

.catalog_btn.active .ic_2::before {
    top: auto;
    bottom: 7px;
    transform: rotate(-45deg);
}

.catalog_btn.active .ic_2::after {
    top: auto;
    left: auto;
    bottom: 7px;
    right: 2px;
}

.desktop .select_city {
    display: none;
}

/* --- main search panel --- */
.search_wrap {
    position: relative;
    width: 100%;
    margin: 0 16px;
}

.search_wrap Input {
    width: 100%;
    padding: 0 84px 0 8px;
    border: none;
}

.search_wrap.active Input {}

.search_wrap .icon.if_desktop {
    display: none;
}

.search_wrap A.clear {
    position: absolute;
    top: 0;
    right: 38px;
    width: 38px;
    height: 38px;
    border-left: 1px solid var(--border-color);
    opacity: 1;
    visibility: visible;
    transition: .3s;
}

.search_wrap A.clear.no_active {
    opacity: 0;
    visibility: hidden;
}

.search_wrap A.clear::before,
.search_wrap A.clear::after,
.search_popup A.cleare_this::before,
.search_popup A.cleare_this::after {
    content: '';
    width: 10px;
    height: 1px;
    position: absolute;
    top: 19px;
    left: 14px;
    background: var(--text-light);
    transform: rotate(45deg);
    transition: .3s;
}

.search_wrap A.clear::after,
.search_popup A.cleare_this::after {
    transform: rotate(-45deg);
}

.search_wrap .search_btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--btn-bg);
    border-radius: 0 calc(var(--btn-radius) - 1px) calc(var(--btn-radius) - 1px) 0;
    transition: .3s;
}

.main_header .search_btn .icon {
    fill: var(--white);
}

.main_header .search_btn Span {
    display: none;
}

/* --- search popup --- */
.search_popup {
    position: absolute;
    top: min(calc(100% - 2px), calc(100% - var(--btn-radius)));
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    padding-top: var(--btn-radius);
}

.search_popup.active {
    opacity: 1;
    visibility: visible;
    z-index: -1;
}

.search_popup UL {
    display: none;
    flex-direction: column;
    padding: 0 0 8px 0;
}

.search_popup.active UL {
    display: flex;
}

.search_popup LI {
    display: flex;
    align-items: center;
    position: relative;
    transition: .3s;
}

.search_popup LI:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - var(--btn-radius));
    height: 1px;
    background: var(--border-color);
}

.search_popup LI:last-child.active {
    border-radius: 0 0 var(--btn-radius) var(--btn-radius);
}

.search_popup LI.title {
    padding: 8px;
    font-size: 13px;
    color: var(--text-light);
    justify-content: space-between;
}

A.clear_history {
    text-decoration: none;
    color: var(--main-color-light);
    transition: .3s;
}

.search_popup A.one_result {
    padding: 8px;
    text-decoration: none;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    width: 100%;
}

.search_popup A.one_result.history {
    width: calc(100% - 34px);
}

.search_popup A.one_result Img {
    max-height: 42px;
    margin: -4px 8px -4px 0;
}

.search_popup .res_txt {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
}

.search_popup .res_txt Span {
    font-weight: bold;
    color: var(--main-color-light);
}

.search_popup A.one_result.category {
    margin: 0;
}

.search_popup A.one_result.category .icon {
    width: 18px;
    height: 18px;
    fill: var(--icon-color-gray);
    margin: 0 8px 0 0;
}

.search_popup A.cleare_this {
    width: 34px;
    height: 34px;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.search_popup A.cleare_this::before,
.search_popup A.cleare_this::after {
    top: 17px;
    left: 12px;
}

.user_panel {
    display: flex;
    align-items: center;
}

.btn_header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--btn-radius);
    transition: .3s;
    position: relative;
    text-decoration: none;
    border: unset;
    cursor: pointer;
    background: none;
}

.btn_header.scale,
.btn_header.heart,
.btn_header.user {
    display: none;
}

.compare_counter,
.wish_counter,
.cart_counter,
.profile_counter {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: absolute;
    top: -3px;
    left: 23px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    font-size: 12px;
    background: var(--sub-color);
    padding: 2px;
}

.profile_counter {
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    border: 1px solid var(--site-bg);
    margin-left: auto;
    position: relative;
    top: auto;
    left: auto;
}

.shopping_sum {
    display: none;
}

.btn_header.user .orders,
.btn_header.user.orders .user {
    display: none;
}

.btn_header.user .user,
.btn_header.user.orders .orders {
    display: flex;
}

/* --- Left Col --- */
.menu_header {
    color: var(--text);
    position: fixed;
    top: 0;
    left: -330px;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    overflow: auto;
    width: 300px;
    background: var(--site-bg);
    z-index: 12;
    transition: .3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
}

.menu_header.active {
    left: 0;
    transition: .3s;
}

.menu_header .icon,
.profile_menu UL .icon {
    width: 20px;
    height: 20px;
    margin: 0 12px 0 0;
}

.menu_header .btn,
.profile_menu UL A {
    padding: 0 8px;
}

.close_menu {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 18px;
    right: 4px;
    z-index: 1;
}

.close_menu::after,
.close_menu::before {
    content: '';
    width: 24px;
    height: 3px;
    border-radius: 3px;
    background: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: .3s;
}

.close_menu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.left_menu_header {
    display: flex;
    flex-direction: column;
    background: var(--main-color);
    color: var(--text-inverse);
    border-bottom: 1px solid var(--site-bg);
}

.menu_logo {
    display: flex;
    padding: 2px 40px 2px 8px;
    width: 100%;
    height: 70px;
    align-items: center;
}

/* --- Phones - Left Col --- */
.login_btn {
    width: calc(100% - 16px);
    background: none;
    margin: 8px;
}

.login_btn.out {
    color: var(--main-color-lighter);
    margin: 0;
}

.login_btn.out .icon {
    fill: var(--main-color-lighter);
}

.user_info,
.profile_menu UL A.user_info {
    color: var(--text-inverse);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    padding: 8px 8px 8px 40px;
    position: relative;
    border-radius: var(--btn-radius);
    align-items: flex-start;
    transition: .3s;
}

.profile_menu UL A.user_info {
    color: var(--main-color);
}

.user_info .icon {
    position: absolute;
    top: 8px;
    left: 8px;
    fill: var(--text-inverse);
}

.user_info .name {
    padding: 2px 0 4px 0;
}

.user_info .user_email {
    font-size: 12px;
    color: var(--sub-color);
    transition: .3s;
}

.user_info.active .user_email {
    color: var(--main-color-light);
}

.menu_header .catalog_btn {
    display: flex;
    margin: 8px;
    width: calc(100% - 16px);
}

.menu_header .catalog_btn .icon {
    width: 24px;
    height: 24px;
}

.left_menu_box {
    display: flex;
    flex-direction: column;
    padding: 8px 8px 16px 8px;
}

.left_menu_box.user_menu {
    padding: 8px 8px 0 8px;
    order: 3;
}

.left_menu_box.bottom_menu_in_left {
    order: 4;
}

.profile_tpl .left_menu_box.user_menu {
    order: 1;
}

.left_menu_box .catalog_menu {
    border-bottom: 1px solid var(--border-color);
    padding: 0 0 8px 0;
    margin: 0 0 8px 0;
}

.left_menu_box.user_menu .catalog_menu {
    margin: 0;
}

.left_menu_box LI,
.profile_menu UL A {
    margin: 0 0 1px 0;
}

.left_menu_box A,
.pm_items A,
.left_menu_box A.active {
    color: var(--link);
    background: none;
    width: 100%;
}

.profile_menu UL A.active {
    background: var(--main-color-lighter);
    color: var(--text-inverse);
}

.left_menu_box A .icon,
.profile_menu A .icon {
    fill: var(--link);
}

.profile_menu A.active .icon {
    fill: var(--white);
}

.for_select_city {
    border-bottom: 1px solid var(--border-color);
    padding: 0 0 8px 0;
    margin: 0 0 8px 0;
}

.left_menu_box .for_select_city LI {
    margin: 0;
}

/* --- Left Catalog Menu --- */
.catalog_mob_menu {
    display: flex;
    width: 100%;
    padding: 8px;
    background: var(--main-color);
    order: 2;
}

.catalog_mob_menu.margin {
    margin: -1px 0 0 0;
}

.catalog_mob_menu UL {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.catalog_mob_menu A {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    text-decoration: none;
    color: var(--text-inverse);
    padding: 8px 0;
    position: relative;
    transition: .3s;
}

.catalog_mob_menu A.has_arrow {
    padding: 8px 42px 8px 0;
}

.catalog_mob_menu A::before,
.catalog_mob_menu A::after {
    display: none;
}

.catalog_mob_menu A Span {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    aspect-ratio: 1 / 1;
    max-height: 34px;
    transition: .3s;
}

.catalog_mob_menu A.has_arrow Span::before,
.catalog_mob_menu A.has_arrow Span::after {
    content: '';
    width: 8px;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    right: 12px;
    top: 19px;
    transform: rotate(-45deg);
    transition: .3s;
    background: var(--text-inverse);
}

.catalog_mob_menu A.has_arrow Span::after {
    transform: rotate(45deg);
    top: 14px;
}

.catalog_mob_menu A.has_arrow.bottom Span {
    transform: rotate(-90deg);
}

.catalog_mob_menu UL LI UL.no_active {
    display: none;
}

.catalog_mob_menu UL LI UL {
    padding: 0 0 0 30px;
}

.catalog_mob_menu UL LI UL A {
    padding: 6px 0;
}

.catalog_mob_menu UL LI UL A.has_arrow {
    padding: 6px 0;
}

.catalog_mob_menu UL LI UL A Span {
    max-height: 30px;
    right: 100%;
}

.catalog_mob_menu UL LI UL A.has_arrow Span::before,
.catalog_mob_menu UL LI UL A.has_arrow Span::after {
    right: 10px;
    top: 17px;
}

.catalog_mob_menu UL LI UL A.has_arrow Span::after {
    top: 12px;
}

/* --- Fixed mobile toolbar --- */
.mobile_toolbar {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 8px 16px;
    background: var(--white);
    z-index: 7;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    transition: bottom 0.3s ease;
}

.mobile_toolbar.no_active {
    bottom: -58px;
}

.mt_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-decoration: none;
}

.mt_btn .icon {
    width: 24px;
    height: 24px;
    margin: 0 0 6px 0;
    fill: var(--gray);
}

.mt_btn .mtb_tit {
    color: var(--gray-light);
    font-size: 12px;
    line-height: 12px;
}

.mt_btn .icon.orders,
.mt_btn .mtb_tit.orders,
.mt_btn.orders .icon.user,
.mt_btn.orders .mtb_tit.user {
    display: none;
}

.mt_btn.orders .icon.orders,
.mt_btn.orders .mtb_tit.orders {
    display: flex;
}

.mt_btn .compare_counter,
.mt_btn .wish_counter {
    top: -8px;
    left: auto;
    right: 3px;
    border: 3px solid var(--white);
    height: 24px;
    min-width: 24px;
    border-radius: 12px;
}

/* --- Main Slider --- */
.main_slider_container {
    width: 100%;
    margin: 0 auto var(--section-margin-mobile) auto;
}

.main_slider_container.main_page-slider:nth-child(1) {
    margin-top: -18px;
}

.main_slider {
    width: 100%;
}

.main_slider_container.with_menu>UL {
    display: none;
}

.main_slider_item {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    position: relative;
    min-height: calc(100vw * 16 / 15);
}

.slick-initialized .slick-slide.main_slider_item {
    display: flex;
}

.main_slider_item.dark_theme {
    color: var(--base-color-1);
}

.main_slider_item .centre {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 52px;
    padding-bottom: 52px;
}

.main_slider_item .centre > .inner {
    display: flex;
    flex-direction: column;
}

.main_slider_item picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main_slider_item Img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.main_slider_item .H1 {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 16px;
    user-select: none;    
}

.main_slider_item .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    user-select: none;    
}

.main_slider_item .slider_article {
    margin: 0;
}

.main_slider_item .slider_article ul {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin: 0 0 24px 0;
    user-select: none;
    list-style: none;
}

.main_slider_item .slider_article li {
    font-size: 15px;
    font-weight: 700;
    display: flex;
    list-style: none;
}

.main_slider_item .slider_article li::before {
    content: "";
    margin: -1px 12px 0 0;
    width: 24px;
    height: 24px;
    position: relative;
    background-image: url('../images/check-icon-dark.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.main_slider_item.dark_theme .slider_article li::before {
    background-image: url('../images/check-icon-white.svg');
}

.main_slider_item .slider_article li + li {
    margin-top: 16px;
}

.main_slider_item .slider_article li span {
    
}

.main_slider_item .slider_article li .icon {
    flex: 0 0 24px;
    margin-right: 12px;
    width: 24px;
    height: 24px;
}

.main_slider_item.dark_theme .options li .icon {
    fill: var(--base-color-1);
}

.main_slider_item .slider_links {
    display: flex;
    flex-direction: column;
}

.main_slider_item .slider_links .btn {
    width: 100%;
}

.main_slider_item .slider_links .btn + .btn {
    margin-top: 16px;
}

.main_slider_item .slider_links .btn .icon {
    margin-left: 16px;
}

.main_slider_item .slider_links .btn.download {
    background-color: var(--design-color-6);
}

.slick-current.main_slider_item Img {
    object-fit: cover;
}

.main_slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
    border-radius: var(--border-radius);
    width: 100%;
}

.main_slider:not(.slick-initialized) .main_slider_item {
    flex: 0 0 100%;
    max-width: 100%;
}

.main_slider:not(.slick-initialized) .main_slider_item:nth-child(n+3) {
    display: none;
}

.main_slider_container .slick-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    justify-content: center;
    width: 100%;
    padding: 8px;
}

.main_slider_container[data-items]:not([data-items-mob="1"]) .slick-dots {
    justify-content: flex-start;
    padding-left: 12px;
}

.slick-dots {
    display: flex
}

.slick-dots LI,
.zoom-full_screen .sub_scroll .ss_one_photo {
    display: flex;
    margin: 0 4px;
    position: relative;
}

.slick-dots Button,
.zoom-full_screen .sub_scroll .ss_one_photo {
    font-size: 0;
    padding: 0;
    background: transparent;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: relative;
    border: 2px solid transparent;
    cursor: pointer;
}

.slick-dots button::before,
.zoom-full_screen .sub_scroll .ss_one_photo::before {
    content: "";
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    position: absolute;
    -webkit-backdrop-filter: invert(.5) brightness(1.5);
    top: 50%;
    left: 50%;
    backdrop-filter: invert(.5) brightness(1.5);
    transform: translate(-50%, -50%);
}

.slick-dots LI.slick-active Button,
.zoom-full_screen .sub_scroll .ss_one_photo.active {
    border: 2px solid var(--design-color-6);
}

.slick-dots LI.slick-active Button::before,
.zoom-full_screen .sub_scroll .ss_one_photo.active::before {
    background: var(--design-color-6);
}

/* --- Slider in Catalog --- */
.list_wrap .main_slider_container {
    margin: 0 0 16px 0;
}

/* --- LogIn & Registration --- */
.login_or_reg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0 32px 0;
}

.lor_col {
    width: 100%;
    max-width: 520px;
    padding: 0 0 30px 0;
    position: relative;
}

.lor_col.signup {
    padding: 32px 0 0 0;
}

.lor_col.signup::before {
    width: 100%;
    height: 2px;
    background: var(--main-color-light);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
}

.login_place .title_wrap.hidden {
    display: flex !important;
}

.title_wrap .together {
    display: flex;
    margin: 0 0 0 16px;
}

.login_place .title_wrap .together {
    margin: 0;
}

.title_wrap .together A:last-child {
    margin: 0 0 0 8px;
}

.title_wrap .together A {
    background: var(--main-color-lighter);
}

.lor_line {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    background: var(--site-bg);
    color: var(--main-color-light);
}

.lor_box {
    background: var(--white);
    padding: 16px;
}

.login_or_reg .btn {
    width: 100%;
}

.lor_box .only_for_checkout {
    display: none;
}

/* --- Email confirm --- */
.email_confirm {
    display: flex;
    flex-direction: column;
    margin: 32px auto;
    max-width: 740px;
}

.email_confirm .icon {
    display: flex;
    justify-content: center;
    margin: 0 0 32px 0;
}

.email_confirm .icon Span {
    width: 64px;
    height: 64px;
    border: 3px solid var(--error);
    border-radius: 50%;
    position: relative;
}

.email_confirm .icon.success Span {
    border-color: var(--btn-bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.email_confirm .icon.faild Span::before,
.email_confirm .icon.faild Span::after {
    content: '';
    background: var(--error);
    position: absolute;
    top: 14px;
    left: 29px;
    width: 3px;
    height: 32px;
    transform: rotate(45deg);
}

.email_confirm .icon.faild Span::after {
    transform: rotate(-45deg);
    left: 28px;
}

.email_confirm .icon.success Span::before {
    border: 3px solid var(--btn-bg);
    border-top: none;
    border-left: none;
    content: '';
    position: absolute;
    top: 9px;
    left: 22px;
    transform: rotate(45deg);
    width: 18px;
    height: 32px;
}

.ec_tit {
    margin: 0 0 24px 0;
    text-align: center;
    font-size: 24px;
    line-height: 32px;
}

.ec_description {
    margin: 0 0 32px 0;
    text-align: center;
    color: var(--text-light);
    line-height: 1.4;
}

.email_confirm .long_div {
    align-items: center;
}

.callback_popup {
    display: flex;
    flex-direction: column;
    width: calc(100% - 20px);
    max-width: 520px;
    padding: 24px 16px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, calc(-50% - 25px));
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.callback_popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}


.callback_popup.success {
    border-radius: 12px;
    z-index: 15;
    background-color: #ffffff;
}

.callback_popup.success .popup_subtitle {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.callback_popup.success .popup_close::before,
.callback_popup.success .popup_close::after {
    background-color: #BFBFBF;
}

@media (hover: hover) {
    .callback_popup.success .popup_close::before,
    .callback_popup.success .popup_close::after {
        background-color: #333333;
    }
    
}

.callback_popup.success .popup_subtitle b {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
    margin: 0 0 22px;
    padding-bottom: 22px;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

.callback_popup.success .popup_subtitle Span {
    font-weight: 400;
    font-size: 18px;
    color: var(--text);
}

.callback_popup .popup_close {
    position: absolute;
    top: 20px;
    right: 16px;
}

.callback_popup .popup_title {
    font-weight: 700;
    padding-right: 40px;
}

.callback_popup .attach_text-info {
    margin-bottom: 10px;
}

.callback_popup .uploaded_files {
    margin-bottom: 30px;
}

.callback_popup .attach_file {
    margin-bottom: 30px;
}

.callback_popup .attach_file .row {
    margin-bottom: 0;
}

.callback_popup .attach_file .row .btn {
    margin-bottom: 0;
}

.politics_box {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    display: block;
    width: 100%;
}

.politics_box a.feedback_link {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.popup_close, .notification_close {
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.popup_close::before, .popup_close::after, .notification_close::before, .notification_close::after, .big_overlay .close_overlay::before, .big_overlay .close_overlay::after {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--base-color-6);
    transition: .3s;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 2px;
}

.popup_close::before, .notification_close::before, .big_overlay .close_overlay::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.popup_close::after, .notification_close::after, .big_overlay .close_overlay::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.email_popup .popup_close::before, 
.email_popup .popup_close::after {
    background: var(--error);
}

.popup_title {
    font-size: 22px;
    line-height: 1.4;
    margin: 0 0 16px 0;
}

.popup_title.margin_plus {
    margin: 0 0 32px 0;
}

.popup_title.small {
    font-size: 18px;
}

.popup_subtitle {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 24px 0;
}

.popup_subtitle Span {
    font-weight: 700;
    color: var(--main-color-lighter);
}

/* --- Catalog Menu - base styles --- */
.menu {
    display: none;
    flex-direction: column;
    margin: 0 0 16px 0;
    width: 100%;
}

.menu.active {
    display: flex;
}

.menu_head {
    display: none;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 2px 8px;
    background: var(--main-color);
}

.menu_close {
    position: relative;
    z-index: 2;
}

.menu_close.popup_close::before,
.menu_close.popup_close::after {
    background: var(--white);
    width: 24px;
}

.menu .over {
    overflow: auto;
}

/* --- Main-short Menu in Left Col --- */
.two_cols .main_aside .left_menu,
.two_cols .main_aside .profile_menu {
    display: none;
}

/* --- Main Level - Catalog Menu --- */
.menu UL {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 0;
}

.menu UL LI {
    width: 100%;
    margin: 0;
}

.menu UL LI:first-child {
    margin: 0;
}

.menu UL LI.popular_item {
    display: none;
}

.menu LI A,
.main_slider_container.with_menu LI A,
.main_aside .left_menu A {
    text-align: center;
    color: var(--text);
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    position: relative;
    transition: .3s;
}

.menu LI A.active,
.main_slider_container.with_menu LI A.active {
    color: var(--design-color-6);
    transition: .3s;
}

.menu LI UL LI A.active {
    background-color: unset;
    color: var(--btn-bg-hover);
}

.menu A.has_arrow::before,
.menu A.has_arrow::after {
    right: 16px;
    top: 22px;
    background: var(--main-color);
}

.menu A.has_arrow::after {
    top: 17px;
}

.menu A.has_arrow.active::before,
.menu A.has_arrow.active::after {
    background: var(--text-inverse);
}

.menu LI A Img,
.main_slider_container.with_menu LI A Img {
    display: block;
    margin: 0 12px 0 0;
    width: 18px;
    opacity: .7;
    transition: .3s;
}

.main_header .menu A svg {
    fill: var(--main-color);
    width: 18px;
    height: 18px;
    margin: 0 12px 0 0;
    transition: .3s;
}

.main_header .menu A.active svg {
    fill: var(--text-inverse);
}

/* --- Deep Levels - Catalog Menu --- */
.menu .next_level {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: calc(-100% - 20px);
    background: var(--white);
    z-index: 1;
    box-shadow: 0 8px 10px rgba(0, 0, 0, .3);
    transition: .3s;
}

.menu .next_level.active {
    left: 0;
}

.menu A.btn_back {
    color: var(--text-inverse);
    background: var(--main-color);
    padding: 12px 30px 12px 32px;
    border-radius: unset;
}

.menu A.btn_back.has_arrow::before,
.menu A.btn_back.has_arrow::after {
    right: auto;
    left: 16px;
    top: 17px;
    background: var(--text-inverse);
}

.menu A.btn_back.has_arrow::after {
    top: 22px;
}

.menu .next_level .mobile A {
    background: var(--main-color-light);
    color: var(--text-inverse);
}

.menu .next_level A.has_arrow.active::before,
.menu .next_level A.has_arrow.active::after {
    background: var(--btn-bg-hover);
}

/* --- Catalog Categories --- */
Section.category {
    margin-bottom: 0;
}

Section.category .category_list {
    margin-bottom: 24px;
}

/* --- Tiles --- */
.category_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 var(--gap-offset-mobile);
}

.one_cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 8px;
    width: calc(50% - var(--gap-mobile));
    margin: 0 0 var(--gap-mobile) var(--gap-mobile);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: .3s;
}

.category_image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 0 0 8px 0;
}

.category_image Img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: calc(var(--border-radius) / 2);
}

.cat_title {
    display: flex;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: .3s;
    text-align: center
}

/* --- Rows --- */
.row_list .category_list {
    margin: 0;
}

.row_list .one_cat {
    margin: 0 0 var(--gap-mobile) 0;
    width: 100%;
    flex-direction: row;
}

.row_list .category_image {
    margin: 0 16px 0 0;
    width: 40%;
}

.row_list .cat_title {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
}

/* --- List (with SUB categories) --- */
.list_info .category_list {
    margin: 0;
}

.list_info .one_cat {
    margin: 0 0 var(--gap-mobile) 0;
    width: 100%;
    justify-content: flex-start;
}

.list_info .category_image {
    margin: 0 0 12px 0;
}

.list_info .cat_title {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    font-size: 18px;
}

.list_info UL {
    width: 100%;
    margin: 12px 0 0 0;
    position: relative;
    overflow: hidden;
    max-height: 192px;
}

.list_info UL.full_list {
    height: 100%;
    max-height: unset;
}

.category_list UL A {
    display: flex;
    padding: 6px 8px;
    color: var(--text);
    text-decoration: none;
    margin: 0 0 4px 0;
    background: var(--site-bg);
    position: relative;
    font-size: 14px;
    transition: .3s;
}

.list_info UL LI.more {
    bottom: 0;
    left: 0;
    padding: 4px 0 0 0;
    width: 100%;
    background: var(--white);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
}

.list_info UL LI.more A.show,
.list_info UL LI.less A.show {
    padding: 6px 8px 6px 32px;
    margin: 0;
    background: none;
    width: max-content;
    color: var(--link);
}

.list_info UL LI A.has_arrow::before,
.list_info UL LI A.has_arrow::after {
    right: auto;
    top: 15px;
}

.list_info UL LI.more A.has_arrow.bottom::before,
.list_info UL LI.less A.has_arrow.top::after {
    left: 13px;
}

.list_info UL LI.more A.has_arrow.bottom::after,
.list_info UL LI.less A.has_arrow.top::before {
    left: 8px;
}

.list_info UL LI.more .less,
.list_info UL LI.less .more {
    display: none;
}

.list_info UL LI.more .more,
.list_info UL LI.less .less {
    display: flex;
}

.list_info UL LI.less A.show {
    background: none;
}

/* --- Store window Slider --- */
.product_slider.centre,
.reviews_sect.if_slider,
.last_blogs.if_slider {
    padding: 0;
}

.product_slider.has_tabs {
    margin-bottom: var(--section-margin-mobile);
}

.product_slider .title_wrap,
.reviews_sect.if_slider .title_wrap {
    justify-content: flex-start;
    position: relative;
    z-index: 1;
    align-items: baseline;
    margin-left: var(--margin-lt-rt);
    margin-right: var(--margin-lt-rt);
    width: calc(100% - var(--margin-lt-rt-twice));
}

.title_wrap .link {
    position: relative;
    padding: 0 16px 0 0;
}

.product_slider .product_tabs,
.product_box .product_tabs {
    position: relative;
    top: 0;
    z-index: unset;
    padding-top: 0;
    margin: 0 0 16px var(--margin-lt-rt-minus);
}

.product_slider .product_tabs {
    width: 100%;
    margin-left: 0;
}

.product_slider .product_tabs A,
.product_box .product_tabs A {
    z-index: 2;
    padding: 0;
}

.product_slider .product_tabs.no_title A,
.product_box .product_tabs.no_title A {
    padding: 0 0 8px 0;
}

/* --- Slider --- */
.product_slider .product_inner,
.if_slider .category_comments,
.if_slider .last_blog_items {
    display: flex;
    width: 100%;
    margin-bottom: calc(var(--section-margin-mobile) - var(--gap-mobile));
    overflow: hidden;
    padding: 0 0 0 var(--gap-mobile);
}

.product_slider.has_tabs .product_inner {
    margin-bottom: var(--gap-offset-mobile);
}

.product_slider .product_inner:not(.slick-initialized) {
    padding: 0 var(--gap-mobile) 0 0;
}

.product_slider .product_inner .slick-list,
.category_comments .slick-list,
.last_blog_items .slick-list {
    padding-right: var(--gap-mobile);
    width: calc(100% + var(--gap-mobile));
    margin-left: var(--gap-offset-mobile);
}

.product_inner .slick-track,
.category_comments .slick-track,
.last_blog_items .slick-track {
    min-width: 100%;
    display: flex;
    width: 100%;
    transform: translate3d(0, 0, 0);
}

.product_slider .product_inner .one_good {
    flex-shrink: 0;
}

/* --- Arrows --- */
.slick-arrow {
    z-index: 1;
    font-size: 0;
    background: var(--design-color-7);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    width: 32px;
    height: 40px;
    position: absolute;
    cursor: pointer;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    border: none;
    box-shadow: 0 0 8px #00000024;
    transition: .3s;
}

.slick-arrow.slick-next {
    left: auto;
    right: 15px;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.slick-arrow::before,
.slick-arrow::after {
    right: 8px;
    top: 23px;
    width: 14px;
    height: 3px;
    background: var(--white);
}

.slick-arrow::after {
    top: 14px;
}

.see_all_if_many {
    display: flex;
    margin: 8px 0 0 0;
}

.has_tabs .see_all_if_many {
    padding: 0 var(--margin-lt-rt);
}

.see_all_if_many A.link {
    position: relative;
    padding: 0 16px 0 0;
}

.details_product .product_slider {
    width: calc(100% + 16px);
    margin-left: -8px;
}

/* --- Last viewed on Main page - if Grid --- */
.product_grid {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--section-margin-mobile);
}

.product_grid .box {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + var(--gap-mobile));
    margin: 0 0 var(--gap-offset-mobile) var(--gap-offset-mobile);
}

.product_grid .one_good:nth-child(3),
.product_grid .one_good:nth-child(4),
.product_grid .one_good:nth-child(5),
.product_grid .one_good:nth-child(6),
.product_grid .one_good:nth-child(7),
.product_grid .one_good:nth-child(8) {
    display: none;
}

.product_grid .all .one_good:nth-child(3),
.product_grid .all .one_good:nth-child(4),
.product_grid .all .one_good:nth-child(5),
.product_grid .all .one_good:nth-child(6),
.product_grid .all .one_good:nth-child(7),
.product_grid .all .one_good:nth-child(8) {
    display: block;
}

/* --- Tile Universal --- */
.tiles {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: var(--section-margin-mobile);
    padding: 0;
    max-width: unset;
}

.tiles .title_wrap {
    margin: 0 auto 30px auto;
    padding: 0 var(--margin-lt-rt);
    max-width: var(--content-width);
    width: 100%;
    order: -1;
}

.tiles.if_slider {
    padding: 0;
}

.tiles.if_slider.has_background {
    padding: var(--margin-lt-rt-twice) 0;
}

.tiles.has_background {
    padding: var(--margin-lt-rt-twice) var(--margin-lt-rt);
}

.main_title.title_h2 {
    font-size: 16px;
    font-weight: 400;
    margin: 0 auto 20px auto;
    padding: 0 var(--margin-lt-rt);
    max-width: var(--content-width);
    width: 100%;
}

.tiles .tiles_description {
    margin: 0 auto 27px auto;
    padding: 0 var(--margin-lt-rt);
    max-width: var(--content-width);
    width: 100%;
}

.tiles .tiles_description Article {
    margin: 0;
}

.one_tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    width: 100%;
    border-radius: var(--border-radius);
    margin: 0;
    text-decoration: none;
    transition: .3s;
}

.one_tile .box {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    padding: 0;
}

.tile_image {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 0 20px 0;
}

.tile_image Img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 4 / 3;
    border-radius: calc(var(--border-radius) / 2);
}

.tile_title {
    font-size: 20px;
    display: flex;
    color: var(--text);
    text-decoration: none;
    transition: .3s;
}

.tile_description {
    color: var(--text);
    margin: 12px 0 0 0;
    font-size: 13px;
}

.tile_description > *:not(:last-child) {
    margin-bottom: 16px;
}

.tiles A.btn.view_all {
    margin: 20px auto 0 auto;
}

.tile_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.tile_background Img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    pointer-events: none;
    border-radius: var(--border-radius);
}

/* --- If Grid --- */
.tiles_grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0 var(--margin-lt-rt);
    max-width: var(--content-width);
    width: 100%;
}

.tiles_grid .one_tile:nth-child(1n + 2) {
    margin-top: 40px;
}

/* --- If Slider --- */

.if_slider .tiles_slider {
    padding: 0 15px;
    margin: 0 auto;
    max-width: var(--content-width);
    width: 100%;
    overflow: hidden;
}

.if_slider .tiles_slider:not(.slick-initialized) .one_tile {
    margin: 0 16px 0 0;
    width: 100%;
    flex-shrink: 0;
}

.if_slider .tiles_slider .slick-list {
    margin: 0 -8px;
    width: calc(100% + 16px);
}

.if_slider .tiles_slider .slick-list::before,
.if_slider .tiles_slider .slick-list::after {
    content: "";
    width: 8px;
    height: 100%;
    background-color: var(--base-color-1);
    position: absolute;
    top: 0;
    z-index: 1;
}

.if_slider .tiles_slider .slick-list::before {
    left: 0;
}

.if_slider .tiles_slider .slick-list::after {
    right: 0;
}

.if_slider .tiles_slider.slick-initialized .one_tile {
    width: auto;
    margin: 0 8px;
}

/* --- FAQ --- */
.faq {
    max-width: 992px;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--section-margin-mobile);
}

.faq.has_background {
    padding: var(--margin-lt-rt-twice) var(--margin-lt-rt);
    border-radius: var(--border-radius);
}

.faq .title_wrap {
    text-align: center;
    justify-content: center;
    margin-bottom: 4px;
    margin-left: auto;
    margin-right: auto;
    max-width: 660px;
}

.faq .faq_description {
    margin-top: var(--gap-desktop);
}

.faq .faq_description Article {
    margin: 0;
}

/* --- If Grid --- */
.faq_grid,
.cat_faq DL {
    display: flex;
    flex-direction: column;
}

.faq .one_question,
.cat_faq .one_question {
    display: flex;
    flex-direction: column;
    padding: 2px 0;
    background: var(--white);
    border-bottom: 1px solid var(--base-color-4);
    margin: 0;
    transition: .3s;
}

.faq .one_question:last-child {
    margin: 0;
}

.faq .faq_question,
.cat_faq DT {
    display: flex;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 16px 16px 48px;
    position: relative;
    width: 100%;
    transition: .3s;
}

.faq .faq_question {
    padding: 18px 32px 18px 0;
}

.faq .faq_question::before,
.faq .faq_question::after {
    content: "";
    width: 18px;
    height: 2px;
    background-color: var(--base-color-6);
    position: absolute;
    top: 50%;
    right: 8px;
    transition: transform 0.3s, background-color 0.3s;
}

.faq .faq_question::before {
    transform: translateY(-50%);
}

.faq .faq_question::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq .one_question.open .faq_question::before {
    background-color: var(--design-color-2);
    /* transform: translateY(-50%) rotate(45deg); */
}

.faq .one_question.open .faq_question::after {
    
    transform: translateY(-50%) rotate(0deg);
}

.cat_faq DT.has_arrow::before,
.cat_faq DT.has_arrow::after {
    left: 24px;
    top: 26px;
    right: auto;
    width: 12px;
}

.cat_faq DT.has_arrow::after {
    left: 16px;
    right: auto;
}

.faq .one_question .faq_answer,
.cat_faq DD {
    display: none;
    padding: 0 0 20px 0;
    line-height: 1.5;
}

.faq .one_question.open .faq_answer,
.cat_faq .open DD {
    display: flex;
}

.faq .btn.view_all {
    margin-top: var(--gap-mobile);
}

/* --- If Slider --- */
.faq_slider {
    width: calc(100% + var(--margin-lt-rt-twice));
    margin: var(--gap-offset-mobile) 0 0 var(--margin-lt-rt-minus);
    display: flex;
    padding: 0 var(--margin-lt-rt) 0 0;
}

.has_background .faq_slider {
    padding-left: var(--gap-mobile);
}

.faq_slider UL {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
}

.faq_slider .one_question {
    margin: var(--gap-mobile) 0 var(--gap-mobile) var(--gap-mobile);
}

.faq_slider:not(.slick-initialized) {
    padding: 0 var(--gap-mobile) 0 0;
    overflow: hidden;
}

.faq_slider:not(.slick-initialized) .one_question {
    flex-shrink: 0;
    width: calc(100% - var(--gap-mobile));
}

.faq .faq_slider .faq_question {
    padding: 16px 42px;
    pointer-events: none;
}

.faq .faq_slider .faq_answer {
    display: flex;
    padding: 0 42px 16px 42px;
}

.if_slider .faq_description {
    margin-top: calc(var(--gap-desktop) - var(--gap-mobile));
}

/* --- Single Video --- */
.video_box {
    margin: 0 0 16px 0;
}

.video_wrap {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video_wrap Iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video_preview {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.video_preview Img {
    width: 100%;
    height: auto;
}

.video_preview .icon {
    width: 64px;
    height: auto;
    fill: var(--youtube);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* --- Product - One Item --- */
.product_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.products_not_found {
    font-size: 18px;
    padding: 64px;
}

.one_good {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
    background: var(--white);
}

.catalog_grid .one_good {
    flex: 0 0 100%;
    width: auto;
    margin: 0;
}

.catalog_grid .one_good:nth-child(1n + 2) {
    margin-top: 32px;
}

.og_inner {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* --- Status of product --- */
.one_good .status_list,
.big_slider .status_list,
.big_slider .status_images {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--margin-lt-rt);
    left: var(--margin-lt-rt);
    z-index: 3;
}

.one_good .status_list Span,
.big_slider .status_list Span {
    display: flex;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: var(--btn-radius);
    margin: 0 0 4px 0;
}

.one_good .status_list Span.sale_percent,
.big_slider .status_list Span.sale_percent {
    background: var(--error);
    color: var(--white);
}

.unavailability.one_good .status_list Span,
.unavailability .big_slider .status_list Span {
    opacity: .4;
}

/* --- Label for product --- */
.one_good .status_images {
    position: absolute;
    left: 0;
    bottom: 0;
}

.one_good .status_images .status_image {
    display: flex;
    width: 48px;
    height: 48px;
    margin: 4px 0 0 0;
}

.one_good .status_images .status_image:first-child {
    margin: 0;
}

/* --- Wish & Compare - Product --- */
.add_in-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
}

.add_in-list A,
.add_in-list .check_wrap {
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: var(--btn-radius);
    background: var(--white);
    align-items: center;
    justify-content: center;
    margin: 0 0 4px 0;
    position: relative;
    transition: .3s;
}

.add_in-list A .icon {
    width: 24px;
    height: 24px;
    fill: var(--icon-color-gray);
    transition: .3s;
}

.add_in-list A.active .icon {
    fill: var(--btn-bg);
}

.add_in-list A.wishes .icon.active,
.add_in-list A.wishes.active .icon {
    display: none;
}

.add_in-list A.wishes.active .icon.active {
    display: flex;
    fill: var(--error);
}

.add_in-list A.to_compare_list.active::after {
    content: '';
    position: absolute;
    width: 17px;
    height: 17px;
    background: var(--btn-bg);
    border-radius: 50%;
    top: 1px;
    right: 1px;
    border: 2px solid var(--white);
}

.add_in-list A.to_compare_list.active::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 6px;
    border-bottom: 2px solid var(--white);
    border-left: 2px solid var(--white);
    top: 3px;
    right: 1px;
    border-radius: 0;
    transform: rotate(-45deg);
    z-index: 1;
}

.photo_and_name {
    display: flex;
    flex-direction: column;
    z-index: 2;
}

/* --- Photo - Product --- */
.one_good .photo_wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 0 24px 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.one_good .photo_wrap Img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.unavailability.one_good .photo_wrap Img {
    opacity: .4;
}

/* --- Name - Product --- */
.one_good .product_name {
    text-decoration: none;
    display: flex;
    font-weight: 500;
    margin: 0 0 18px 0;
    font-size: 16px;
    color: var(--text);
}

.unavailability.one_good .product_name Span {
    opacity: .4;
}

.one_good .product_name.long Span {
    height: unset;
    overflow: visible;
}

.one_good .product_location {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.one_good .product_location .icon {
    flex: 0 0 20px;
    margin-right: 10px;
    fill: var(--design-color-6);
    width: 20px;
    height: 20px;
}

.one_good .product_signs {
    font-size: 14px;
}

/* --- CATALOG list --- */
.catalog_list {
    margin-bottom: var(--section-margin-mobile);
}

.catalog_list .title_wrap {
    margin: 0 0 8px 0;
}

.catalog_list .title_wrap .main_title {
    margin: 0;
    flex-direction: column;
}

.catalog_list .search_title {
    margin: 0 16px 0 0;
}

.catalog_list .search_title Span {
    color: var(--orange);
}

.search_title_results {
    font-size: 14px;
    color: var(--text-light);
    margin: 8px 0;
}

.control_products {
    display: flex;
    justify-content: space-between;
    margin: 0 0 16px var(--gap-offset-mobile);
    position: sticky;
    top: 70px;
    z-index: 5;
    background: var(--site-bg);
    padding: 8px;
    width: calc(100% + var(--margin-lt-rt-twice));
    border-bottom: 1px solid var(--border-color);
}

.control_products .selected_filters {
    display: none;
}

.control_products .dropdown {
    margin: 0 0 0 16px;
    max-width: 190px;
}

/* --- Search results --- */
.catalog_list.search .nothing_found {
    display: flex;
}

.catalog_list.search .nothing_found .main_title {
    margin: 0 auto;
    width: 100%;
    max-width: 940px;
}

.search_pic_no_found {
    display: flex;
    width: 100%;
}

.search_pic_no_found Img {
    width: 60%;
    height: auto;
    margin: 0 auto 32px;
}

.catalog_list.search .nothing_found .together {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catalog_list.search .search_title {
    margin: 0 0 16px 0;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.catalog_list.search .search_title Div {
    text-transform: lowercase;
}

.nothing_found .search_title_results {
    margin: 0 0 16px 0;
    font-size: 15px;
    line-height: 1.4;
}

.catalog_list.search .nothing_found .long_div {
    flex-direction: row;
    justify-content: center;
}

.catalog_list.search .nothing_found .long_div A.btn {
    margin: 0 8px;
}

/* --- Click Path --- */
.clickpath_place {
    display: flex;
    width: 100%;
    margin: 0 0 24px 0;
}

.clickpath {
    display: flex;
    z-index: 1;
    position: relative;
    overflow-x: auto;
}

.clickpath li {
    display: flex;
    margin-right: 8px;
}

.clickpath A {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    padding: 0 16px 0 0;
    position: relative;
    white-space: nowrap;
    transition: .3s;
}

.clickpath .clickpath_item.current A {
    padding-right: 0;
}

.clickpath .clickpath_item.current A::before,
.clickpath .clickpath_item.current A::after {
    display: none;
}

/* --- Filters --- */
.catalog_filters {
    color: var(--text);
    position: fixed;
    top: 0;
    left: -330px;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    overflow: auto;
    width: 300px;
    background: var(--site-bg);
    z-index: 13;
    transition: .3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
    padding: 24px 8px 8px 8px;
    overflow-x: hidden;
    justify-content: space-between;
}

.catalog_filters.active {
    left: 0;
}

.close_menu.dark::after,
.close_menu.dark::before {
    background: var(--gray);
}

/* --- Selected filters --- */
.selected_filters {
    background: var(--main-color);
    color: var(--text-inverse);
    margin: -24px 0 8px -8px;
    padding: 24px 8px 2px 8px;
    width: calc(100% + 16px);
}

.selected_filters_list {
    display: flex;
    flex-wrap: wrap;
}

.clear_filters {
    order: 1;
    margin: -14px 0 12px 0;
}

.clear_filters .deactivate-filter {
    border: none;
    padding: 0 16px;
    margin: 0;
    background: var(--orange);
}

.clear_filters .deactivate-filter::before,
.clear_filters .deactivate-filter::after {
    display: none;
}

.one_ch_fil {
    display: flex;
    align-items: center;
    margin: 4px 8px 4px 0;
    order: 2;
    flex-wrap: wrap;
}

.ocf_title {
    font-size: 12px;
    margin: 0 6px 0 0;
}

.deactivate-filter {
    display: flex;
    align-items: center;
    width: max-content;
    margin: 0 4px 4px 0;
    padding: 2px 20px 2px 4px;
    border: 1px solid var(--sub-color);
    position: relative;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: .3s;
}

.deactivate-filter::before,
.deactivate-filter::after {
    content: '';
    width: 10px;
    height: 2px;
    border-radius: 2px;
    background: var(--sub-color);
    position: absolute;
    top: 50%;
    right: 0;
    transition: .3s;
}

.deactivate-filter::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.deactivate-filter::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* --- Filters for select --- */
.catalog_filters .menu_item {
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

/* --- Categories in Search results --- */
.searched_cats {
    margin: -24px 0 0 0;
    padding: 24px 0 16px 0;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.searched_cats .tit {
    font-size: 14px;
    color: var(--text-light);
    margin: 8px 0 8px 0;
    width: 100%;
    display: flex;
}

.searched_cats A {
    font-size: 17px;
}

.searched_cats UL LI UL A {
    font-size: 15px;
    padding: 8px 32px 8px 16px;
}

.searched_cats UL LI UL LI UL A {
    padding: 6px 0 6px 32px;
}

.searched_cats A.active {
    color: var(--orange);
}

.searched_cats A.has_arrow.active::before,
.searched_cats A.has_arrow.active::after {
    background: var(--orange);
}

/* --- Price filter --- */
.choose_price {
    margin: -24px 0 0 0;
    padding: 24px 0 0 0;
}

.menu_item-title,
.searched_cats A {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--link);
    padding: 8px 32px 8px 0;
    position: relative;
    transition: .3s;
}

.fs_title_price {
    max-width: max-content;
}

.fs_title_price.long {
    max-width: unset;
}

.menu_item-title.has_arrow.bottom::before,
.menu_item-title.has_arrow.bottom::after {
    top: 16px;
}

.catalog_filters .filter_img {
    width: 24px;
    height: 24px;
    margin: 0 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu_item-title Img,
.menu_item-title svg,
.menu_item .check_item Img,
.menu_item .check_item svg {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: var(--btn-radius);
}

.menu_item-title svg {
    fill: var(--link);
    transition: .3s;
}

.hidden_menu {
    margin: 8px 0;
}

.choose_price .hidden_menu,
.fil_slider .hidden_menu {
    margin: 8px 0 24px;
}

.hidden_menu LI {
    position: relative;
}

.hidden_menu LI.nothing_found {
    padding: 8px 0 0 0;
    color: var(--gray-light);
}

.price_filter {
    display: flex;
    flex-direction: column;
}

.price_filter .together {
    display: flex;
    align-items: center;
    margin: 0 0 24px 0;
}

.price_filter Input {
    width: 34%;
}

.price_filter Span {
    margin: 0 4px;
}

A.submit_filters {
    margin: 0 0 0 16px;
    text-transform: uppercase;
}

.fil_slider Input.search_filter {
    width: 100%;
    margin: 0 0 8px 0;
}

/* --- Common filters - Rows --- */
.menu_item .check_item {
    display: flex;
    align-items: flex-start;
    padding: 8px 8px 8px 32px;
    border-radius: var(--border-radius);
    font-size: 14px;
    cursor: pointer;
}

.menu_item .check_item.no_active {
    opacity: .4;
    pointer-events: none;
}

.menu_item .check_item::before {
    left: 8px;
}

.menu_item .with_img .check_item::before {
    top: 9px;
}

.menu_item .check_item::after {
    left: 12px;
}

.menu_item .with_img .check_item::after {
    top: 13px;
}

.menu_item .check_item .filter_counter,
.searched_cats A Span {
    opacity: .5;
    margin: 0 0 0 6px;
    font-size: 12px;
}

.catalog_filters .check_item .filter_img {
    width: 20px;
    height: 20px;
    margin: -2px 8px 0 0;
}

.catalog_filters .check_item .filter_img.is_white Img,
.catalog_filters .check_item .filter_img.is_white svg {
    border: 1px solid var(--border-color);
}

.menu_item .check_item svg {
    fill: var(--link);
}

/* --- Tile filters --- */
.fil_group_grid .filter_list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 8px);
}

.menu_item.fil_group_grid .check_item {
    margin: 0 8px 8px 0;
    padding: 2px 8px;
    width: max-content;
    border: 1px solid var(--border-color);
    border-radius: var(--btn-radius);
    transition: .3s;
}

.menu_item.fil_group_grid .check_item.active {
    border-color: var(--sub-color);
    background-color: var(--sub-color);
    color: var(--text-inverse);
}

.fil_group_grid .check_item::before,
.fil_group_grid .check_item::after {
    display: none;
}

.menu_item.fil_group_grid .check_item Span {
    min-width: 20px;
    text-align: center;
}

/* --- Select (Dropdown) filters --- */
.fil_group_dropdown .dropdown {
    margin: 0 16px 24px 0;
}

.fil_group_dropdown .dropdown Span .filter_img {
    padding: 0;
}

.fil_group_dropdown .dropdown Span .filter_img Img,
.fil_group_dropdown .dropdown Span .filter_img svg {
    max-width: 100%;
    max-height: 100%;
    border-radius: var(--border-radius);
}

.fil_group_dropdown .dropdown Span .filter_img.is_white Img,
.fil_group_dropdown .dropdown Span .filter_img.is_white svg {
    border: 1px solid var(--border-color);
}

.fil_group_dropdown.menu_item .check_item {
    padding: 8px;
}

.catalog_filters .fil_group_dropdown .check_item .filter_img {
    padding: 0;
}

.fil_group_dropdown .dropdown Span.name {
    color: var(--link);
    padding: 0;
}

.fil_group_dropdown .dropdown .check_item::before,
.fil_group_dropdown .dropdown .check_item::after {
    display: none;
}

/* --- Tile Photo filters --- */
.fil_slider .hidden_menu.filter_tile_photo {
    margin: 8px 0 16px;
}

.filter_tile_photo UL {
    display: flex;
    flex-wrap: wrap;
}

.filter_tile_photo UL LI {
    display: flex;
    width: calc(50% - 4px);
    margin: 0 4px 8px 0;
}

.filter_tile_photo UL LI:nth-child(2n) {
    margin: 0 0 8px 4px;
}

.filter_tile_photo .check_item {
    border: 1px solid var(--border-color);
    width: 100%;
    padding: 8px;
    flex-direction: column;
    align-items: center;
}

.filter_tile_photo .check_item.active {
    border-color: var(--sub-color);
    background-color: var(--sub-color);
    color: var(--text-inverse);
}

.filter_tile_photo .check_item::before,
.filter_tile_photo .check_item::after {
    display: none;
}

.catalog_filters .filter_tile_photo .check_item .filter_img {
    width: 100%;
    height: 42px;
    margin: 0 0 8px 0;
}

.catalog_filters .filter_tile_photo .name {
    text-align: center;
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog_filters .filter_tile_photo .filter_counter {
    margin: 4px 0 0 0;
}

/* --- Submit Button for filters --- */
.apply_filters {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.fil_group_grid .apply_filters {
    position: relative;
    top: auto;
    right: auto;
    transform: unset;
    margin: -16px 0 16px 0;
}

.one_but .apply_filters.for_one_but {
    top: auto;
    transform: translate(0, 0);
    right: auto;
    bottom: -8px;
    background: var(--site-bg);
    padding: 16px 8px;
    width: calc(100% + 16px);
    left: -8px;
    position: sticky;
    margin: -1px 0 0 -8px;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border-color);
    z-index: 1;
}

.one_but .apply_filters.for_one_but A.submit_filters {
    box-shadow: none;
}

.catalog_filters .for_one_but {
    display: none;
}

.apply_filters A.submit_filters {
    margin: 0;
    box-shadow: 6px 0 12px rgba(0, 0, 0, .3);
}

.apply_filters A.submit_filters::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    bottom: auto;
    top: -2px;
    left: -11px;
    border-width: 19px 10px 19px 0;
    transition: .3s;
    border-color: transparent var(--main-color) transparent transparent;
}

.fil_group_grid .apply_filters A.submit_filters::after,
.one_but .apply_filters.for_one_but A.submit_filters::after,
.one_but .apply_filters,
.no_but .apply_filters {
    display: none;
}

/* --- Filters as Slider under Products --- */
.brands_slider {
    margin: 0 0 8px 0;
    display: flex;
    width: 100%;
}

.brands_slider-inner {
    display: flex;
    width: 100%;
    overflow: auto;
    padding: 0 0 8px 0;
}

.brands_slider-inner .outer_fv {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px 0 0;
    width: 110px;
    border-radius: var(--border-radius);
    background: var(--white);
    overflow: unset;
    padding: 24px 8px;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    flex-shrink: 0;
    transition: border-color .3s;
}

.brands_slider-inner .outer_fv.active {
    border-color: var(--sub-color);
}

.brands_slider-inner .outer_fv.has_button {
    padding: 12px 8px 38px 8px;
}

.brands_slider-inner .outer_fv.no_active {
    opacity: .4;
    pointer-events: none;
}

.brands_slider .apply_filters {
    bottom: 0;
    left: 0;
    top: auto;
    transform: unset;
    width: 100%;
}

.brands_slider .apply_filters A.submit_filters {
    box-shadow: none;
    min-height: 28px;
    width: 100%;
    font-size: 12px;
    border-radius: 0 0 2px 2px;
}

.brands_slider .apply_filters A.submit_filters::after {
    display: none;
}

.brands_slider-inner .outer_fv Img {
    max-width: 100%;
    max-height: 100%;
}

/* All reviews in Catalog */
/* --- If Grid --- */
.reviews_sect {
    margin-bottom: calc(var(--section-margin-mobile) - var(--gap-mobile));
}

.reviews_sect .product_raiting {
    border-top: 1px solid var(--border-color);
    margin: -12px 0 16px 0;
    padding: 16px 0 0 0;
    align-items: baseline;
}

.reviews_sect.if_slider .product_raiting {
    padding-left: var(--margin-lt-rt);
    padding-right: var(--margin-lt-rt);
}

.reviews_sect .product_raiting.no_active {
    display: none;
}

.reviews_sect_rate {
    margin: 0 8px 0 0;
    color: var(--main-color-lighter);
    font-weight: 700;
    font-size: 18px;
}

.rsr_2 {
    font-size: 19px;
}

.rsr_3 {
    font-size: 20px;
}

.rsr_4 {
    font-size: 21px;
}

.rsr_5 {
    font-size: 22px;
}

.reviews_sect_users {
    color: var(--text-light);
}

.if_grid .category_comments {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + var(--gap-mobile));
    margin: 0 0 0 var(--gap-offset-mobile);
}

.reviews_sect .one_review {
    width: calc(100% - var(--gap-mobile));
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 8px;
    background: var(--white);
    border-radius: var(--border-radius);
    border-right: 1px solid var(--site-bg);
    border-bottom: 1px solid var(--site-bg);
    margin: 0 0 var(--gap-mobile) var(--gap-mobile);
}

.reviews_sect .photo_and_name {
    flex-direction: row;
    margin: 0 0 8px 0;
}

.reviews_sect .ag_photo {
    height: 100px;
}

.reviews_sect .product_name {
    height: max-content;
    max-height: 100px;
    overflow: hidden;
    display: flex;
    text-decoration: none;
}

.reviews_sect .product_name Span {
    display: inline-block;
    font-size: 14px;
    line-height: 1.2;
    color: var(--link);
    width: 100%;
    overflow: hidden;
    height: auto;
    transition: .3s;
}

.reviews_sect .review_col {
    z-index: 2;
    border-top: 1px solid var(--border-color);
}

.reviews_sect .together {
    max-width: calc(100% - 95px);
}

.reviews_sect .comment_top,
.reviews_sect .comment_body {
    width: 100%;
}

.reviews_sect .comment_top {
    margin: 0;
    padding: 8px 0;
}

.reviews_sect .comment_top .comment_name {
    height: 20px;
    overflow: hidden;
}

.reviews_sect .comment_top .product_raiting {
    padding: 0;
    border: none;
}

.reviews_sect .review_text {
    margin: 8px 0;
    line-height: 1.6;
    overflow: hidden;
    max-height: 118px;
}

/* --- If Slider --- */
.if_slider .category_comments {
    margin-bottom: 0;
}

.if_slider .category_comments:not(.slick-initialized) {
    padding: 0 var(--gap-mobile) 0 0;
    overflow: hidden;
}

.if_slider.reviews_sect .review_text {
    height: 118px;
}

/* --- Pagination --- */
.pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border-radius: var(--border-radius);
}

.for_load_more {
    display: flex;
    justify-content: center;
    width: 100%;
}

.for_load_more .btn {
    width: 100%;
    padding: 0 22px;
}

.for_load_more .btn .icon {
    margin-right: 8px;
}

.for_pag_numbers {
    display: flex;
    width: 100%;
    justify-content: center;
}

.pages_wrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.pages_list {
    display: none;
}

.pages_list A,
.pages_list Span,
.pages_btn {
    font-size: 18px;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border-radius: var(--btn-radius);
    margin: 0 4px;
    background: none;
    border: 1px solid var(--sub-color-light);
    transition: .3s;
    position: relative;
}

.pages_btn.pages_prev,
.pages_btn.pages_next {
    width: 48px;
    flex-shrink: 0;
}

.pages_list Span {
    border-color: transparent;
}

.pages_list A.active {
    background: var(--main-color-lighter);
    color: var(--text-inverse);
}

.pages_btn.no_active {
    pointer-events: none;
    opacity: .5;
}

.pages_btn.has_arrow::before,
.pages_btn.has_arrow::after {
    top: 16px;
    right: calc(50% - 5px);
    width: 9px;
    height: 3px;
}

.pages_btn.has_arrow::after {
    top: 11px;
}

.info_page {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}


/* --- Seo categories & prices --- */
.price_by_cat,
.seo_by_cat,
.cat_faq {
    margin: 24px 0 16px;
}

.price_by_cat H3,
.seo_by_cat H3,
.cat_faq H3 {
    font-size: 18px;
    margin: 0 0 12px 0;
    font-weight: normal;
}

.price_by_cat Table,
.cat_faq .open DD Table {
    width: 100%;
    border-collapse: collapse;
}

.price_by_cat TR,
.cat_faq .open DD TR {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.price_by_cat TR:last-child,
.cat_faq .open DD TR:last-child {
    border: none;
}

.price_by_cat TD,
.cat_faq .open DD TD {
    padding: 8px;
}

.price_by_cat TR TD:last-child,
.cat_faq .open DD TD:last-child {
    min-width: 90px;
    text-align: right;
}

/* --- Seo Faq --- */
.cat_faq .one_question {
    margin: 0 0 8px 0;
}

.cat_faq DT {
    padding: 8px 8px 8px 32px;
    font-size: 16px;
}

.cat_faq DT.has_arrow::before,
.cat_faq DT.has_arrow::after {
    width: 8px;
    left: 16px;
    top: 19px;
}

.cat_faq DT.has_arrow::after {
    left: 11px;
}

.cat_faq .open DT.has_arrow::before,
.cat_faq .open DT.has_arrow::after {
    width: 12px;
    left: 12px;
}

/* --- BLOG (News) --- */
/* --- List - BLOG (News) --- */
.blog_list {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--section-margin-mobile);
}

.blog_items {
    display: flex;
    flex-direction: column;
    margin-left: var(--gap-offset-mobile);
}

.one_blog {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    padding: 8px;
    margin: 0 0 var(--gap-mobile) var(--gap-mobile);
    line-height: 1.6;
    width: calc(100% - var(--gap-mobile));
    transition: .3s;
    border-radius: var(--border-radius);
}

.blog_image {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 0 0 8px 0;
}

.blog_image Img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: calc(var(--border-radius) / 2);
}

.blog_name {
    display: flex;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.blog_text {
    margin: 8px 0 0 0;
    font-size: 13px;
    max-height: 176px;
    display: flex;
    overflow: hidden;
}

.blog_info {
    display: flex;
    border-top: 1px solid var(--site-bg);
    margin: 8px 0 0 -8px;
    padding: 8px 8px 0 8px;
    width: calc(100% + 16px);
    justify-content: space-between;
    color: var(--main-color-light);
    font-size: 12px;
}

.blog_info .icon {
    fill: var(--main-color-light);
    width: 14px;
    height: 14px;
}

.blog_info Div {
    display: flex;
    align-items: center;
}

.blog_info .together Div {
    margin: 0 0 0 16px;
}

/* --- Last News - BLOG (News) --- */
.last_blogs {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--section-margin-mobile);
}

/* --- If Slider --- */
.last_blogs.if_slider {
    margin-bottom: 0;
}

.if_slider .last_blog_items:not(.slick-initialized) {
    padding: 0 var(--gap-mobile) 0 0;
}

.if_slider .last_blog_items:not(.slick-initialized) .one_blog {
    flex-shrink: 0;
    max-width: 100%;
}

/* --- If Grid --- */
.last_blogs.if_grid .title_wrap {
    margin-left: 0;
    margin-right: 0;
}

.if_grid .last_blog_items {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + var(--gap-mobile));
    margin: 0 0 0 var(--gap-offset-mobile);
}

.last_blogs .title_wrap {
    margin-bottom: 24px;
}

.last_blogs .title_wrap .btn {
    display: none;
}

.last_grid {
    margin-bottom: 26px;
}

.last_grid .last_item:not(:first-child) {
    display: none;
}

.last_item .blog_image {
    margin-bottom: 26px;
}

.last_item .blog_image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.last_item .content {
    display: flex;
    flex-direction: column;
}

.last_item .time {
    font-size: 14px;
    color: var(--base-color-5);
    margin-bottom: 16px;
}

.last_item .blog_name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.last_item .blog_text {
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

.last_grid + .btn {
    width: 100%;
}

/* --- Details - BLOG (News) --- */
.blog_details {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--section-margin-mobile);
}

.blog_details .main_title.mob {
    margin-bottom: 24px;
}

.blog_details .blog_info {
    color: var(--text);
    font-size: 14px;
    font-weight: 300;
    justify-content: flex-start;
    margin: 0 0 26px 0;
    padding: 0;
    width: 100%;
}

.blog_details .blog_info .icon {
    flex: 0 0 20px;
    fill: var(--design-color-6);
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.blog_details .blog_info .time {
    margin-right: 24px;
}

.blog_det_img {
    max-width: 100%;
    margin: 0 auto 16px auto;
    float: unset;
}

.recomended_categories {
    display: flex;
    flex-direction: column;
}

.recomended_categories .title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.categories_list {
    display: flex;
    flex-direction: column;
}

.recomended_item {
    display: flex;
    align-items: center;
    padding: 24px 0;
}

.recomended_item + .recomended_item {
    border-top: 1px solid var(--base-color-4);
}

.recomended_item .img {
    flex: 0 0 80px;
    display: block;
    margin-right: 20px;
    width: 80px;
    height: 80px;
}

.recomended_item .img img {
    margin: 0;
    max-width: unset;
}

.recomended_item .name {
    text-decoration: none;
    font-size: 18px;
    color: var(--text);
    transition: color 0.3s;
}

/* --- Product in Blog Details --- */
.blog_details .raw-html-embed {
    position: relative;
    float: right;
}

.blog_details .raw-html-embed Strong {
    font-weight: normal;
}

.blog_details .raw-html-embed .one_good {
    width: 158px;
    margin: 8px 0 8px 16px;
}

.blog_details .raw-html-embed .one_good .status_list {
    top: 16px;
    left: 24px;
}

.blog_details .raw-html-embed .one_good .status_list Span {
    padding: 1px 6px;
    margin: 0 0 4px 0;
    font-size: 13px;
    line-height: 18px;
}

/* --- Popular articles --- */

.popular_articles {
    display: flex;
    flex-direction: column;
    margin: -24px 0 30px 0;
    padding-top: 24px;
    border-top: 2px solid var(--design-color-2);
}

.popular_articles .main_title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 40px;
    padding-right: 110px;
}

.popular_articles-slider {
    width: calc(100% + 20px);
    margin: 0 -10px;
}

.popular_articles-slider::before,
.popular_articles-slider::after {
    content: "";
    width: 9px;
    height: 100%;
    background-color: var(--site-bg);
    position: absolute;
    top: 0;
}

.popular_articles-slider::before {
    left: 0;
}

.popular_articles-slider::after {
    right: 0;
}

.popular_articles-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
}

.popular_articles-slider .slick-arrow {
    width: 42px;
    height: 42px;
    background-color: transparent;
    border: 1px solid var(--base-color-4);
    border-radius: 50%;
    box-shadow: none;
    top: -52px;
    z-index: 1;
}

.popular_articles-slider .slick-arrow::before,
.popular_articles-slider .slick-arrow::after {
    width: 8px;
    height: 1px;
    background-color: var(--base-color-9);
    top: 50%;
    left: 50%;
    transform-origin: right;
    transition: background-color 0.3s;
}

.popular_articles-slider .slick-arrow::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.popular_articles-slider .slick-arrow::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.popular_articles-slider .slick-arrow.slick-prev {
    right: 0;
    left: auto;
    right: 66px;
    transform: translateY(-50%) rotate(180deg);
}

.popular_articles-slider .slick-arrow.slick-next {
    right: 10px;
}

.popular_articles-slider .slick-track {
    display: flex;
}

.popular_articles-slider:not(.slick-initialized) .popular_articles-item {
    flex: 0 0 calc(100% - 20px);
}

.popular_articles-item {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--base-color-4);
    margin: 0 10px;
}

.popular_articles-item .image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
}

.popular_articles-item .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular_articles-item .content {
    display: flex;
    flex-direction: column;
    padding: 24px 16px 16px 16px;
}

.popular_articles-item .name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.popular_articles-item .info {
    text-transform: uppercase;
    font-size: 12px;
    color: var(--base-color-7);
    display: flex;
    flex-wrap: wrap;
}

.popular_articles-item .time {
    display: flex;
    align-items: center;
    margin-right: 18px;
}

.popular_articles-item .views {
    display: flex;
    align-items: center;
}

.popular_articles-item .icon {
    flex: 0 0 20px;
    fill: var(--base-color-7);
    margin: 0 8px 0 0;
    width: 20px;
    height: 20px;
}

/* --- Comments - BLOG (News) --- */
.news_comments {
    display: flex;
    flex-direction: column;
    margin-bottom: calc(var(--section-margin-mobile) - var(--gap-mobile));
}

/* --- Reed Others - BLOG (News) --- */
.blog_details .read_also {
    display: flex;
    flex-direction: column;
    margin-bottom: calc(var(--section-margin-mobile) - var(--gap-mobile));
}

.blog_details .read_also .blog_info {
    margin: 8px 0 0 -8px;
    padding: 8px 8px 0 8px;
    width: calc(100% + 16px);
}

/* --- Related Products - BLOG (News) --- */
.blog_details .product_box {
    padding: 0;
}

.blog_details .product_slider {
    width: calc(100% + var(--margin-lt-rt-twice));
    margin: 0 0 calc(var(--section-margin-mobile) - var(--gap-mobile)) var(--margin-lt-rt-minus);
}

.blog_details .product_slider .product_inner {
    margin-bottom: 0;
}

/* --- Empty page --- */
.empty_page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.empty_page Img {
    max-width: 360px;
    width: 100%;
    height: auto;
    margin: 0 0 16px 0;
}

.empty_page .title {
    font-size: 18px;
    margin: 0 0 16px 0;
    text-align: center;
}

/* Page 404 */
.page_404 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 64px;
}

.text_404 {
    display: flex;
    flex-direction: column;
    margin: 0 0 32px 0;
}

.text_404_num {
    text-align: center;
    font-size: 100px;
    line-height: 1.2;
    font-weight: 700;
}

.text_404_title {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.text_404_title .desk {
    display: none;
}

.page_404 .btn {
    padding-left: 20px;
    padding-right: 20px;
}

.links_404 {
    display: flex;
    flex-direction: column;
}

.links_404_title {
    margin: 0 0 64px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
}

.links_404_title A.btn {
    margin: 0 16px 8px 16px;
}

.links_404_subtitle {
    margin: 0 0 8px 0;
}

UL.links_404_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

UL.links_404_list LI {
    margin: 0 12px 8px 12px;
    color: var(--link);
    max-width: max-content;
    transition: .3s;
}

UL.links_404_list A {
    color: var(--link);
    text-decoration: underline;
    width: max-content;
    transition: .3s;
}

/* --- Google Map --- */
.google_map {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--section-margin-mobile);
}

.google_map .title_wrap {
    margin-bottom: 0;
    padding: 14px 16px;
    background-color: var(--base-color-9);
    color: var(--base-color-1);
}

.google_map .title_wrap .main_title {
    font-size: 18px;
    font-weight: 600;
    color: var(--base-color-1);
}

.google_map Iframe,
.google_map .map_area {
    width: 100%;
    height: 548px;
}

/* --- Contact Us - Feedback --- */
.contact_us {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--section-margin-mobile);
}

.contact_us.background {
    position: relative;
    padding: 32px 0 24px 0;
}

.contact_us.dark {
    background: var(--main-color);
}

.contact_us.margin {
    margin: -46px 0 0 0;
    padding-top: 64px;
}

.contact_us .title_wrap {
    margin-bottom: 28px;
}
.title_wrap h1.main_title {
    margin-bottom: 0;
}

.contact_us .main_title {
    font-size: 28px;
    font-weight: 700;
    z-index: 1;
}

.contact_us.dark .main_title {
    color: var(--text-inverse);
}

.contact_us.dark .popup .main_title {
    color: var(--text);
}

.contact_us .description {
    margin: 0 0 16px 0;
    line-height: 1.5;
    color: var(--text-light);
    width: 54%;
    position: relative;
    z-index: 1;
}

.contact_us.dark .description {
    color: var(--icon-color-gray);
}

.contact_us .tile_background {
    z-index: 0;
}

/* --- Template 1:  Contacts + Background --- */
.rtl.contact_us.background .centre {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.rtl.contact_us.background .title_wrap {
    justify-content: flex-end;
}

.rtl.contact_us.background .popup .title_wrap {
    justify-content: flex-start;
}

.rtl.contact_us.background .title_wrap .main_title,
.rtl.background .description {
    text-align: right;
}

.contact_box {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    width: 100%;
}

.two_mini_box {
    display: flex;
    flex-direction: column;
    margin: 0 0 24px 0;
}

.rtl.contact_us.background .two_mini_box,
.rtl.contact_us.background .cb_tit,
.rtl.contact_us.background .cb_info .long_div {
    justify-content: flex-end;
}

.cb_mini_box {
    display: flex;
    flex-direction: column;
    margin: 0 0 32px 0;
}

.cb_mini_box:last-child {
    margin: 0;
}

.cb_mini_box .cb_tit {
    font-weight: 600;
}

.cb_tit {
    display: flex;
    align-items: center;
    margin: 0 0 8px 0;
    font-size: 20px;
    color: var(--text);
}

.dark .cb_tit {
    color: var(--icon-color-gray);
}

.cb_tit.big {
    text-align: center;
    font-size: 20px;
    margin-bottom: 28px;
}

.contact_us.for_feed .cb_tit.big {
    text-align: left;
}

.cb_tit svg.icon {
    width: 24px;
    height: 24px;
    fill: var(--design-color-6);
}

.cb_tit svg.icon.margin {
    margin-right: 18px;
}

.contact_box .cb_info {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    padding: 0 0 0 42px;
}

.dark .contact_box .cb_info {
    color: var(--text-inverse);
}

.rtl.contact_us.background .contact_box .cb_info {
    padding-right: 0;
    text-align: right;
    justify-content: flex-end;
}

.cb_info .long_div {
    margin: 0 0 10px 0;
    flex-direction: row;
}

.cb_info .long_div:last-child {
    margin: 0;
}

.cb_info A.for_phone {
    color: var(--text);
    text-decoration: none;
    transition: .3s;
}

.dark .cb_info A.for_phone {
    color: var(--text-inverse);
}

.contact_box .cb_info.schedule {
    line-height: 1.5;
}

.soc_and_mes_box {
    display: flex;
    flex-direction: column;
    margin: 8px 0 0 0;
}

.contact_box .cb_info.for_socs {
    padding: 0;
    margin: 0 0 0 -8px;
    width: calc(100% + 8px);
    flex-direction: row;
    flex-wrap: wrap;
}

.cb_info.for_socs A {
    width: 48px;
    height: 48px;
    border: 1px solid var(--sub-color);
    border-radius: 50%;
    margin: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: .3s;
}

.for_socs A svg.icon {
    fill: var(--sub-color);
}

.background_sign {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 24px;
    right: 8px;
    width: max-content;
    z-index: 1;
}

.rtl.background .background_sign {
    right: auto;
    left: 8px;
}

.photo .background_sign {
    position: relative;
    bottom: unset;
    right: unset;
    width: 100%;
    align-items: flex-end;
}

.bs_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.first_label {
    margin: 0 0 4px 0;
    font-weight: 700;
}

.second_label {
    font-size: 13px;
}

.dark .second_label,
.dark .first_label {
    color: var(--text-inverse);
}

/* --- Template 2:  Contacts + Photo --- */
.contact_us.photo {
    padding: 32px 0;
}

.contact_us.photo .description {
    width: 100%;
}

.cb_poto {
    display: flex;
    flex-direction: column;
    margin: 24px 0 0 0;
}

.cb_photo_box {
    display: flex;
    flex-direction: column;
}

.cb_photo_box Img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.contact_us.photo .background_sign {
    margin: 8px 0 0 0;
}

.photo .bs_box {
    align-items: flex-end;
}

/* --- Template 3:  Feedback + Background --- */
.for_feed.background {
    padding-bottom: 130%;
}

.rtl.for_feed.contact_us.background .centre {
    align-items: unset;
}

.rtl.for_feed.contact_us.background .title_wrap {
    justify-content: flex-start;
}

.for_feed.background .description {
    width: 100%;
}

.rtl.for_feed.contact_us.background .title_wrap .main_title,
.rtl.for_feed.background .description {
    text-align: left;
}

.for_feed .feed_box {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.dark .reg_user_details .rud_name {
    color: var(--text-inverse);
}

.dark .reg_user_details .rud_phone,
.dark .reg_user_details .rud_email {
    color: var(--border-opacity);
}

.for_feed.background .feed_box Input,
.for_feed.background .feed_box Textarea {
    background-color: var(--white-opacity);
    color: var(--text);
    border-color: var(--border-opacity);
}

.for_feed.background.dark .feed_box Input,
.for_feed.background.dark .feed_box Textarea {
    background-color: var(--white-opacity-lighter);
    color: var(--text-inverse);
    border-color: var(--border-opacity-lighter);
}

.attach_file {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.file_icon {
    font-size: 18px;
    color: var(--text);
    font-weight: 300;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.file_icon .icon {
    margin-right: 18px;
    width: 20px;
    height: 20px;
}

.attach_file .row {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    position: relative;
}

.attach_file .row input[type="file"] {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.attach_file .row .btn {
    color: var(--text);
    font-size: 14px;
    width: 100%;
    min-height: 42px;
    margin-bottom: 16px;
    background-color: transparent;
    border: 1px solid var(--design-color-2);
}

.attach_text-info {
    font-size: 14px;
    font-weight: 300;
}

.uploaded_files {
    display: flex;
    flex-direction: column;
    width: fit-content;
    max-width: 100%;
}

.uploaded_files li {
    display: flex;
    align-items: center;
}

.uploaded_files li + li {
    margin-top: 12px;
}

.uploaded_files li .icon {
    margin-right: 8px;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    fill: var(--base-color-7);
}

.uploaded_files li span {
    margin-right: 18px;
    word-wrap: anywhere;
}

.uploaded_files li .remove_file-btn {
    flex: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 0 0 auto;
    width: 20px;
    height: 20px;
    border: none;
    background-color: transparent;
}

.uploaded_files li .remove_file-btn .icon {
    fill: var(--design-color-6);
    flex: 0 1 auto;
    width: 12px;
    height: 12px;
    margin: 0;
}

.for_feed .for_send {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.for_feed .for_send .btn {
    width: 100%;
    margin-bottom: 18px;
}

.for_feed .politics_box {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    width: 100%;
}

.dark.for_feed .politics_box {
    color: var(--text-light);
}

.dark.for_feed .politics_box A.link {
    color: var(--link-hover);
}

.for_feed.background .tile_background Img {
    object-position: bottom;
}

.for_feed.background .background_sign {
    margin: 0;
}

/* --- Template 4:  Contacts + Feedback --- */
.contact_us.for_feed .description {
    width: 100%;
}

.contact_us.for_feed .contact_box {
    margin: 0 0 24px 0;
    border-bottom: 1px solid var(--base-color-4);
}

.contact_us.for_feed .cb_poto {
    display: none;
    margin: 0 0 16px 0;
}

.contact_us.for_feed .cb_photo_box {
    margin: 0 0 8px 0;
}

.contact_us.for_feed .cb_poto .description {
    margin: 0;
}

.contact_us.for_feed.dark .feed_box Input,
.contact_us.for_feed.dark .feed_box Textarea {
    background-color: var(--white-opacity-lighter);
    color: var(--text-inverse);
    border-color: var(--border-opacity-lighter);
}

.contact_us.for_feed.dark .long_div Label,
.contact_us.for_feed.dark .politics_box {
    color: var(--border-opacity);
}

/* --- Popup for Google Map:  Contacts & Feedback --- */
.for_map_box {
    display: flex;
    width: 100%;
    height: 450px;
}

.for_map_box Iframe {
    width: 100%;
    height: 100%;
}

/* Stores on Google Map */
.stores {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--section-margin-mobile);
}

.stores .title_wrap {
    padding: 0 8px;
    margin: 0 auto var(--title-margin-mobile) auto;
    max-width: var(--content-width);
}

.all_cities {
    display: flex;
    flex-direction: column;
    margin: 0 0 16px 0;
    width: 100%;
}

.all_cities .centre {
    max-width: var(--content-width);
}

.cities_btns {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 8px 0;
}

.cities_btns .btn {
    margin: 0 8px 8px 0;
}

.cities_btns .btn:last-child {
    margin: 0 0 8px 0;
}

.cities_btns .btn.active {
    background: var(--design-color-6);
    color: var(--text-inverse);
}

.cities_search {
    display: flex;
}

.cities_search Input {
    width: 100%;
}

.stores .together {
    display: flex;
    flex-direction: column;
    padding: 0 8px;
}

.map_main {
    display: flex;
    flex-direction: column;
    margin: 0 0 32px 0;
    width: 100%;
}

.map_main_box {
    width: 100%;
    height: 400px;
}

.all_stores {
    display: flex;
    flex-wrap: wrap;
    margin: -8px 0 0 -8px;
}

.map_address {
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 16px;
    width: calc(100% - 8px);
    margin: 8px 0 0 8px;
    transition: .3s;
}

.stores .map_address .title_wrap {
    padding: 0;
}

.stores .map_address .address {
    margin: 0 32px 0 0;
}

.stores_title {
    display: flex;
    margin: 0 0 6px 0;
    color: var(--design-color-6);
}

.stores_row {
    margin: 0 0 4px 16px;
    line-height: 22px;
}

.all_stores .one_phone {
    display: flex;
}

.map_box {
    max-width: 860px;
}

.map_box .google_map {
    margin: 0;
    width: 100%;
    height: 400px;
}

/* --- Main FOOTER --- */
.main_footer {
    display: flex;
    flex-direction: column;
    color: var(--base-color-1);
    background: var(--footer-bg);
    padding: 30px 0 18px 0;
}

.main_footer > .centre {
    display: flex;
    flex-direction: column;
}

.nav_and_contacts {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.footer_nav {
    display: flex;
    flex-direction: column;
}

.menu_element {
    display: flex;
    flex-direction: column;
    background: transparent;
    margin: 0;
    border-bottom: 1px solid var(--base-color-7);
    position: relative;
}

.footer_menu-titile {
    text-align: center;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
    height: 70px;
    position: relative;
}

.menu_element > .footer_menu-titile {
    cursor: pointer;
}

.footer_menu-titile .icon {
    display: block;
    margin-left: 16px;
    width: 24px;
    height: 24px;
    fill: var(--design-color-6);
    transition: transform 0.3s;
}

.footer_menu-titile.open .icon {
    transform: rotate(180deg);
}

.main_footer .whap_hidden {
    display: none;
    flex-direction: column;
    padding: 0 0 8px 0;
    width: 100%;
}

.main_footer .whap_hidden.active {
    display: flex;
}

.main_footer LI A {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 16px 0;
    display: flex;
    justify-content: center;
    color: var(--base-color-1);
    text-decoration: none;
    max-width: 100%;
}

.contacts_wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.contacts_wrap .icon {
    display: block;
    margin-right: 12px;
    width: 20px;
    height: 20px;
    fill: var(--design-color-6);
}

.footer_phones .one_phone {
    margin: 0 0 10px 0;
    display: flex;
}

.footer_phones .one_phone A {
    text-decoration: none;
    font-size: 18px;
    color: var(--base-color-1);
    font-weight: 600;
    margin: 0;
}

.one_phone .icon.viber {
    fill: var(--viber);
}

.one_phone .icon.telegram {
    fill: var(--telegram);
}

.one_phone .icon.whatsapp {
    fill: var(--whatsapp);
}

.footer_contacts.menu_element {
    margin: 0;
}

.footer_phones,
.messenger_wrap,
.hours_work {
    display: flex;
    flex-direction: column;
    margin: 0 0 0 0;
}

.foo_mini_tit {
    margin: 0 0 6px 0;
}

.messenger_wrap .row {
    display: flex;
    flex-wrap: wrap;
}

.messenger_wrap A {
    text-decoration: none;
    margin: 0 16px 8px 0;
    display: flex;
    align-items: center;
}

.messenger_wrap A::before,
.messenger_wrap A::after {
    display: none;
}

.messenger_wrap A.viber {
    color: var(--viber);
}

.messenger_wrap A.viber .icon {
    fill: var(--viber);
}

.messenger_wrap A.telegram {
    color: var(--telegram);
}

.messenger_wrap A.telegram .icon {
    fill: var(--telegram);
}

.messenger_wrap A.whatsapp {
    color: var(--whatsapp);
}

.messenger_wrap A.whatsapp .icon {
    fill: var(--whatsapp);
}

.messenger_wrap A.messenger {
    color: var(--facebook);
}

.messenger_wrap A.messenger .icon {
    fill: var(--facebook);
}

.hw_text {
    line-height: 1.6;
}

.footer_social {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--base-color-7);
    margin-bottom: 6px;
    order: -1;
}

.for_foo_logo {
    display: flex;
    flex-direction: column;
    margin: 0;
    align-items: center;
}

.foo_logo {
    margin: 0 0 32px 0;
}

.foo_logo Img {
    max-width: 178px;
    height: auto;
}

.footer_slogan {
    text-align: center;
    font-family: 'Geologica';
    font-size: 16px;
    font-weight: 300;
    color: var(--base-color-6);
    margin-bottom: 32px;
    width: 100%;
}

.address {
    font-size: 18px;
    font-weight: 600;
    color: var(--base-color-1);
    font-style: normal;
    display: flex;
    justify-content: center;
    margin: 0 0 20px 0;
}

.address .icon {
    display: block;
    margin: 1px 12px 0 0;
    width: 20px;
    height: 20px;
    fill: var(--design-color-6);
}

.address a {
    text-decoration: none;
    color: var(--base-color-1);
    transition: color 0.3s;
}

.socials_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 30px 0;
    justify-content: center;
}

.socials_row A {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px 5px 5px;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background-color: #2e2d2d;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.socials_row A .icon {
    width: 18px;
    height: 18px;
    fill: var(--base-color-1);
}

.foo_copyrights {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_bottom .centre > .col:nth-child(1){
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 10px 0 16px 0;
    padding-top: 16px;
    border-top: 1px solid var(--base-color-7);
}

.teploformat_copyrights {
    font-size: 14px;
    font-weight: 300;
    color: var(--base-color-6);
}

.sufix_copyrights A {
    font-size: 14px;
    font-weight: 300;
    color: var(--base-color-6);
    text-decoration: none;
    width: max-content;
    max-width: 100%;
    transition: .3s;
}

.footer_bottom .centre > .col:nth-child(2) {
    text-align: center;
    display: flex;
    justify-content: center;
}

/* --- Page UP - button --- */
.page_up {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    position: fixed;
    bottom: 136px;
    left: 8px;
    background: var(--design-color-2);
    border: 1px solid var(--design-color-2);
    border-radius: 50%;
    opacity: 0;
    z-index: 9;
    pointer-events: none;
    cursor: pointer;
    transform: translateX(-120%);
    transition: transform .45s cubic-bezier(.22, .61, .36, 1), opacity .25s ease, background 0.3s;
    will-change: transform;
}

.page_up.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.page_up .icon {
    width: 28px;
    height: 28px;
    fill: var(--base-color-1);
    transition: fill 0.3s;    
}

/* --- Product activity popup --- */
.product_activity {
    position: fixed;
    bottom: 32px;
    left: -300px;
    background: var(--white);
    padding: 16px;
    border-radius: var(--border-radius);
    z-index: 9;
    display: flex;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
    transition: .3s;
}

.product_activity.active {
    left: 32px;
}

/* --- COOKIES terms Popup --- */
.cookies {
    background: var(--white);
    padding: 16px;
    border-radius: var(--border-radius);
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 600px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 32px rgba(0, 0, 0, .2);
    z-index: 99;
    animation: jump 1s ease-in 1s both;
}

.cook_box {
    display: flex;
    flex-direction: column;
    margin: 0 0 16px 0;
}

.cook_text {
    margin: 0 0 16px 0;
    color: var(--text-light);
    line-height: 1.5;
}

.cook_text A {
    color: var(--link);
    transition: .3s;
}

.cookies .btn {
    width: 100%;
    height: max-content;
}

.reject_but {
    display: flex;
    justify-content: center;
}

.reject_cookies {
    border: none;
    width: max-content;
    cursor: pointer;
    background: none;
    padding: 0;
    color: var(--main-color-lighter);
    transition: .3s;
}

@keyframes jump {
    0% {
        bottom: -500px;
    }

    100% {
        bottom: 128px;
    }
}

/* --- Contact pulsing button --- */
.contact_puls_btn {
    width: 68px;
    height: 68px;
    background: var(--btn-bg);
    color: var(--text-inverse);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 208px;
    right: 20px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: .3s;
    z-index: 7;
}

.cpb_label {
    animation: cpb_show_label 6s infinite;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact_puls_btn.active .cpb_label,
.contact_puls_btn.active .cpb_icons {
    display: none;
    animation-play-state: paused;
}

.cpb_label svg {
    fill: var(--white);
    width: 20px;
    height: 20px;
}

.cpb_icons {
    animation: cpb_show_icons 6s infinite;
    background: var(--white);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -21px 0 0 -21px;
    display: flex;
    flex-shrink: 0;
}

.cpb_icons_line {
    position: absolute;
    top: 10px;
    left: 9px;
    display: flex;
}

.cpb_icons_line .icon {
    fill: var(--btn-bg);
    margin-right: 44px;
    width: 24px;
    height: 24px;
}

.contact_puls_btn.active .cpb_close {
    background: var(--btn-bg);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cpb_close::before,
.cpb_close::after {
    content: '';
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background: var(--white);
    position: absolute;
    top: 33px;
    left: 23px;
    transform: rotate(45deg);
    opacity: 0;
    transition: .3s;
}

.cpb_close::after {
    transform: rotate(-45deg);
}

.contact_puls_btn.active .cpb_close::before,
.contact_puls_btn.active .cpb_close::after {
    opacity: 1;
}

.cpb_pulse {
    animation: cpb_pulse 2s infinite;
    width: 84px;
    height: 84px;
    background: var(--btn-bg-hover);
    transform: scale(0);
    position: absolute;
    left: -8px;
    top: -8px;
    z-index: -1;
    border-radius: 50%;
}

.cpb_pulse:nth-of-type(2) {
    animation-delay: .5s;
}

.contact_puls_btn.active .cpb_pulse {
    display: none;
}

@keyframes cpb_show_label {

    0%,
    20% {
        transform: scale(1);
    }

    21%,
    84% {
        transform: scale(0);
    }

    85%,
    100% {
        transform: scale(1);
    }
}

@keyframes cpb_show_icons {

    0%,
    20% {
        transform: scale(0);
    }

    21%,
    84% {
        transform: scale(1);
    }

    85%,
    100% {
        transform: scale(0);
    }
}

@keyframes cpb_pulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    50% {
        opacity: .5;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* --- Dropdown - Contact pulsing button --- */
.cpb_dropdown {
    width: 260px;
    height: auto;
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 20px;
    bottom: 277px;
    z-index: 10;
    overflow: hidden;
    max-height: 0;
    padding: 8px;
    pointer-events: none;
    transition: max-height 0.5s ease-out;
}

.cpb_dropdown.show {
    max-height: 1000px;
    pointer-events: auto;
}

.cpb_dropdown .one_row {
    display: flex;
    transform: translateY(32px);
    opacity: 0;
    margin-bottom: 6px;
    justify-content: flex-end;
    transition: .4s ease, color .3s;
}

.cpb_dropdown.show .one_row {
    transform: translateY(0);
    opacity: 1;
}

.cpb_dropdown.show .one_row:nth-child(1) {
    transition-delay: 0s;
}

.cpb_dropdown.show .one_row:nth-child(2) {
    transition-delay: 0.1s;
}

.cpb_dropdown.show .one_row:nth-child(3) {
    transition-delay: 0.2s;
}

.cpb_dropdown.show .one_row:nth-child(4) {
    transition-delay: 0.3s;
}

.cpb_dropdown.show .one_row:nth-child(5) {
    transition-delay: 0.4s;
}

.cpb_dropdown.show .one_row:nth-child(6) {
    transition-delay: 0.5s;
}

.cpb_dropdown.show .one_row:nth-child(7) {
    transition-delay: 0.6s;
}

.cpb_dropdown.show .one_row:nth-child(8) {
    transition-delay: 0.7s;
}

.cpb_dropdown A {
    background: var(--white);
    border-radius: var(--btn-radius);
    padding: 8px 12px;
    box-shadow: 0 0 8px #00000024;
    text-decoration: none;
    color: var(--text);
    display: flex;
    align-items: center;
    transition: .3s;
}

/* --- SITE HEADER --- */

.site_header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 72px;
    position: fixed;
    top: 0;
    z-index: 12;
    background-color: var(--base-color-1);
    border-bottom: 1px solid var(--base-color-3);
}

.site_header .centre {
    display: flex;
    align-items: center;
}

.site_header .logo_wrap {
    margin-right: auto;
    display: block;
    width: 170px;
    height: auto;
}

.site_header .logo_wrap img {
    width: 100%;
    height: auto;
}

.header_menu-wrap {
    display: flex;
    flex-direction: column;
    padding: 68px 16px 20px 16px;
    width: 100%;
    height: calc(100% - 72px);
    background-color: var(--base-color-1);
    overflow-y: auto;
    position: fixed;
    left: 0;
    top: 72px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.header_menu-wrap.open {
    opacity: 1;
    visibility: visible;
}

.btn_menu {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: none;
}

.btn_menu .icon {
    display: block;
    width: 28px;
    height: 28px;
}

.btn_menu .icon.close {
    display: none;
}

.btn_menu.active .icon.burger {
    display: none;
}

.btn_menu.active .icon.close {
    display: block;
}

.catalog_btn-wrap {
    display: flex;
    flex-direction: column;
}

.catalog_btn-wrap .catalog_btn {
    font-family: 'Montserrat';
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    color: var(--base-color-9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-bottom: 16px;
    padding: 4px;
    background-color: transparent;
    border: none;
}

.catalog_btn-wrap .catalog_btn .icon:nth-child(1) {
    fill: var(--design-color-6);
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.catalog_btn-wrap .catalog_btn .icon:nth-child(3) {
    fill: var(--base-color-9);
    margin-left: 10px;
    width: 20px;
    height: 20px;
    transition: 0.3s;
}

.catalog_btn-wrap .catalog_btn.active .icon:nth-child(3) {
    transform: rotate(180deg);
}

.catalog_btn-wrap .catalog_btn + .menu {
    margin-top: -8px;
}

.top_menu {
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--base-color-4);
    margin-bottom: 24px;
}

.top_menu li {
    display: flex;
}
.top_menu li + li {
    margin-top: 16px;
}

.top_menu a {
    font-family: 'Montserrat';
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    color: var(--base-color-9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    width: 100%;
    transition: color 0.3s;
}

.top_menu a.active {
    color: var(--design-color-6)
}

.header_menu-wrap .header_phone {
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--base-color-4);
    margin-bottom: 24px;
}

.header_menu-wrap .header_phone .phone_trigger {
    display: none;
}

.header_menu-wrap .header_phone .main_phone {
    display: none;
}

.header_menu-wrap .header_phone .popup_close {
    display: none;
}

.header_menu-wrap .one_phone + .one_phone {
    margin-top: 8px;
}

.header_menu-wrap .one_phone a {
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--base-color-9);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.header_menu-wrap .one_phone .icon {
    margin-right: 12px;
    width: 24px;
    height: 24px;
    fill: var(--design-color-6);
}

.select_language {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.select_language a {
    font-family: 'Montserrat';
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--base-color-9);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px 5px 5px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--base-color-9);
}

.select_language a.active {
    color: var(--design-color-6);   
    border-color: var(--design-color-6);
}

.select_language a.ru {
    display: none;
}

/* --- TILES CATALOG --- */

.tiles.tiles_catalog .one_tile {
    position: relative;
}

.main_slider_container.main_page-slider:nth-child(1) + .article_place + .tiles.brands + .tiles.tiles_catalog .one_tile {
    background-color: var(--base-color-2);
}

.main_slider_container.main_page-slider:nth-child(1) + .article_place + .tiles.brands + .tiles.tiles_catalog {
    margin-bottom: 40px;
    padding-bottom: 40px;
    background-color: var(--base-color-2);
}

.tiles.tiles_catalog .tile_image Img {
    min-width: unset;
    max-width: unset;
    margin: 0;
    box-shadow: none;
    float: unset;
}

.tiles.tiles_catalog .tile_title {
    margin: 0;
}

.tile_hover-hide {
    display: flex;
    flex-direction: column;
    padding: 26px 34px 34px 34px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background-color: var(--base-color-1);
    box-shadow: 0px 10px 50px 0px #00000000;
    opacity: 0;
    z-index: 2;
    visibility: hidden;
    transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out, box-shadow 2s;
}

.one_tile.open .tile_hover-hide {
    opacity: 1;
    visibility: visible;
    box-shadow: 0px 10px 50px 0px #00000026;
}

.tile_hover-hide .tile_title {
    margin-bottom: 18px;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    pointer-events: none;
}

.one_tile.open .tile_hover-hide .tile_title {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition-delay: 0.1s;
}

.tile_hover-hide .tile_description {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    margin: 0 0 20px 0;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, transform 0.5s;
    pointer-events: none;
}

.tile_hover-hide .tile_description b {
    font-weight: 700;
}

.tile_hover-hide .btn {
    width: 100%;
    min-height: 46px;
    font-size: 14px;
    box-shadow: 0px 15px 35px 0px #00000040;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s, transform 0.5s, visibility 0.3s, color 0.3s, background-color 0.3s;
}

.one_tile.open .tile_hover-hide .btn {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0.3s, 0.3s, 0.3s, 0s, 0s;
}

.one_tile.open .tile_hover-hide .tile_title {
    color: var(--text);
}

/* --- TILES BRANDS --- */
.tiles.brands {
    padding: 0;
    max-width: 100%;
    overflow: hidden;
}

.main_slider_container.main_page-slider:nth-child(1) + .article_place + .tiles.brands {
    margin-bottom: 0;
    padding-bottom: var(--section-margin-mobile);
    background-color: var(--base-color-2);
}
 
.tiles.brands .main_title.title_h2 {
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--margin-lt-rt);
    width: 100%;
    max-width: var(--content-width);
}

.tiles.brands .title_wrap {
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--margin-lt-rt);
    width: 100%;
    max-width: var(--content-width);
}

.tiles.brands .tiles_description {
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--margin-lt-rt);
    width: 100%;
    max-width: var(--content-width);
}

.tiles.brands .tiles_grid {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    width: max-content;
    min-width: 100%;
    max-width: unset;
    background-color: var(--base-color-1);
    animation: scroll 50s linear infinite;
    flex-wrap: nowrap;
}

.tiles.brands .one_tile {
    width: auto;
    margin: 0 15px;
    background-color: transparent;
}

.tiles.brands .one_tile .box {
    width: auto;
    padding: 0;
}

.tiles.brands .tile_image {
    width: auto;
    height: auto;
    margin: 0;
}

.tiles.brands .tile_image Img {
    width: 100%;
    max-width: 280px;
    height: 68px;
    max-height: 68px;
    aspect-ratio: unset;
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0));
    transition: filter 0.3s;
}

.tiles.brands .tile_title {
    display: none;
}

.tiles.brands .tile_description {
    display: none;
}

.tiles.brands .btn.view_all {
    margin: 20px auto 0 auto;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* --- TILE ABOUT US --- */

.tiles.about_us-tile {
    padding: 0;
}

.tiles.about_us-tile .tile-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 var(--margin-lt-rt);
    max-width: var(--content-width);
    width: 100%;
}

.tiles.about_us-tile .title_wrap {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    padding: 0;
    order: 1;
}

.tiles.about_us-tile .main_title.title_h2 {
    text-align: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 36px;
    padding: 0;
    order: 2;
}

.tiles.about_us-tile .tile_background {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-bottom: 28px;
    height: auto;
    z-index: 0;
    order: 3;
}

.tiles.about_us-tile .tile_background img {
    width: 100%;
    height: auto;
}

.tiles.about_us-tile .tile-row {
    display: flex;
    flex-direction: column;
    order: 4;
}

.tiles.about_us-tile .tiles_description {
    font-weight: 300;
    margin-bottom: 42px;
    padding: 0;
}

.tiles.about_us-tile .tiles_grid {
    padding: 0;
    justify-content: space-around;
}

.tiles.about_us-tile .one_tile {
    width: 100%;
}

.tiles.about_us-tile .tiles_grid .one_tile:nth-child(1n + 2) {
    margin: 0;
}

.tiles.about_us-tile .box {
    padding: 16px;
}

.tiles.about_us-tile .tile_image {
    display: none;
}

.tiles.about_us-tile .tile_title {
    text-align: center;
    font-size: 50px;
    line-height: 1;
    font-weight: 700;
    justify-content: center;
}

.tiles.about_us-tile .tile_description {
    text-align: center;
    font-size: 16px;
}

.tiles.about_us-tile .btn.view_all {
    width: 100%;
    margin: 36px auto 0 auto;
}

.tiles.about_us-tile .btn.view_all .icon {
    margin: 0 0 0 12px;
    width: 20px;
    height: 20px;
}

/*--- OUR ADVANTAGES ---*/
.tiles.our_advantages {
    padding: 0;
}

.main_slider_container.main_page-slider:nth-child(1) + .article_place + .tiles.brands + .tiles.tiles_catalog + .tiles.about_us-tile + .tiles.our_advantages {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--base-color-2);
}

.tiles.our_advantages .tile-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 var(--margin-lt-rt);
    max-width: var(--content-width);
    width: 100%;
}

.tiles.our_advantages .title_wrap {
    justify-content: center;
    margin-bottom: 20px;
    text-align: center;
    padding: 0;
    max-width: unset;
    order: 1;
}

.tiles.our_advantages .main_title.title_h2 {
    font-size: 16px;
    text-align: center;
    justify-content: center;
    margin-bottom: 32px;
    padding: 0;
    max-width: unset;
    order: 2;
}

.tiles.our_advantages .tiles_description {
    padding: 0;
    order: 3;
}

.tiles.our_advantages .tiles_grid {
    padding: 0;
    margin-bottom: 43px;
    order: 4;
}

.tiles.our_advantages .one_tile {
    width: 100%;
    background-color: transparent;
}

.tiles.our_advantages .one_tile:nth-child(1n + 2) {
    margin-top: 36px;
}

.tiles.our_advantages .tile_image {
    margin: 0 auto 12px auto;
    width: 64px;
    height: 64px;
}

.tiles.our_advantages .tile_image Img {
    aspect-ratio: auto;
}

.tiles.our_advantages .tile_title {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.tiles.our_advantages .tile_description {
    text-align: center;
    font-size: 16px;
    margin: 0;
    color: var(--base-color-7);
}

.tiles.our_advantages .tile_background {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    order: 5;
    z-index: 1;
}

.tiles.our_advantages .tile_background img {
    width: 100%;
    height: auto;
}

.tiles.our_advantages  A.btn.view_all {
    display: none;
}

/* --- TILES STAPS --- */

.tiles.staps {
    overflow: hidden;
}

.tiles.staps .title_wrap {
    margin-bottom: 20px;
}

.tiles.staps .main_title.title_h2 {
    font-size: 16px;
    margin-bottom: 60px;
}

.tiles.staps .one_tile {
    align-items: flex-start;
    padding-left: 32px;
    position: relative;
}

.tiles.staps .tiles_grid .one_tile:nth-child(1n + 2) {
    margin-top: 42px;
}

.tiles.staps .one_tile::before {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% + 42px);
    background-color: var(--design-color-2);
    position: absolute;
    top: 0;
    left: 8px;
}

.tiles.staps .one_tile:nth-child(1):before {
    height: calc(100% - 16px);
    top: 58px;
}

.tiles.staps .one_tile:nth-last-child(1):before {
    height: 50px;
}

.tiles.staps .one_tile:nth-child(1):nth-last-child(1):before {
    height: 0;
}

.tiles.staps .one_tile::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--design-color-2);
    border-radius: 50%;
    position: absolute;
    top: 50px;
    left: 0;
    transform: scale(0);
    transition: transform 0.5s 0.5s;
}

.tiles.staps .one_tile.active::after {
    transform: scale(1);
}

.tiles.staps .stap_number {
    font-size: 100px;
    font-weight: 700;
    line-height: 1;
    color: var(--base-color-9);
    display: block;
    margin: 0 0 20px 0;
    opacity: 0;
    transform: translateX(50%);
    transition: transform 0.5s ease-out, opacity 0.5s;
}

.tiles.staps .one_tile.active .stap_number {
    opacity: 0.07;
    transform: translateX(0);
}

.tiles.staps .tile_image {
    display: none;
}

.tiles.staps .tile_title {
    font-size: 22px;
    margin-bottom: 20px;
}

.tiles.staps .tile_description {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: var(--base-color-7);
}

.tiles.staps A.btn.view_all {
    margin-top: 26px;
}

/* --- SEND QUESTION --- */

.tiles.send_question {
    color: var(--base-color-1);
    padding-top: 32px;
    padding-bottom: 32px;
    background-color: var(--design-color-2);
}

.tiles.send_question .title_wrap {
    margin-bottom: 26px;
}

.tiles.send_question .main_title {
    font-size: 26px;
    justify-content: center;
    text-align: center;
    color: var(--base-color-1);
}

.tiles.send_question .main_title.title_h2 {
    display: none;
}

.tiles.send_question .quesiton-col {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

.tiles.send_question .tiles_grid {
    display: none;
}

.tiles.send_question .tiles_description {
    text-align: center;
    margin: 12px 0 0 0;
    order: 1;
}

.tiles.send_question .tiles_description article {
    font-size: 20px;
}

.tiles.send_question .tiles_description Article Strong {
    white-space: nowrap;
}

.tiles.send_question .tiles_description Article Strong a {
    color: var(--base-color-1);
    text-decoration: none;
    transition: opacity 0.3s;
}

.tiles.send_question A.btn.view_all {
    color: var(--base-color-8);
    font-weight: 500;
    margin: 0 auto;
    width: 100%;
    background-color: var(--base-color-1);
}

/* --- CREATE PROJECT --- */

.create_project {
    color: var(--base-color-1);
    margin-bottom: var(--section-margin-mobile);
    padding-top: 36px;
    padding-bottom: 30px;
    background-color: var(--base-color-9);
}

.create_project .centre > .col:nth-child(1) {
    display: none;
}

.create_project .centre > .col:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.create_project .H1 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

.create_project .subtitle {
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    margin-bottom: 20px;
}

.dots_list {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.dots_list li {
    flex: 1 1 auto;
    display: flex;
    max-width: 58px;
}

.dots_list button,
.dots_list .button {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
    height: 26px;
    background-color: transparent;
    border: none;
}

.dots_list button::before,
.dots_list .button::before {
    content: "";
    position: relative;
    display: block;
    width: calc(100% - 16px);
    height: 4px;
    background-color: var(--base-color-6);
    transition: 0.3s;
}

.dots_list button.active::before,
.dots_list .button.active::before {
    background-color: var(--design-color-2);
}

.dots_list button:not(.active) {
    cursor: pointer;
}

.quesion_slider {
    display: flex;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
}

.question_list {
    display: flex;
    transition: transform 1s;
}

.question_box {
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s;
}

.quesion_slider:not(.init) .question_box {
    display: none;
}

.quesion_slider:not(.init) .question_box:nth-child(1) {
    display: flex;
    width: 100%;
}

.quesion_slider.init .question_box.hidden {
    display: flex !important;
    opacity: 0;
}

.question_title {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 32px;
}

.question_text {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 32px;
}

.styled_checkbox {
    position: relative;
}

.styled_checkbox input {
    margin: 0;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.styled_checkbox .styled_inner {
    font-size: 16px;
    line-height: 1.3;
    display: block;
    padding: 2px 0 0 40px;
    min-height: 24px;
    cursor: pointer;
}

.styled_checkbox .styled_inner::before {
    content: "";
    width: 24px;
    height: 24px;
    background-color: var(--base-color-6);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s;
}

.styled_checkbox input:checked + .styled_inner::before {
    background-color: var(--design-color-2);
}

.styled_checkbox .styled_inner::after {
    content: "";
    width: 11px;
    height: 7px;
    position: absolute;
    border-left: 3px solid var(--base-color-1);
    border-bottom: 3px solid var(--base-color-1);
    top: 7px;
    left: 6px;
    transform: rotate(-45deg);
    opacity: 0;
    transition: opacity 0.3s;
}

.styled_checkbox input:checked + .styled_inner::after {
    opacity: 1;
}

.question_box .styled_checkbox {
    margin-bottom: 16px;
}

.styled_radio {
    position: relative;
}

.styled_radio input[type=radio] {
    margin: 0;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.styled_radio .styled_inner {
    font-size: 16px;
    line-height: 1.3;
    display: block;
    padding: 2px 0 0 40px;
    min-height: 24px;
    cursor: pointer;
}

.styled_radio .styled_inner::before {
    content: "";
    width: 24px;
    height: 24px;
    background-color: var(--base-color-6);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s;
}

.styled_radio input:checked + .styled_inner::before {
    background-color: var(--design-color-2);
}

.styled_radio .styled_inner::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    background: var(--base-color-1);
    border-radius: 50%;
    top: 6px;
    left: 6px;
    opacity: 0;
    transition: opacity 0.3s;
}

.styled_radio input:checked + .styled_inner::after {
    opacity: 1;
}

.question_box .styled_radio {
    margin-bottom: 16px;
}

.input_box {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.input_box .title {
    font-size: 16px;
    margin-bottom: 4px;
}

.input_box .title i {
    color: var(--design-color-6);
}

.question_box .input_box input {
    border-top: none;
    border-left: none;
    border-right: none;
    color: var(--base-color-1);
    background-color: transparent;
    border-color: var(--base-color-6);
}

.questions_buttons {
    display: flex;
    flex-direction: column;
    padding-top: 14px;
}

.questions_buttons .btn {
    margin-bottom: 12px;
    width: 100%;
}

.questions_buttons .btn.disabled {
    opacity: 0.7;
    pointer-events: none;
}

.questions_buttons .btn.outline {
    color: var(--base-color-1);
    background-color: transparent;
    border: 1px solid var(--base-color-1);
}

.questions_buttons .btn.go_back {
    order: 1;
}

.create_project .bottom_info {
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    display: block;
    margin: 20px auto 0 auto;
    max-width: 370px;
}

.question_box.success {
    justify-content: center;
}

.question_box.success .icon {
    width: 40px;
    height: 40px;
    fill: var(--design-color-2);
    margin: 0 auto 20px auto;
}

/* --- news component --- */

.news_component {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--section-margin-mobile);
}

.news_component .main_title {
    font-size: 28px;
    margin-bottom: 32px;
}

.news_grid {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.news_item {
    display: flex;
    flex-direction: column;
    margin: 0;
    border: 1px solid var(--base-color-4);
}

.news_item:nth-child(1n + 2) {
    margin-top: 16px;
}

.news_item .blog_image {
    aspect-ratio: 4 / 3;
    margin: 0;
    width: 100%;
    height: auto;
}

.news_item .blog_image img {
    width: 100%;
    height: 100%;
    max-width: unset;
    margin: 0;
    object-fit: cover;
}

.news_item .content {
    display: flex;
    flex-direction: column;
    padding: 24px 16px 16px 16px;
}

.news_item .blog_name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.news_item .blog_name h1 {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
}

.news_item-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
}

.news_info-item {
    font-size: 14px;
    color: var(--base-color-7);
    display: flex;
    align-items: center;
}

.news_info-item:nth-child(1) {
    margin-right: 30px;
}

.news_info-item .icon {
    fill: var(--base-color-7);
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.news_item:nth-child(1n + 3) {
    flex-direction: row;
    align-items: flex-start;
    padding: 12px;
}

.news_item:nth-child(1n + 3) .blog_image {
    flex: 0 0 70px;
    width: 70px;
    aspect-ratio: 1 / 1;
}

.news_item:nth-child(1n + 3) .content {
    flex: 1 1 auto;
    padding: 0 0 0 16px;
    height: auto;
    align-self: stretch;
}

.news_item:nth-child(1n + 3) .blog_name {
    font-size: 15px;
    margin-bottom: 12px;
}

/* --- advantages staps --- */

.tiles.advantages_staps .title_wrap {
    font-size: 24px;
    text-align: center;
    margin-bottom: 24px;
    justify-content: center;
    max-width: 800px;
}

.tiles.advantages_staps .main_title.title_h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 24px;
    max-width: 800px;
}

.tiles.advantages_staps .tiles_description {
    text-align: center;
    max-width: 800px;
}

.tiles.advantages_staps .tiles_description article {
    font-weight: 300;
}

.tiles.advantages_staps .one_tile {
    padding: 16px;
    border: 1px solid var(--base-color-4);
    box-shadow: 0px 10px 35px 0px #00000000;
    transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.tiles.advantages_staps .tiles_grid .one_tile:nth-child(1n + 2) {
    margin-top: 24px;
}

.tiles.advantages_staps .tile_image {
    display: none;
}

.tiles.advantages_staps .tile_title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.tiles.advantages_staps .tile_title b {
    margin-left: auto;
    font-size: 24px;
    line-height: 20px;
    font-weight: 500;
    color: var(--design-color-2);
    padding-left: 10px;
    transition: color 0.3s;
}

.tiles.advantages_staps .tile_description {
    font-size: 16px;
    font-weight: 300;
    margin: 20px 0 0 0;
    transition: color 0.3s;
}

/* --- Tiles icons --- */

.tiles.tiles_icons {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--section-margin-mobile);
}

.tiles.advantages_staps + .tiles.tiles_icons {
    margin-bottom: 32px;
    padding-top: 32px;
    padding-bottom: 32px;
    background-color: var(--base-color-2);
}

.tiles.tiles_icons .title_wrap {
    justify-content: center;
    text-align: center;
    margin-bottom: 24px;
}

.tiles.tiles_icons .title_wrap .main_title {
    font-weight: 500;
    max-width: 860px;
    padding: 0 30px;
}

.tiles.tiles_icons .main_title.title_h2 {
    text-align: center;
    max-width: 800px;
    margin-bottom: 24px;
}

.tiles.tiles_icons .tiles_description {
    text-align: center;
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 300;
    max-width: 800px;
}

.tiles.tiles_icons .tiles_grid .one_tile:nth-child(1n + 2) {
    margin-top: 0;
}

.tiles.tiles_icons .one_tile {
    flex: 0 0 calc((100% / 2) - (16px / 2));
    background-color: transparent;
}

.tiles.tiles_icons .tiles_grid .one_tile:nth-child(2n + 1) {
    margin-right: 16px;
}

.tiles.tiles_icons .tiles_grid .one_tile:nth-child(1n + 3) {
    margin-top: 30px;
}

.tiles.tiles_icons .tile_image {
    margin: 0 auto 20px auto;
    width: 52px;
    height: 52px;
}

.tiles.tiles_icons .tile_image img {
    aspect-ratio: 1 / 1;
}

.tiles.tiles_icons .tile_title {
    text-align: center;
    font-size: 14px;
    justify-content: center;
}

/* --- tabs grid --- */

.tabs_grid {
    margin-bottom: var(--section-margin-mobile);
}

.tabs_grid .centre {
    display: flex;
    flex-direction: column;
}

.tabs_grid .main_title {
    text-align: center;
    justify-content: center;
    margin-bottom: 24px;
}

.dropdown_tabs {
    display: flex;
    flex-direction: column;
    margin-bottom: 34px;
    position: relative;
}

.selected_item {
    font-size: 16px;
    color: var(--base-color-1);
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 10px 48px 10px 20px;
    min-height: 50px;
    background-color: var(--design-color-2);
    border: none;
    position: relative;
}

.selected_item::before,
.selected_item::after {
    content: "";
    width: 2px;
    height: 9px;
    background-color: var(--base-color-1);
    position: absolute;
    top: 50%;
    right: 32px;
    transform-origin: bottom;
    transition: transform 0.3s;
}

.selected_item::before {
    transform: translateY(-50%) rotate(-45deg);
}

.selected_item::after {
    transform: translateY(-50%) rotate(45deg);
}

.selected_item.active::before {
    transform-origin: top;
    transform: translateY(-50%) rotate(45deg);
}

.selected_item.active::after {
    transform-origin: top;
    transform: translateY(-50%) rotate(-45deg);
}

.selected_item svg {
    fill: var(--base-color-1);
    flex-direction: 0 0 20px;
    margin-right: 14px;
    width: 20px;
    height: 20px;
}

.dropdown_tabs ul {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    width: 100%;
    background-color: var(--base-color-1);
    box-shadow: 0px 10px 35px 0px #00000040;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.dropdown_tabs ul.open {
    opacity: 1;
    visibility: visible;
}

.dropdown_tabs li {
    color: var(--base-color-7);
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 4px 20px;
    min-height: 44px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown_tabs li.active {
    color: var(--base-color-1);
    background-color: var(--design-color-2);
}

.dropdown_tabs li svg {
    fill: var(--base-color-7);
    flex: 0 0 20px;
    margin-right: 12px;
    width: 20px;
    height: 20px;
    transition: fill 0.3s;
}

.dropdown_tabs li.active svg {
    fill: var(--base-color-1);
}

.tabs_title {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    display: block;
    margin-bottom: 22px;
}

* + .tabs_title {
    margin-top: 32px;
}

.tabs_content {
    display: flex;
    flex-wrap: wrap;
}

.tab_item {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
}

.tab_item:nth-child(1n + 2) {
    margin-top: 24px;
}

.tab_item .title {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.tab_item .image {
    margin-bottom: 16px;
    width: 72px;
    height: 72px;
}

.tab_item .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tab_item .text {
    font-size: 14px;
    text-align: center;
}

/* --- decide choose --- */

.decide_choose {
    color: var(--base-color-1);
    background-color: var(--base-color-9);
    padding-top: 22px;
    margin-bottom: var(--section-margin-mobile);
}

.decide_choose > .centre {
    display: flex;
    flex-direction: column;
}

.decide_choose .decide_content {
    margin-bottom: 20px;
}

.decide_choose .title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.decide_choose .text {
    margin-bottom: 20px;
    font-size: 16px;
}

.decide_choose ul {
    margin-bottom: 20px;
    padding-left: 0;
    list-style: none;
}

.decide_choose li {
    font-weight: 500;
    padding-left: 40px;
    min-height: 24px;
    position: relative;
}

.decide_choose li + li {
    margin-top: 12px;
}

.decide_choose li::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../images/primary-check-icon.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.decide_choose .btn {
    width: 100%;
}

.decide_choose .btn .icon {
    margin: 0 0 0 16px;
}

.decide_img {
    display: block;
    width: 100%;
    height: auto;
}

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

/* --- main characteristics --- */

.main_characteristics {
    margin-bottom: var(--section-margin-mobile);
}

.main_characteristics .inner_wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main_characteristics .main_title {
    text-align: center;
    justify-content: center;
    margin-bottom: 24px;
}

.characteristics_table {
    border-spacing: 1px;
    margin-bottom: 24px;
}

.characteristics_table tr th {
    text-align: start;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 12px;
    height: 48px;
}

.characteristics_table tr td {
    text-align: start;
    font-weight: 300;
    font-size: 14px;
    padding: 8px 12px;
    height: 48px;
}

.characteristics_table tr:nth-child(2n + 1) th,
.characteristics_table tr:nth-child(2n + 1) td {
    background-color: #F4F3F3;
}

.characteristics_table tr > th:nth-child(1),
.characteristics_table tr > td:nth-child(1) {
    width: 40%;
}

.characteristics_table tr > th:nth-child(2),
.characteristics_table tr > td:nth-child(2) {
    width: 60%;
}

.characteristics_table tr th:nth-child(1) span,
.characteristics_table tr td:nth-child(1) span {
    display: flex;
    align-items: center;
}

.characteristics_table tr th:nth-child(1) img,
.characteristics_table tr td:nth-child(1) img {
    display: none;
}

.main_characteristics .bottom_text {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    display: block;
    margin-bottom: 24px;
    width: 100%;
}

.main_characteristics .btn {
    width: 100%;
}

.main_characteristics .btn .icon {
    margin: 0 0 0 6px;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}

/* --- big tiles icons --- */

.tiles.big_tiles_icons .title_wrap {
    justify-content: center;
    margin-bottom: 24px;
    max-width: 800px;
}

.tiles.big_tiles_icons .main_title {
    font-weight: 500;
    text-align: center;
    justify-content: center;
    max-width: 800px;
}

.tiles.big_tiles_icons .tiles_description {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 24px;
    max-width: 800px;
}

.tiles.big_tiles_icons .one_tile:nth-child(1n + 2) {
    margin-top: 0;
}

.tiles.big_tiles_icons .one_tile {
    flex: 0 0 calc((100% / 2) - (16px / 2));
    padding: 16px;
    border: 1px solid var(--base-color-4);
    box-shadow: 0px 10px 35px 0px #00000000;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.tiles.big_tiles_icons .one_tile:nth-child(2n + 1) {
    margin-right: 16px;
}

.tiles.big_tiles_icons .one_tile:nth-child(1n + 3) {
    margin-top: 16px;
}

.tiles.big_tiles_icons .tile_image {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px auto;
}

.tiles.big_tiles_icons .tile_image img {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
}

.tiles.big_tiles_icons .tile_title {
    text-align: center;
    font-size: 14px;
    justify-content: center;
}

/* --- zoom --- */


.zoom_wrap-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(63 63 63 / .9);
    z-index: 12;
    overflow: hidden;
    touch-action: none;
    pointer-events: auto
}

.close_zoom-popup {
    font-size: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: var(--white);
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    transition: 0.3s
}

.close_zoom-popup::before,.close_zoom-popup::after {
    content: "";
    width: 16px;
    height: 2px;
    background-color: var(--base-color-9);
    position: absolute;
    top: 50%;
    left: 50%
}

.close_zoom-popup::before {
    transform: translate(-50%,-50%) rotate(45deg)
}

.close_zoom-popup::after {
    transform: translate(-50%,-50%) rotate(-45deg)
}

.zoom_wrap-popup .centre {
    padding: 0;
    height: 100%
}

.zoom_wrap-popup .centre>.col:nth-child(1) {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative
}

.zoom_big-slider {
    display: block;
    width: 100%;
    height: 100%;
    position: relative
}

.zoom_big-slider .arrow {
    font-size: 0;
    display: block;
    background-color: var(--site-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: var(--shadow)
}

.zoom_big-slider .arrow::before {
    content: "";
    width: 16px;
    height: 1px;
    background-color: var(--design-color-2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: 0.3s
}

.zoom_big-slider .arrow::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--design-color-2);
    border-left: 1px solid var(--design-color-2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
    margin-left: -4px;
    transition: 0.3s
}

.zoom_big-slider .arrow.arrow_prev {
    left: 12px
}

.zoom_big-slider .arrow.arrow_next {
    transform: translateY(-50%) rotate(180deg);
    right: 12px
}

.zoom_big-list {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.zoom_big-img-wrap {
    display: none!important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

.zoom_big-img-wrap.active {
    display: flex!important
}

.zoom_big-img {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    position: absolute;
    opacity: 0;
    visibility: hidden
}

.zoom_big-img:not(.video) img {
    cursor: url('./../../images/zoom-icon-mag.svg?v=1.1') 16 16,zoom-in
}

.zoom_big-img.zoom:not(.video) img {
    cursor: url('./../../images/zoom-out-icon-mag.svg?v=1.2') 16 16,zoom-in
}

.zoom_big-img.active {
    opacity: 1;
    visibility: visible;
    z-index: 1
}

.zoom_big-img .draggable-img {
    max-width: 200vw;
    max-height: 200vh;
    transition: none
}

.zoom_big-img .regular_image {
    display: none
}

.click_to-zoom {
    display: none
}

.zoom_wrap-popup .centre>.col:nth-child(2) {
    display: none
}

/* --- Decide tile --- */

.tiles.decide_tile {
    color: var(--base-color-1);
    padding-top: 22px;
    padding-bottom: 0;
    background-color: var(--base-color-9);
}

.tiles.decide_tile.has_background {
    padding-left: 0;
    padding-right: 0;
}

.tiles.decide_tile .title_wrap {
    margin-bottom: 20px;
}

.tiles.decide_tile .title_wrap .main_title {
    color: var(--base-color-1);
}

.tiles.decide_tile .main_title.title_h2 {
    color: var(--base-color-1);
    font-weight: 300;
    margin-bottom: 32px;
}

.tiles.decide_tile .tiles_description {
    font-weight: 300;
    margin-bottom: 32px;
}

.tiles.decide_tile .tiles_grid {
    margin-bottom: 20px;
}

.tiles.decide_tile .one_tile {
    background-color: transparent;
    width: 100%;
    margin: 0;
}

.tiles.decide_tile .tiles_grid .one_tile:nth-child(1n + 2) {
    margin-top: 12px;
}

.tiles.decide_tile .tiles_grid .one_tile:nth-child(2n + 1) {
    margin-right: 0;
}

.tiles.decide_tile .tiles_grid .one_tile:nth-child(3n + 1),
.tiles.decide_tile .tiles_grid .one_tile:nth-child(3n + 2) {
    margin-right: 0;
}

.tiles.decide_tile .tile_image {
    display: none;
}

.tiles.decide_tile .tile_title {
    color: var(--base-color-1);
    font-size: 16px;
    font-weight: 700;
    align-items: center;
    padding-left: 40px;
    min-height: 24px;
    position: relative;
}

.tiles.decide_tile .tile_title::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/primary-check-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.tiles.decide_tile .tile_description {
    display: none;
}

.tiles.decide_tile A.btn.view_all {
    margin: 0 auto 20px auto;
    width: calc(100% - 32px);
}

.tiles.decide_tile A.btn.view_all::after {
    content: "";
    display: block;
    position: relative;
    margin-left: 6px;
    width: 20px;
    height: 20px;
    background-image: url(../images/link-white-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.tiles.decide_tile .tile_background {
    margin: 0 auto;
    padding: 0 16px;
    width: auto;
    max-width: 100%;
    height: auto;
    position: relative;
    top: auto;
    left: auto;
    z-index: 0;
}

.tiles.decide_tile .tile_background Img {
    width: auto;
    height: auto;
    max-width: 100%;
}