@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --black: #1D1D1D;
    --mobile-gap: 15px;
    --red: #BB2639;
}

body {
    font-family: "Decima Nova Pro", sans-serif;
}

.cross {
    --width: 10px;
    --weight: 1px;
    --color: black;
    --angle: 45deg;
    grid-template-rows:var(--width);
    grid-template-columns: var(--width);
    overflow: hidden;
    border: none;
    background: none;
    display: grid;
    align-items: center;
    justify-content: center;
    justify-items: center;
    align-content: center;
    padding: 0;
    flex-shrink: 0;
}

.cross:before, .cross:after {
    content: '';
    width: calc(var(--width) * 1.41);
    height: var(--weight);
    background: var(--color);
    transform-origin: center;
    grid-area: 1/1;
}

.cross:before {
    transform: rotate(var(--angle));
}

.cross:after {
    transform: rotate(calc(var(--angle) + 90deg));
}

[data-popup] {
    cursor: pointer;
}

[data-popup] > * {
    pointer-events: none;
}

.none {
    display: none !important;
}

#popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    grid-template-columns: 100%;
    justify-items: center;
    align-items: flex-start;
    padding: 120px 20px 20px 20px;
    background: rgba(0, 0, 0, .5);
}

#popup.active {
    display: grid;
    z-index: 99;
}

.popup_content {
    background: #F7F7F7;
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 645px;
    position: relative;
    font-family: 'Decima Nova Pro', sans-serif;
}

.popup_close {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: 20px;
    --width: 10px;
    --weight: 2px;
    --color: #212C33;
}

.popup_title {
    font-size: 28px;
    margin: 0 0 30px 0;
}

#popup {
    .change-city_find-form {
        display: grid;
        grid-template-columns: 100%;
        align-items: center;
    }

    .change-city_input {
        grid-area: 1/1;
        width: 100%;
        border: none;
        background: transparent;
        border-bottom: 1px solid #D1D1D1;
        font-size: 18px;
        padding: 20px 40px 20px 0;
    }

    .change-city_find-form__send {
        grid-area: 1/1;
        background: transparent;
        border: none;
        display: flex;
        padding: 0;
        justify-self: flex-end;
    }

    .change-city_find-form :where(img, svg) {
        width: 20px;
        height: auto;
        object-fit: contain;
        margin: 0 20px 0 0;
    }

    .change-city_find-form path {
        fill: #9A9A9A;
    }

    .change-city_list-wrapper {
        position: relative;
        margin: 30px 0 0 0;
    }

    .change-city_list {
        max-height: 270px;
        overflow: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 14px;
        column-gap: 20px;
        scrollbar-width: thin;
        scrollbar-color: #9A9A9A #F4F4F4;
    }

    .change-city_list::-webkit-scrollbar {
        width: 3px; /* ширина всей полосы прокрутки */
    }

    .change-city_list::-webkit-scrollbar-track {
        background: #F4F4F4; /* цвет зоны отслеживания */
    }

    .change-city_list::-webkit-scrollbar-thumb {
        background: #9A9A9A; /* цвет бегунка */
        border-radius: 20px; /* округлось бегунка */
    }

    .change-city_list-wrapper:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 20px;
        left: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent, #F7F7F7);
    }

    .change-city_item {
        font-size: 18px;
        line-height: 1em;
        color: inherit;
        text-decoration: none;
    }
}

.top_change-city {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 5px;
    padding: 0;
    background: none;
    border: none;
}

.top_change-city__icon-wrapper {
    width: 20px;
    height: 20px;
    background: #F2F2F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top_change-city__icon-wrapper :where(img, svg) {
    width: 40%;
    height: auto;
    object-fit: contain;
}

.page-inner header {
    border-bottom: 1px solid #000;
    padding: 0 0 10px;
}

@media screen and (max-width: 1024px) {
    .page-inner header {
        padding: 0;
    }
}

.page-inner .span12 {
    margin: 0 auto 50px auto;
}

.page-inner .span12 .span12 {
    padding: 0;
}

.footer-col__social a:hover svg .fill-hover, .contacts-col__social a:hover svg .fill-hover, .top-search:hover svg path {
    fill: #c03;
}

.dropdown-title, .nav-list__link, .slider-link a, .slider-title {
    text-transform: uppercase;
}

*, ::after, ::before {
    box-sizing: border-box;
}

ol[class], ul[class] {
    padding: 0;
    list-style: none;
}

blockquote, body, dd, dl, figcaption, figure, h1, h2, h3, h4, li, ol[class], p, ul[class] {
    margin: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    overflow-y: scroll;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

picture {
    display: inline-block;
}

.arrowUp {
    display: block;
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 100;
    width: 70px;
    height: 70px;
    background: linear-gradient(130deg, transparent 50%, #b7223f 50%);
    -webkit-background-size: 300%;
    background-size: 300%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 50px;
    border-radius: 5px;
    transition: all 0.4s linear 0s;
}

.arrowUp svg {
    width: 40px;
    height: 45px;
    fill: #b7223f;
    transition: all 0.4s linear 0s;
}

@media (max-width: 520px) {
    .wishlist .item .col.ttl, .basket-list .item .col.ttl {
        flex-basis: 90px;
    }

    .arrowUp {
        right: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
    }

    .arrowUp svg {
        width: 35px;
        height: 40px;
    }
}

.arrowUp:hover svg {
    fill: #fff;
}

.arrowUp:hover {
    background-position: 100% 0;
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

a.notstyllink {
    color: #001a74;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

article > * + * {
    margin-top: 1em;
}

button, select {
    cursor: pointer;
}

button, input, select, textarea {
    border: 1px solid #8b8b8b;
    font: inherit;
}

input.count-point {
    width: 100%;
}

@media (prefers-reduced-motion: reduce) {
    * {
        -webkit-animation-duration: 0s !important;
        animation-duration: 0s !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
}

@font-face {
    font-family: "Bebas Neue";
    src: url(../fonts/BebasNeue-Thin.woff2) format("woff2"), url(../fonts/BebasNeue-Thin.woff) format("woff");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bebas Neue Book";
    src: url(../fonts/BebasNeueBook.woff2) format("woff2"), url(../fonts/BebasNeueBook.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bebas Neue";
    src: url(../fonts/BebasNeueLight.woff2) format("woff2"), url(../fonts/BebasNeueLight.woff) format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bebas Neue";
    src: url(../fonts/BebasNeueBold.woff2) format("woff2"), url(../fonts/BebasNeueBold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Decima Nova Pro";
    src: url(../fonts/DecimaNovaPro-Italic.woff2) format("woff2"), url(../fonts/DecimaNovaPro-Italic.woff) format("woff");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Decima Nova Pro";
    src: url(../fonts/DecimaNovaProHeavy-Italic.woff2) format("woff2"), url(../fonts/DecimaNovaProHeavy-Italic.woff) format("woff");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Decima Nova Pro Lt";
    src: url(../fonts/DecimaNovaProLt.woff2) format("woff2"), url(../fonts/DecimaNovaProLt.woff) format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Decima Nova Pro";
    src: url(../fonts/DecimaNovaPro.woff2) format("woff2"), url(../fonts/DecimaNovaPro.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Decima Nova Pro";
    src: url(../fonts/DecimaNovaPro-Bold.woff2) format("woff2"), url(../fonts/DecimaNovaPro-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Decima Nova Pro";
    src: url(../fonts/DecimaNovaPro-BoldItalic.woff2) format("woff2"), url(../fonts/DecimaNovaPro-BoldItalic.woff) format("woff");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Decima Nova Pro Lt";
    src: url(../fonts/DecimaNovaProLt-Italic.woff2) format("woff2"), url(../fonts/DecimaNovaProLt-Italic.woff) format("woff");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Bebas Neue";
    src: url(../fonts/BebasNeueRegular.woff2) format("woff2"), url(../fonts/BebasNeueRegular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Decima Nova Pro";
    src: url(../fonts/DecimaNovaPro-Heavy.woff2) format("woff2"), url(../fonts/DecimaNovaPro-Heavy.woff) format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: ALSRubl-Arial;
    src: url(../fonts/b-rub_arial/alsrubl-arial-regular.eot);
    src: url(../fonts/b-rub_arial/alsrubl-arial-regular.eot?#iefix) format("embedded-opentype"), url(../fonts/b-rub_arial/alsrubl-arial-regular.woff) format("woff"), url(../fonts/b-rub_arial/alsrubl-arial-regular.ttf) format("truetype"), url(../fonts/b-rub_arial/alsrubl-arial-regular.svg#ALSRublArialRegular) format("svg");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: ALSRubl-Arial;
    src: url(../fonts/b-rub_arial/alsrubl-arial-italic.eot);
    src: url(../fonts/b-rub_arial/alsrubl-arial-italic.eot?#iefix) format("embedded-opentype"), url(../fonts/b-rub_arial/alsrubl-arial-italic.woff) format("woff"), url(../fonts/b-rub_arial/alsrubl-arial-italic.ttf) format("truetype"), url(../fonts/b-rub_arial/alsrubl-arial-italic.svg#ALSRublArialItalic) format("svg");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: ALSRubl-Arial;
    src: url(../fonts/b-rub_arial/alsrubl-arial-bold.eot);
    src: url(../fonts/b-rub_arial/alsrubl-arial-bold.eot?#iefix) format("embedded-opentype"), url(../fonts/b-rub_arial/alsrubl-arial-bold.woff) format("woff"), url(../fonts/b-rub_arial/alsrubl-arial-bold.ttf) format("truetype"), url(../fonts/b-rub_arial/alsrubl-arial-bold.svg#ALSRublArialBold) format("svg");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: ALSRubl-Arial;
    src: url(../fonts/b-rub_arial/alsrubl-arial-bolditalic.eot);
    src: url(../fonts/b-rub_arial/alsrubl-arial-bolditalic.eot?#iefix) format("embedded-opentype"), url(../fonts/b-rub_arial/alsrubl-arial-bolditalic.woff) format("woff"), url(../fonts/b-rub_arial/alsrubl-arial-bolditalic.ttf) format("truetype"), url(../fonts/b-rub_arial/alsrubl-arial-bolditalic.svg#ALSRublArialBoldItalic) format("svg");
    font-weight: 700;
    font-style: italic;
}

.b-rub, .b-rub_arial {
    font-family: ALSRubl-Arial, Arial, sans-serif !important;
    line-height: normal !important;
}

header {
    line-height: 1em;
    position: relative;
    width: 100%;
    background: white;
}

header.fixed {
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
}

header a {
    color: inherit;
}

header a.active {
    font-weight: 600;
    color: var(--red);
}

.cart {
    position: relative;
}

.cart_product-cnt, .wishlist_product-cnt {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--red);
    color: white;
    font-size: 10px;
    padding: 5px;
    border-radius: 10px;
    line-height: 1em;
    min-width: 20px;
    text-align: center;
    transform: translate(50%, -50%);
}

.desktop-header_top {
    padding: 20px 0 20px 0;
}

.desktop-header_top .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-header_top__change-city {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: none;
    border: none;
}

.desktop-header_top__change-city :where(img, svg) {
    width: 10px;
    height: auto;
    object-fit: contain;
}

.desktop-header_menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.desktop-header_menu-item:hover {
    color: var(--red);
}

.desktop-header_menu-item:last-child {
    display: flex;
    align-items: center;
    gap: 4px;
}

.desktop-header_menu-item:last-child:before {
    /*content: '';*/
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.desktop-header_social-tel {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0 0 0 auto;
}

.desktop-header_social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F9F9F9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-header_social :where(img, svg) {
    width: 60%;
    height: auto;
    max-height: 60%;
    object-fit: contain;
}

.desktop-header_social path {
    fill: currentColor;
}

.desktop-header_tel-wrapper {
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
}

.desktop-header_tel-wrapper:hover .desktop-header_tel {
    color: var(--red);
}

.desktop-header_tel {
    font-size: 20px;
}

.desktop-header_bottom .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-header_logo {
    width: 135px;
    display: grid;
    grid-template-columns: 100%;
}

.desktop-header_logo :where(img, svg) {
    width: 100%;
    object-fit: contain;
}

.desktop-header_catalog-search {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.desktop-header_catalog-btn {
    background: var(--black);
    color: white;
    padding: 1em 1.25em;
    border-radius: 6px;
    border: none;
}

.desktop-header_catalog-btn:hover {
    background: var(--red);
}

.desktop-header_search {
    display: grid;
    align-items: center;
    grid-template-columns: 100%;
    flex-grow: 1;
    --icon-size: 20px;
}

.desktop-header_search-input {
    grid-area: 1/1;
    background: #F5F5F5;
    padding: 1em calc(1.25em + var(--icon-size)) 1em 1.25em;
    border-radius: 6px;
    border: none;
}

.desktop-header_search-input::placeholder {
    color: #848484;
}

.desktop-header_search-btn {
    grid-area: 1/1;
    justify-self: flex-end;
    margin: 0 1.25em 0 0;
    background: none;
    padding: 0;
    border: none;
}

.desktop-header_search-btn :where(img, svg) {
    width: var(--icon-size);
    height: auto;
    object-fit: contain;
}

.desktop-header_menu-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-header_menu-bottom-item {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    gap: 8px;
    justify-items: center;
}

.desktop-header_menu-bottom-item:hover {
    color: var(--red);
}

.desktop-header_menu-bottom-item :where(img, svg) {
    height: 25px;
    object-fit: contain;
}

.catalog-menu {
    position: fixed;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, .5);
    display: none;
    width: 100%;
    padding: 10px;
    align-items: flex-start;
}

.catalog-menu.active {
    display: grid;
    z-index: 99;
}

.catalog-menu .container {
    background: white;
    border-radius: 40px;
    padding: 30px;
    display: grid;
    grid-template-columns: 310px 1fr;
    align-items: flex-start;
    max-height: 100%;
    width: 100%;
    overflow: auto;
}

.catalog-menu_main {
    display: grid;
    grid-template-columns: 100%;
    border-right: 1px solid #E8E8E8;
    position: relative;
}

.catalog-menu_main:after {
    content: '';
    width: 2px;
    height: 55px;
    background: var(--red);
    position: absolute;
    top: 0;
    right: -1px;
}

.catalog-menu_main-item {
    cursor: pointer;
    --icon-size: 30px;
}

.catalog-menu_main-item-title {
    pointer-events: none;
    padding: 15px 0;
}

.catalog-menu_main-item-icon-wrapper {
    background: #F5F5F5;
    width: var(--icon-size);
    height: var(--icon-size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: black;
}

.catalog-menu_main-item-icon-wrapper :where(img, svg) {
    width: 70%;
    height: auto;
    object-fit: contain;
}

.catalog-menu_main-item-icon-wrapper path {
    fill: black;
}

.catalog-menu_main-item:hover path {
    fill: var(--red);
}

.catalog-menu_main-item-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-menu_main-item-dropdown {
    display: none;
    background: #F7F7F7;
    grid-template-columns: 100%;
    align-items: flex-start;
    padding: 10px 20px;
}

.catalog-menu_main-item-dropdown .catalog-menu_child {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.catalog-menu_child-product-cnt {
    color: #A4A4A4;
}

.catalog-menu_submenu .catalog-menu_child-product-cnt {
    display: none;
}

.catalog-menu_main-item-dropdown .catalog-menu_child:after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    transform: translate(-17%, 0) rotate(-45deg);
    flex-shrink: 0;
}

.catalog-menu_expand-childrens {
    color: var(--red);
    border: none;
    background: none;
    text-align: left;
    padding: 10px 0;
    font-weight: 500;
}

.catalog-menu_submenu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 18px;
    align-content: flex-start;
    padding: 0 40px;
    overflow: auto;
    align-self: stretch;
}

.mobile-header {
    display: none;
}

.mobile-header_top {
    padding: 10px 0;
}

.mobile-header_top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-header_top__change-city {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.mobile-header_top__change-city :where(img, svg) {
    width: 10px;
    height: auto;
    object-fit: contain;
}

.mobile-header_logo {
    display: flex;
}

.mobile-header_logo :where(img, svg) {
    width: 67px;
    object-fit: contain;
}

.mobile-header_tel-wrapper {
    display: grid;
    grid-template-columns: 100%;
    gap: 5px;
    text-align: right;
}

@media screen and (max-width: 490px) {
    .mobile-header_tel-wrapper {
        display: none;
    }
}

.mobile-header_tel-explanation {
    font-size: 12px;
}

.mobile-header_bottom .container {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 var(--mobile-gap) 20px var(--mobile-gap);
}

.mobile-header_catalog-btn {
    background: #fff;
    color: white;
    border: none;
    padding: 1em 1.4em;
    border-radius: 6px;
}

.mobile-header_search {
    flex: 0.7;
    display: grid;
    align-items: center;
    --icon-size: 15px;
}

.mobile-header_search-input {
    grid-area: 1/1;
    background: #F5F5F5;
    padding: 1em calc(1em + var(--icon-size)) 1em 1em;
    border-radius: 6px;
    border: none;
}

.mobile-header_search-input::placeholder {
    color: #848484;
}

.mobile-header_search-btn {
    grid-area: 1/1;
    justify-self: flex-end;
    margin: 0 1em 0 0;
    padding: 0;
    background: none;
    border: none;
}

.mobile-header_search-btn :where(img, svg) {
    width: var(--icon-size);
    height: var(--icon-size);
    object-fit: contain;
}

.mobile-header-float {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #E5E5E5;
    z-index: 999;
}

.mobile-header-float .container {
    padding: 10px var(--mobile-gap);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-header-float_menu-item {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
    justify-items: center;
    font-size: 11px;
}

.mobile-header-float_menu-item :where(img, svg) {
    height: 20px;
    object-fit: contain;
    z-index: -1;
}

.mobile-header_burger {
    padding: 0;
    background: none;
    border: none;
}

.mobile-header_burger > * {
    pointer-events: none;
}

.burger-menu {
    background: rgba(0, 0, 0, .15);
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    transition: .3s;
    display: grid;
    grid-template-columns: 100%;
}

.burger-menu.active {
    left: 0;
    z-index: 999;
}

.burger-menu_content {
    justify-self: flex-end;
    background: white;
    padding: 20px 50px 65px 30px;
    max-width: 325px;
    display: flex;
    flex-direction: column;
}

.burger-menu_title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 35px 0;
}

.burger-menu_title {
    font-size: 20px;
}

.burger-menu_close {
    --width: 9px;
    --weight: 2px;
    background: #F4F4F4;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.burger-menu_menu {
    font-size: 16px;
    display: grid;
    grid-template-columns: 100%;
    gap: 20px;
}

.burger-menu-item:last-child {
    display: flex;
    align-items: center;
    gap: 5px;
}

.burger-menu-item:last-child:before {
    content: '';
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    background: var(--red);
    border-radius: 50%;
}

.burger-menu_social {
    display: flex;
    width: 40px;
    height: 40px;
    background: #F9F9F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 0 0 0;
}

.burger-menu_tel-wrapper {
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
    margin: 20px 0 0 0;
}

.burger-menu_tel-explanation {
    font-size: 16px;
}

.burger-menu_tel {
    font-size: 20px;
}

@media (max-width: 992px) {
    .footer {
        flex-direction: column
    }
}

.top-search {
    position: absolute;
    top: 3px;
    right: 15px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    position: sticky;
    flex-wrap: wrap;
}

.header-mobile {
    pointer-events: none;
}

.header-mobile.opened {
    pointer-events: visible;
}

.header-logo {
    grid-area: logo;
}

.header_change-city-mobile {
    grid-area: city;
    display: none;
    width: 100%;
    border: none;
    background: transparent;
    font-size: 14px;
    gap: 14px;
    padding: 10px 0 0 0;
}

.mobile-menu {
    grid-area: burger;
}

.header_search-mobile {
    grid-area: search;
}

.header ul.header-buttons {
    grid-area: cart;
}

@media (max-width: 900px) {
    header {
        /*position: sticky;*/
        background: #fff;
        top: 0;
        /*z-index: 101;*/
    }

    .header {
        display: grid;
        grid-template-areas: 'burger search logo cart' 'city city city city';
        grid-template-columns: 26px 1fr 130px 1fr;
    }

    .header_change-city-mobile {
        display: flex;
        border-top: 2px solid #747474;
    }

    .header-login {
        display: none;
    }

    .header-favorites {
        display: none;
    }

    .header-mobile .header-cart {
        display: none;
    }

    .header .header-mobile ul.header-buttons.opened .header-cart__link span {
        display: block;
    }

    .header .header-mobile ul.header-buttons.opened {
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .header .header-mobile ul.header-buttons.opened li a {
        display: flex;
        margin: 0 0 15px 0;
    }

    .header .header-mobile ul.header-buttons.opened li:last-child a {
        margin: 0;
    }

    .header .header-mobile ul.header-buttons.opened li svg {
        margin: 0 10px 0 0;
    }

    .header-buttons.opened .header-login, .header-buttons.opened .header-favorites, .header-buttons.opened .header-cart {
        display: block;
    }

    .header-logo {
        display: none;
    }

    .header-logo {
        position: relative;
        transform: translate(0, 0);
        top: auto;
        left: auto;
        height: 80px;
        display: block;
        text-align: left;
        font-size: 20px;
        font-weight: 300;
        padding: 10px 0;
    }

    .header-logo img {
        height: 100%;
    }
}

@media (max-width: 600px) {
    .header-logo {
        height: 50px;
        padding: 0;
    }
}

@media (max-width: 400px) {
    .header-logo.opened {
        display: block;
    }

    .context .iframe {
        height: auto;
    }
}

@media (max-width: 600px) {
    .context .iframe {
        width: 100%;
    }
}

.header-contact {
    font-size: 14px;
    font-family: "Decima Nova Pro Lt";
    color: #000;
    margin: 0 15px 0 0;
}

.header-contact__phone {
    font-size: 19px;
    font-weight: 700;
    background: url(../img/i-phone.svg) 0 3px no-repeat;
    padding-left: 20px;
    color: #000;
    text-decoration: none;
    font-family: "Decima Nova Pro";
}

.header-contact__link {
    color: #000;
    font-size: 12px;
    font-family: "Decima Nova Pro Lt";
}

.header-contact__link:hover {
    color: #c03;
    text-decoration: none;
}

.header-cart, .header-cart__link {
    font-family: "Decima Nova Pro";
    font-size: 14px;
    color: #000;
}

@media (max-width: 600px) {
    .header-cart__link span {
        display: none;
    }
}

.header ul.header-buttons {
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
}

.header-buttons li:not(:last-child) {
    margin: 0 15px 0 0;
}

.header-cart {
    position: relative;
}

.header-cart .header-cart__dropdown {
    display: none;
    background: #fff;
    position: absolute;
    width: 250px;
    right: 0;
    top: 40px;
    z-index: 3;
    border: 1px solid #000;
    padding: 16px;
}

.header-cart .header-cart__dropdown:after, .header-cart .header-cart__dropdown:before {
    content: "";
    right: 10px;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    position: absolute;
    width: 0;
}

.header-cart .header-cart__dropdown:before {
    top: -2px;
    border-top: 15px solid #fff;
    z-index: 2;
}

.header-cart .header-cart__dropdown:after {
    top: -1px;
    border-top: 15px solid #000;
    z-index: 1;
}

@media (max-width: 900px) {
    .header-contact a {
        display: none;
    }

    .header-contact span {
        display: none;
    }

    .header-cart .header-cart__dropdown {
        display: none !important;
    }
}

.header-cart:hover .header-cart__dropdown {
    display: block;
}

.header-cart__link {
    text-decoration: none;
}

.header-cart svg, .header-favorites svg, .header-login svg {
    width: 30px;
    height: 30px;
    display: block;
    margin: auto;
}

.about-list__item, .header-cart-list .header-cart__name a, .header-cart-list .header-cart__price, .slider-link a {
    font-family: "Decima Nova Pro Lt";
}

.header-cart__link:hover {
    color: #c03;
    text-decoration: none;
}

@media (max-width: 900px) {
    .header div:not(:last-child) {
        margin: 0;
    }

    .header-cart__link {
        font-size: 20px;
        text-decoration: none;
        font-weight: 700;
        background-position: left center;
    }

    .header-cart.opened br {
        display: none;
    }
}

@media (max-width: 900px) and (max-width: 400px) {
    .header-cart.opened {
        height: 64px;
        padding: 19px 0 0 20px;
    }
}

.header-cart-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 20px 0 10px;
}

.header-cart-list__item {
    display: flex;
    padding-bottom: 12px;
}

.header-cart-list .header-cart__name {
    padding-left: 10px;
    text-align: left;
}

.header-cart-list .header-cart__name a {
    display: block;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
}

.header-cart-list .header-cart__name a:hover {
    color: #c03;
}

.header-cart-list .header-cart__price {
    white-space: nowrap;
    font-size: 14px;
}

.header-cart-action {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 10px;
}

.header-cart__button a {
    color: #000;
    border: 2px solid #000;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 4px;
}

.header-cart__total {
    text-align: right;
    font-size: 16px;
    font-family: "Decima Nova Pro";
}

.added-to-cart-body a {
    text-decoration: none;
}

.added-to-cart-popup {
    display: none;
    z-index: 1000;
    padding: 0 0 20px 0;
    background: #fff;
    box-shadow: -1px 1px 30px -2px rgba(0, 0, 0, 0.28);
    position: absolute;
    bottom: unset;
    width: 316px;
    border-radius: 12px;
}

.added-to-cart-popup._active {
    display: block;
}

.added-to-cart-popup_ios-panel-opened {
    padding-bottom: 0;
}

.added-to-cart-header {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    border-bottom: 0.5px solid rgba(218, 220, 225, 0.5);
}

.added-to-cart-header__title {
    font-size: 16px;
    line-height: 60px;
    color: #29292f;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 0 20px;
}

.added-to-cart-header__close-icon {
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    transform: translate(0, -50%);
    right: 20px;
    cursor: pointer;
}

.added-to-cart-body {
    display: flex;
    padding: 15px 16px;
    border-bottom: 0.5px solid rgba(218, 220, 225, 0.5);
}

.added-to-cart-body__image-block {
    margin-right: 16px;
}

.added-to-cart-price-block__price {
    font-size: 14px;
    color: #3a3a3f;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.added-to-cart-image-block {
    width: 54px;
    height: 54px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 5px;
}

.added-to-cart-image-block__img {
    border-radius: 5px;
    background-color: #a8119c;
    width: 100%;
    height: 100%;
}

.added-to-cart-info-block {
    text-align: start;
    width: 100%;
    line-height: 1.33;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    color: #99a0ad;
}

.added-to-cart-info-block__brand {
    font-size: 16px;
    color: #3a3a3f;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin: 0 0 12px 0;
}

.added-to-cart-info-block__name {
    height: 32px;
    max-width: 220px;
    margin-top: 8px;
    color: #99a0ad;
}

.added-to-cart-info-block__color {
    height: 16px;
    margin-top: 12px;
}

.added-to-cart-price-block__size {
    flex: 1;
}

.added-to-cart-controls {
    margin: 14px 20px 0 20px;
}

.added-to-cart-controls button {
    font-size: 17px;
    height: 40px;
}

.added-to-cart-controls button + button {
    margin-top: 15px;
}

.added-to-cart-event-block {
    padding: 19px;
    background-color: #f5f4f9;
    border-radius: 12px;
    line-height: 18px;
    text-align: center;
    margin: 0 16px 12px;
}

@media screen and (min-width: 599px) {
    .added-to-cart-event-block {
        margin: 0 auto 12px;
        width: 304px;
    }
}

.added-to-cart-event-block span {
    display: inline-block;
}

.added-to-cart-btn {
    width: 100%;
}

.mobile-dropdown {
    display: none;
}

@media (max-width: 900px) {
    .mobile-dropdown.opened {
        display: block;
        background: #fff;
        padding: 0px 20px 100px;
    }

    .mobile-dropdown__sale {
        background: #c03;
        color: #fff !important;
        line-height: 1;
        padding: 3px 6px 1px;
    }

    .mobile-dropdown .mobile-call {
        color: #000;
        border: 1px solid #000;
        text-align: center;
        display: block;
        padding: 13px 10px;
        margin-top: 30px;
        clear: both;
        text-decoration: none;
        font-family: "Decima Nova Pro";
        font-size: 18px;
        border-radius: 2px;
    }
}

.mobile-dropdown_item {
    border-bottom: 2px solid #ccc;
    color: #444;
    cursor: pointer;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    text-decoration: none;
    background: rgb(239, 239, 239);
    font-family: inherit;
}

.mobile-dropdown_item-marker {
    --width: 15px;
    --weight: 2px;
    --angle: 0deg;
}

[open] .mobile-dropdown_item-marker {
    --angle: 45deg;
}

.mobile-dropdown__accordion {
    border: none;
    border-bottom: 2px solid #ccc;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
    display: flex;
}

.mobile-dropdown__accordion:first-child {
    border-top: 2px solid #ccc;
}

.mobile-dropdown__accordion:nth-child(n+3):after {
    content: "\02795";
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.mobile-dropdown__accordion.active:after {
    content: "\2796";
}

.mobile-dropdown__accordion.active + .mobile-dropdown__panel {
    margin: 10px;
}

.mobile-dropdown__panel {
    margin: 0 10px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-out;
}

@media (max-width: 900px) and (max-width: 400px) {
    .mobile-dropdown.opened {
        top: 240px;
    }
}

@media (min-width: 900px) {
    .header-mobile {
        display: none;
    }
}

@media (max-width: 900px) {
    .header-mobile {
        overflow: scroll;
        position: fixed;
        width: 100%;
        top: 64px;
        left: 0;
        height: 100vh;
        z-index: 1000;
    }

    .header-mobile.opened {
        background-color: #fff;
    }

    .header-mobile .header-contact__phone {
        background-position: 0 5px;
        font-size: 20px;
        font-family: "Decima Nova Pro";
        font-weight: 300;
        margin-right: 15px;
        margin-left: 10px;
        margin-top: 4px;
        white-space: nowrap;
    }

    .header .mobile-menu {
        margin-left: auto;
        width: 26px;
        position: relative;
        z-index: 1000;
    }

    .header .mobile-menu div {
        background: #000;
        border-radius: 4px;
        height: 3px;
        margin: 4px 0;
        transition: all 0.3s ease;
    }

    .header .mobile-menu.opened div:nth-child(1) {
        transform: rotate(-45deg);
        top: 5px;
        position: relative;
    }

    .header .mobile-menu.opened div:nth-child(3) {
        transform: rotate(45deg);
        top: -2px;
        position: relative;
    }

    .header .mobile-menu.opened div:nth-child(2) {
        display: none;
    }
}

@media (max-width: 600px) {
    .header-mobile {
        top: 60px;
    }
}

@media (max-width: 900px) and (max-width: 400px) {
    .header-mobile .header-contact__phone {
        font-size: 18px;
    }
}

.nav {
    padding: 12px 0 0;
}

@media (max-width: 900px) {
    .nav {
        display: none;
    }
}

.dropdown {
    display: none;
    position: absolute !important;
    top: 34px;
    padding: 24px 36px;
    background: #fff;
    border: 1px solid #000;
    z-index: 99;
}

.dropdown:after, .dropdown:before {
    position: absolute;
    left: 40px;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    content: "";
}

.dropdown:before {
    top: -2px;
    width: 0;
    border-top: 15px solid #fff;
    z-index: 2;
}

.dropdown:after {
    top: -1px;
    width: 0;
    border-top: 15px solid #000;
    z-index: 1;
}

.dropdown-title {
    font-size: 28px;
    color: #000;
    padding-bottom: 12px;
}

.dropdown-list {
    display: flex;
    flex-wrap: wrap;
}

.dropdown-list__item {
    width: 25%;
    padding-bottom: 3px;
}

.dropdown-list__link {
    font-size: 16px;
    color: #000;
    text-decoration: none;
}

.dropdown-list__link:hover {
    color: #c03;
}

.nav-list {
    display: flex;
    justify-content: space-between;
}

.nav-list__item {
    padding-bottom: 10px;
}

.nav-list__item--dropdown {
    position: relative;
}

.nav-list__item--dropdown:hover .dropdown {
    display: block;
    width: 630px;
}

.nav-list__item--dropdown .nav-list__link {
    background: url(../img/i-arrow.svg) right no-repeat;
    padding-right: 10px;
}

.nav-list__link {
    color: #000;
    font-size: 18px;
    font-family: "Bebas Neue Book";
    text-decoration: none;
    padding: 3px 6px 0;
}

.nav-list__link:hover {
    color: #c03;
}

.nav-list__link--sale {
    background: #c03;
    color: #fff;
}

.nav-list__link--sale:hover {
    color: #fff;
}

.slider__item {
    height: 300px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

#Goods_slider .slider__item {
    height: 279px !important;
}

.slider__item .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    flex-direction: column;
}

@media (max-width: 900px) {
    .slider__item, .slider__item .container {
        height: 270px;
    }
}

.slider {
    position: relative;
}

.slider .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    position: relative;
    z-index: 1;
}

.slider .slick-arrow {
    position: absolute;
    top: 40%;
    z-index: 10;
    font-size: 0;
    width: 43px;
    height: 43px;
    border: none;
    cursor: pointer;
    margin-top: -22px;
    border: 0px solid transparent;
    border-radius: 120px;
    background: url("/img/strelka.png") center center / cover no-repeat;
}

.slider-contact .slick-arrow {
    width: 18px;
    height: 18px;
    border-top: 4px solid #b7223f;
    border-right: 4px solid #b7223f;
}

@media (max-width: 1024px) {
    .slider .slick-arrow {
        width: 35px;
        height: 35px;
    }

    .slider-contact .slick-arrow {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 900px) {
    .slider .slick-arrow {
        width: 30px;
        height: 30px;
    }

    .slider-contact .slick-arrow {
        width: 20px;
        height: 20px;
    }

    .slider-contact .slick-slide {
        max-height: 350px;
    }
}

.slider .slick-arrow.slick-prev {
    left: 20px;
    transform: rotate(180deg);
    transition: all 0.2s linear 0s;
}

.slider .slick-arrow.slick-prev:hover {
    border-color: #ff0033;
}

.slider .slick-arrow.slick-next {
    right: 20px;
}

@media (max-width: 520px) {
    .slider .slick-arrow {
        width: 20px;
        height: 20px;
    }

    .slider .slick-arrow.slick-next {
        right: 10px;
    }

    .slider .slick-arrow.slick-prev {
        left: 10px;
    }
}

.slider .slick-arrow.slick-next:hover {
    border-color: #ff0033;
}

.about-list, .product__add {
    justify-content: space-between;
}

.slider .slick-dots li {
    margin: 0 3px;
}

.slider .slick-dots li:last-child {
    margin: 0 0 0 3px;
}

.slider .slick-dots li button {
    width: 31px;
    height: 0px;
    border: 2px solid #CECECE;
    font-size: 0;
    padding: 0;
    outline: 0;
    cursor: pointer;
}

.slider-contact .slick-dots li button {
    width: 31px;
    height: 0px;
    border: 2px solid #CECECE;
}

.slider .slick-dots li.slick-active button {
    width: 31px;
    height: 0px;
    border: 2px solid #b7223f;
}

.slider .slick-dots li button:hover {
    width: 31px;
    height: 0px;
    border: 2px solid #b7223f;
}

.slider-contact .slick-dots li button:hover {
    width: 31px;
    height: 0px;
    border: 2px solid #b7223f;
}

@media (max-width: 900px) {
    .slider .slick-dots li button {
        width: 21px !important;
        height: 0px;
    }

    .slider .slick-dots li.slick-active button {
        border-width: 1.5px;
    }
}

.slider-title {
    background: rgba(54, 40, 52, 0.54);
    padding: 24px 35px;
    color: #fff;
    font-size: 46px;
    font-weight: 100;
    line-height: 1;
    text-align: center;
    border: 2px solid #fff;
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .slider-title {
        font-size: 30px;
    }
}

.slider-link a {
    background: #fff;
    display: inline-block;
    padding: 8px 48px;
    color: #000;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    transition: all 0.5s ease;
}

.slider-link a:hover {
    background: #f0f0f0;
}

.about-list__item:nth-child(1), .about-list__item:nth-child(2), .about-list__item:nth-child(3) {
    background-repeat: no-repeat;
    background-position: top left;
}

@media (max-width: 900px) {
    .slider-link a {
        width: 100%;
        padding: 6px;
        display: block;
        text-align: center;
        font-size: 14px;
    }

    .slider-link {
        width: 100%;
    }
}

.about {
    border-bottom: 1px solid #f0f0f0;
    padding: 36px 0;
}

.about-list {
    display: flex;
    align-items: flex-start;
}

@media (max-width: 520px) {
    .about-list {
        flex-direction: row;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    .about-list__item:nth-child(2) {
        margin-top: 7px;
        padding-top: 63px;
    }

    .about-list__item:nth-child(3) {
        padding-top: 62px;
    }

    .about-list__item {
        margin: 0 0 10px 0;
    }

    .about-list__item:last-child {
        margin: 0;
    }

    .about {
        padding: 36px 0 0 0;
    }
}

.about-list__item {
    font-size: 18px;
    padding: 12px 0 10px 80px;
    line-height: 20px;
}

.about-list__item strong, .product .discount, .product-info__img .discount {
    font-family: "Decima Nova Pro";
}

.about-list__item strong {
    font-size: 20px;
    font-weight: 700;
}

.newest-sub-title, .text-block p, .text-block p.sub-title {
    font-family: "Decima Nova Pro Lt";
}

.about-list__item:nth-child(1) {
    background-image: url(../img/i-ship.svg);
}

.about-list__item:nth-child(2) {
    background-image: url(../img/i-years.svg);
}

.about-list__item:nth-child(3) {
    background-image: url(../img/i-sample.svg);
}

@media (max-width: 900px) {
    .about {
        border: none;
    }

    .about-list__item:nth-child(1) {
        background-size: 65px;
    }

    .about-list__item:nth-child(2) {
        background-size: 45px;
    }

    .about-list__item:nth-child(3) {
        background-size: 65px;
    }

    .about-list__item {
        padding-top: 70px;
        padding-left: 0;
        font-size: 16px;
        background-size: 45px;
    }

    .about-list__item strong {
        font-size: 16px;
    }

    .about-list__item:nth-child(1), .about-list__item:nth-child(2), .about-list__item:nth-child(3) {
        text-align: center;
        background-position: center top;
    }
}

.text-block__more {
    display: none;
}

.about-more {
    background: url(../img/i-arrow-right__blue.svg) right no-repeat;
    font-size: 16px;
    font-weight: 700;
    color: #1c317b;
    text-decoration: none;
    display: inline-block;
    padding-right: 20px;
    margin: 20px 0;
}

.about-us {
    border-top: 2px solid #f1f1f3;
    margin-top: 4px;
    padding: 20px 0 0 0;
    overflow: hidden;
}

.about-us .img-less {
    float: right;
    height: 400px;
    overflow: hidden;
    position: relative;
    margin-top: -60px;
}

.about-us .img-less:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 100%);
}

.popular-item, .popular-list, .product {
    position: relative;
}

.about-us .img-less--full {
    height: auto;
}

.about-us .img-less--full:after {
    display: none;
}

.text-block h1 {
    font-size: 28px;
    font-weight: 400;
    padding-bottom: 30px;
}

.text-block p.sub-title {
    font-size: 20px;
    margin-bottom: 45px;
}

@media (max-width: 900px) {
    .text-block h1 {
        padding-bottom: 10px;
    }

    .text-block p.sub-title {
        margin-bottom: 15px;
    }

    .text-block .img-right {
        display: none;
    }
}

.product__info p, .text-block p {
    margin: 10px 0;
}

.text-block p {
    font-size: 16px;
}

.text-block .img-right {
    float: right;
    margin-left: 15px;
}

.popular {
    padding: 40px 0;
}

.popular-title {
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 20px;
}

.popular-list {
    display: flex;
    width: 100%;
    overflow-x: auto;
}

.popular-list::-webkit-scrollbar {
    width: 4px;
    height: 17px;
}

.popular-list::-webkit-scrollbar-track {
    height: 4px;
    background: url(../img/bg.png) center no-repeat;
    background-size: contain;
    margin-left: 15px;
    margin-right: 15px;
}

.popular-list::-webkit-scrollbar-thumb {
    background: url(../img/i-drag.svg) center no-repeat #000;
    background-size: 7px;
}

.popular-list__left {
    width: 33.333%;
    display: flex;
    flex-wrap: wrap;
}

.popular-list__left .popular-item:nth-child(1) {
    width: 100%;
    height: 216px;
    margin-bottom: 13px;
    margin-right: 13px;
}

.popular-list__left .popular-item:nth-child(2), .popular-list__left .popular-item:nth-child(3) {
    width: calc(50% - 13px);
    height: 180px;
    margin-right: 13px;
}

@media (max-width: 900px) {
    .popular-list__left {
        flex-wrap: nowrap;
        width: auto;
    }
}

.popular-list__center {
    width: 33.333%;
    display: flex;
    flex-wrap: wrap;
}

.popular-list__center .popular-item {
    margin-right: 13px;
    height: 414px;
    width: calc(50% - 13px);
}

@media (max-width: 900px) {
    .popular-list__center {
        flex-wrap: nowrap;
        width: auto;
    }
}

.popular-list__right {
    width: 33.333%;
    display: flex;
    flex-wrap: wrap;
}

.popular-list__right .popular-item {
    width: 100%;
}

.popular-list__right .popular-item:nth-child(1) {
    height: 210px;
    margin-bottom: 13px;
}

.popular-list__right .popular-item:nth-child(2) {
    height: 190px;
}

@media (max-width: 900px) {
    .popular-list__right {
        flex-wrap: nowrap;
        width: auto;
    }
}

.popular-item__btn {
    background: #fff;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    color: #000;
    font-size: 15px;
    margin: auto;
    width: 120px;
    height: 36px;
    line-height: 38px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.popular-item__link {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    color: #000;
    font-size: 16px;
    text-decoration: none;
    line-height: 1;
}

.popular-item__link strong {
    font-size: 22px;
}

.popular-item__link:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 2px solid transparent;
    transition: all 0.3s linear;
}

@media (min-width: 769px) {
    .popular-item__link:hover:after {
        border: 2px solid #fff;
    }

    .popular-item__link:hover .popular-item__btn {
        opacity: 1;
    }
}

.popular-item__link--top-right {
    text-align: right;
    padding: 30px 50px 0 0;
}

.popular-item__link--top-left {
    text-align: left;
    padding: 30px 0 0 30px;
}

.span12 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 900px) {
    .popular-item__link span {
        background: #fff;
        padding: 10px 5px !important;
        margin-top: 132px !important;
        display: block;
        width: calc(100% + 2px);
        top: 0 !important;
        left: -1px !important;
        text-align: left;
        position: absolute;
    }

    .popular-item {
        width: 132px !important;
        height: 190px !important;
        margin-right: 7px !important;
        margin-left: 7px !important;
    }
}

.newest {
    padding: 60px 0;
    border-bottom: 2px solid #f1f1f3;
}

.newest-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .newest {
        border: none;
        padding: 14px 0;
    }

    .newest .container {
        padding: 0;
    }

    .newest-title {
        width: 100%;
        text-align: center;
    }

    .newest-sub-title {
        width: 100%;
        display: block;
        text-align: center;
    }
}

.newest-sub-title {
    font-size: 16px;
    padding-left: 10px;
}

.products-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

@media (max-width: 900px) {
    .products-list {
        flex-wrap: nowrap;
        width: 100%;
        overflow: auto;
        margin: 0 !important;
        padding-bottom: 20px !important;
    }

    .products-list::-webkit-scrollbar {
        width: 4px;
        height: 10px;
    }

    .products-list::-webkit-scrollbar-track {
        margin-top: -300px !important;
        height: 4px;
        background: url(../img/bg.png) center no-repeat;
        background-size: contain;
        margin-left: 15px !important;
        margin-right: 15px !important;
        background: #eee;
        border-radius: 20px;
    }

    .products-list::-webkit-scrollbar-thumb {
        background: url(../img/i-drag.svg) center no-repeat #000;
        background-size: 7px;
        background: #000;
        border-radius: 20px;
    }

    .products-list .product {
        margin-left: 0;
    }

    .products-list .product__img {
        /*width: 200px;*/
    }
}

.product {
    border: 1px solid #e4e4e4;
    display: flex;
    flex-direction: column;
}

.product-info__img {
    position: relative;
}

.product .discount, .product-count__info.discount, .product-info__img .discount, .col.pict .discount {
    background: #c03;
    width: 54px;
    height: 54px;
    border-radius: 100px;
    font-size: 10px;
    text-align: center;
    position: relative;
    line-height: 1;
    padding: 10px 0 0;
    z-index: 1;
    margin-top: 0;
    flex-wrap: wrap;
    align-items: center;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.col.pict .discount {
    width: 34px;
    height: 34px;
    top: 18px;
    left: 15px;
    padding: 5px 0 0;
}

.product-count__info.discount {
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 50px;
    height: 50px;
}

#tobasket .product-price__current.mobil {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    font-size: 80%;
    float: left;
    width: 50%;
}

#tobasket .product-price__current.mobil .product-price__current {
    font-size: 100%;
}

a.wishListClick {
    background: url(../img/tovar_ne_v_izbrannom2.png) no-repeat 0 0;
    background-size: contain;
}

a.wishListClick.wish-opened {
    background: url(../img/tovar_v_izbrannom2.png) no-repeat 0 0;
    background-size: contain;
}

@media (max-width: 992px) {
    .product-count__info.discount {
    }
}

@media (max-width: 520px) {
}

.product .discount span, .product-info__img .discount span {
    font-size: 18px;
    position: relative;
    top: -7px;
}

.product .discount:after, .product-count__info.discount::after, .product-info__img .discount::after, .col.pict .discount::after {
    content: "";
    width: 62px;
    height: 62px;
    border: 2px solid #c03;
    border-radius: 100px;
    position: absolute;
    top: -4px;
    left: -4px;
    z-index: -1;
}

.col.pict .discount::after {
    width: 42px;
    height: 42px;
}

.product-count__info.discount::after {
    border-color: #000;
    width: 58px;
    height: 58px;
}

.product .tag, .product-info__img .tag {
    background: #c03;
    color: #fff;
    padding: 5px 13px;
    font-family: "Decima Nova Pro Lt";
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    z-index: 5;
}

.product__name, .product__price {
    font-family: "Decima Nova Pro";
}

.product__img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.product__name {
    padding: 18px 10px;
    font-size: 18px;
    min-height: 85px;
    overflow: hidden;
}

.product__name-link {
    color: #000;
    text-decoration: none;
}

.product__name-link.active {
    font-weight: bold;
    font-style: italic;
}

.product__name-link:hover {
    color: #c03;
}

.product__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px;
    font-size: 20px;
    font-weight: 500;
    padding: 0 10px;
}

.product__price .b-rub_arial {
    font-size: 22px;
}

@media (max-width: 900px) {
    .product__price {
        font-size: 20px;
    }
}

.product__add {
    display: flex;
    align-items: center;
    padding: 10px;
    position: relative;
    z-index: 10;
    margin-top: auto;
}

.product__add-count {
    display: flex;
    border: 1px solid #e4e4e4;
    color: #000;
    border-radius: 2px;
    height: auto;
    line-height: 37px;
    font-size: 12px;
    font-family: "Decima Nova Pro Lt";
}

.product__info.mobil {
    display: inline-block !important;
    position: static;
    /*bottom: 17 px;*/
    /*top: auto;*/
    border: none;
    background: transparent;
}

.product__add-count a {
    font-size: 20px;
    font-weight: 700;
    padding: 0 4px;
    font-family: "Decima Nova Pro";
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
}

.product__add-btn a, .product__info, .products-more a {
    font-family: "Decima Nova Pro Lt";
}

.product__add-count a:hover {
    background: #e4e4e4;
}

.product__add-count .product__count {
    border-left: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
    padding: 0 4px;
}

.product__add-btn {
    margin-left: auto;
    align-self: flex-end;
    white-space: nowrap;
    margin-bottom: 8px;
}

.product__add-btn a, a.afteradd {
    font-size: 15px;
    text-decoration: none;
    border: 2px solid #000;
    padding: 8px 20px;
    border-radius: 4px;
    color: #000;
    transition: all 0.3s ease;
}

.product__add-btn a:hover, a.afteradd:hover {
    background: #000;
    color: #fff;
}

.product__info {
    display: none;
    background: #fff;
    top: 100%;
    left: -1px;
    right: -1px;
    position: absolute;
    color: #333;
    font-size: 13px;
    padding: 0 10px;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    /*z-index: 999;*/
}

@media (max-width: 900px) {
    .product__info {
        display: none !important;
    }

    .products-more {
        margin: 30px 0 0;
    }
}

.product:hover {
    border-color: #000;
    z-index: 30;
}

.product:hover .product__info {
    display: block;
}

.products-more {
    text-align: center;
    padding: 20px 0;
}

.products-more a {
    background: #f4f4f4;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    padding: 12px 40px;
}

.products-more a:hover {
    background: #e9e9e9;
}

.products-more a:active, .products-more a:focus {
    box-shadow: inset 1px 1px 4px #cecece;
}

@media (min-width: 769px) {
    .product-filter-mobile {
        display: none;
    }
}

@media (max-width: 900px) {
    .product-filter {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        width: 100% !important;
        z-index: 9999;
    }

    .product-filter.opened {
        display: block !important;
    }

    .product-filter #filter-list h3.active-opened, .product-filter .ui-accordion-header.hide {
        display: none;
    }

    .product-filter .ui-accordion-content {
        padding-bottom: 0 !important;
        height: 100% !important;
        max-height: 100% !important;
        padding-top: 0 !important;
    }

    .product-filter #filter-list {
        margin-top: 0px;
        padding: 20px;
    }

    .product-filter #filter-list select {
        width: 100%;
        padding: 7px;
        margin: 0 0 20px;
    }

    .product-filter #filter-list h3 {
        font-size: 20px;
        font-weight: 400;
    }

    .product-filter #filter-list .ui-accordion-content:not(.active-opened), .product-filter #filter-list h3:after {
        display: none !important;
    }

    .product-filter .reset-filter {
        margin-top: 0;
    }

    .product-filter .filter-color .filter-list-check {
        width: 50px;
        height: 50px;
        margin-right: 25px;
        margin-bottom: 25px;
    }

    .product-filter .filter-color .filter-list-check .color input {
        width: 50px;
        height: 50px;
    }

    .product-filter .filter-color .filter-list-check .color input:checked {
        background-size: 38px;
    }

    .product-filter-mobile {
        padding: 15px;
        font-family: "Decima Nova Pro";
        font-weight: 700;
    }

    .product-filter-mobile img {
        width: 10px;
        height: 10px;
        margin-top: 6px;
        margin-right: 6px;
    }

    .product-filter-mobile.opened {
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: #f4f4f4;
    }

    .product-filter-mobile .back-filter {
        display: none;
        background: url(../img/i-arrow-left.svg) left no-repeat;
        background-size: 9px;
        padding-left: 20px;
    }

    .product-filter-mobile.active {
        font-size: 0;
    }

    .product-filter-mobile.active img {
        display: none;
    }

    .product-filter-mobile.active .back-filter {
        font-size: 16px;
        font-family: "Decima Nova Pro";
        color: #000;
        display: block;
        text-decoration: none;
        padding-top: 1px;
    }

    .filter-close {
        background: url(../img/i-close.svg) center no-repeat;
        background-size: contain;
        position: absolute;
        right: 15px;
        top: 18px;
        width: 20px;
        height: 20px;
        z-index: 9999;
    }
}

.breadcrumbs ul li a, .catalog-filter-links ul li a, .map-adress ul li, .sale-sub-title {
    /*font-family: "Decima Nova Pro Lt";*/
}

.sale {
    padding: 60px 0 30px 0;
    margin: 0 0 20px 0;
    margin-top: 4px;
    border-top: 2px dashed #eee;
    border-bottom: 2px dashed #eee;
}

.sale.related {
    border-top: 0;
}

.sale.newest-section .products-list, .sale.related .products-list {
    margin: 0 !important;
    padding: 0;
}

.sale .container {
    position: relative;
}

@media (max-width: 900px) {
    .sale .container {
        padding: 0;
    }
}

.sale .slick-list {
    padding-bottom: 120px;
}

.sale .products-list {
    padding-bottom: 20px;
    margin-bottom: 30px !important;
}

.sale-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .sale {
        border: none;
        padding: 0;
    }

    .sale-title {
        width: 100%;
        text-align: center;
    }

    .sale-sub-title {
        width: 100%;
        display: block;
        text-align: center;
    }
}

.sale-sub-title {
    font-size: 16px;
    padding-left: 10px;
}

.sale-arrows {
    position: absolute;
    right: 10px;
    top: 0;
}

.sale-arrows button {
    font-size: 0;
    background: 0 0;
    border: none;
    cursor: pointer;
    outline: 0;
    margin-left: 15px;
}

.sale-arrows button.slick-prev {
    width: 14px;
    height: 22px;
    background: url(../img/i-slider-arrow.svg) center no-repeat;
    transform: rotate(180deg);
}

.sale-arrows button.slick-prev:hover {
    background-image: url(../img/i-slider-arrow__red.svg);
}

.sale-arrows button.slick-next {
    width: 14px;
    height: 22px;
    background: url(../img/i-slider-arrow.svg) center no-repeat;
}

.sale-arrows button.slick-next:hover {
    background-image: url(../img/i-slider-arrow__red.svg);
}

.map {
    height: 440px;
    position: relative;
    display: flex;
}

.map .container {
    padding: 0;
}

.map iframe {
    height: 440px;
}

.map-adress {
    width: 310px;
    height: 440px;
    background: #fff;
    position: relative;
    z-index: 2;
    padding: 0 30px 15px 30px;
}

.map-adress ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.map-adress ul li {
    font-size: 14px;
    padding-left: 35px;
    padding-bottom: 10px;
}

.map-adress ul li.map-adress__name {
    font-size: 24px;
    font-family: "Decima Nova Pro";
}

.map-adress ul li.map-adress__name span {
    border-bottom: 1px dashed;
}

.map-adress ul li.map-adress__location {
    background: url(../img/i-map-location.svg) 4px 2px no-repeat;
}

.map-adress ul li.map-adress__time {
    background: url(../img/i-map-time.svg) 4px 2px no-repeat;
}

.map-adress ul li.map-adress__phone {
    background: url(../img/i-map-phone.svg) 4px 2px no-repeat;
    font-weight: 700;
}

.map-adress .map-adress__1 {
    border-bottom: 2px dashed #d1d1d1;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.map-adress .map-adress__1 li.map-adress__name {
    color: #001a74;
    background: url(../img/map-blue.png) 2px 8px no-repeat;
}

.map-adress .map-adress__2 li.map-adress__name {
    color: #45a854;
    background: url(../img/map-green.png) 2px 8px no-repeat;
}

@media (max-width: 900px) {
    .map-adress {
        height: auto;
        width: auto;
        display: flex;
        padding: 0 15px 15px 15px;
        margin-left: -15px;
        margin-right: -15px;
    }

    .map-adress .map-adress__1 {
        padding: 0;
        margin: 0 10px 0 0;
        border: none;
    }

    .map-adress li.map-adress__name {
        padding-top: 6px;
        font-size: 16px !important;
    }

    .map-adress ul li {
        padding-left: 25px;
        font-size: 12px !important;
    }
}

.breadcrumbs ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.breadcrumbs ul li {
    font-weight: 700;
}

.breadcrumbs ul li:not(.breadcrumbs--active.goodinfo__mobile-hidden):not(:last-child):after {
    content: "";
    background: url(../img/i-arrow-right.svg) center no-repeat;
    width: 24px;
    height: 12px;
    display: inline-flex;
    vertical-align: middle;
    background-size: contain;
    position: relative;
    bottom: 3px;
}

.breadcrumbs ul li a {
    color: #000;
    text-decoration: none;
    /*font-size: 14px;*/
}

.breadcrumbs--active {
    color: #999 !important;
}

.catalog {
    border-bottom: 1px dashed #d1d1d1;
}

.catalog-title {
    font-size: 28px;
    padding: 10px 0;
}

@media (max-width: 900px) {
    .breadcrumbs.mobile-hidden {
        display: none;
    }

    .catalog-title {
        line-height: 1;
        margin-top: 20px;
        margin-left: 5px;
    }
}

.catalog-filter-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.catalog-filter-links ul li {
    padding-bottom: 12px;
}

.catalog-filter-links ul li:not(:last-child) {
    padding-right: 30px;
}

.catalog-filter-links ul li a {
    font-size: 16px;
    white-space: nowrap;
    color: #000;
    text-decoration: none;
}

.catalog-filter-links ul li a:hover {
    color: var(--red);
}

.product-filter .filter-list-check, .product-filter h3, .sort label {
    font-family: "Decima Nova Pro";
}

@media (max-width: 900px) {
    .catalog-filter-links {
        display: block;
    }
}

.catalog {
    .catalog-row {
        display: grid;
        grid-template-columns: 170px 1fr;
        column-gap: 60px;
        align-items: flex-start;
        margin-top: 20px;
        grid-template-areas: 'filter sort' 'filter products' 'filter pagination' 'filter load-btn';
    }

    .product-filter {
        width: 100%;
        display: inline-flex;
        flex-wrap: wrap;
        grid-area: filter;
    }

    .sort {
        grid-area: sort;
    }

    .products-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        grid-area: products;
    }

    .paggination {
        grid-area: pagination;
        margin: 40px 0 0 0;
    }

    .load-products {
        grid-area: load-btn;
        cursor: pointer;
        width: 150px;
        border: 1px solid black;
        margin: 0 auto 20px auto;
        display: flex;
        justify-content: center;
        text-decoration: none;
        color: black;
        align-items: center;
        justify-self: center;
        background: white;
    }
}

@media (max-width: 900px) {
    .products-list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .catalog {
        .product-filter {
            display: none;
        }

        .catalog-row {
            grid-template-columns: 100%;
            grid-template-areas: 'sort' 'products' 'pagination' 'load-btn';
        }

        .products-list {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            margin-left: -5px;
            margin-right: -5px;
        }

        .products-list::-webkit-scrollbar {
            display: none;
        }

        .products-list .product {
            margin-left: 0;
            margin-right: 0;
            margin-bottom: 30px;
        }

        .products-list .product .product__add {
            padding: 10px 5px;
        }

        .products-list .product .product__img, .catalog .products-list .product img {
            width: 100%;
        }
    }
}

@media (max-width: 420px) {
    .catalog .products-list .product__add-btn a {
        font-size: 12px;
        padding-left: 4px;
        padding-right: 4px;
        border-width: 1px;
    }
}

#filter-list {
    width: 100%;
}

.product-filter {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 0px 0;
}

.product-filter h3 {
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    position: relative;
    outline: 0;
    margin-bottom: 10px;
}

.product-filter h3:after, .product-filter .filter-title:after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    background: url(../img/i-filter-arrow.svg) center no-repeat;
    display: block;
    width: 16px;
    height: 16px;
}

.product-filter h3.opened:after {
    transform: rotate(180deg);
}

.product-filter .filter-list-check {
    margin: 0 0 3px;
    font-size: 14px;
}

.product-filter .filter-list-check label,
.product-filter .filter-list-check input {
    cursor: pointer;
}

.product-filter .filter-list-check input {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 2px;
    margin: 0 5px 0 0;
    vertical-align: middle;
    position: relative;
    top: -2px;
    outline: 0;
}

.product-filter .filter-list-check input:checked {
    background: url(../img/i-check.svg) center no-repeat;
    background-size: 13px;
}

.filter-color .filter-list-check {
    width: 30px;
    height: 30px;
    border-radius: 2px;
    font-size: 0;
    display: inline-flex;
    margin: 0 10px 10px 0;
}

.filter-color .color input {
    width: 30px;
    height: 30px;
    border: none;
    margin: 0;
}

.filter-color .color input:checked {
    background-image: url(../img/i-check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
}

.filter-color .color.color-1 input {
    background-color: #ffa2ef;
}

.filter-color .color.color-2 input {
    background-color: #c52a81;
}

.filter-color .color.color-3 input {
    background-color: #e40000;
}

.filter-color .color.color-4 input {
    background-color: #ff9000;
}

.filter-color .color.color-5 input {
    background-color: #e7b300;
}

.filter-color .color.color-6 input {
    background-color: #f8f500;
}

.filter-color .color.color-7 input {
    background-color: #d8cba4;
}

.filter-color .color.color-8 input {
    background-color: #8c8b3b;
}

.filter-color .color.color-9 input {
    background-color: #00640c;
}

.filter-color .color.color-10 input {
    background-color: #00b411;
}

#filter-list .ui-state-default, .ui-widget-content .ui-state-default {
    cursor: pointer;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 12px;
    border: 0.7px solid #808080;
}

#filter-list .ui-slider-horizontal {
    height: 2px;
    background: #808080;
}

#filter-list .ui-slider-horizontal .ui-slider-range {
    background: #cd3030;
    height: 2px;
}

.sort {
    width: 100%;
    padding-right: 10px;
    text-align: right;
    padding-bottom: 10px;
}

.sort label {
    position: relative;
    margin-left: 10px;
}

.sort label .sort-icon {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #000;
    vertical-align: middle;
    display: inline-flex;
}

.sort label .sort-icon.sort-top {
    transform: rotate(180deg);
}

.sort label input {
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
}

.sort label input:checked + .sort-icon {
    transform: rotate(180deg);
}

@media (max-width: 900px) {
    .sort {
        display: none;
    }

    .active-opened .sort {
        display: inline;
    }

    #filter-list2 .filter-content.opened .sort {
        position: absolute;
        width: 100%;
        min-height: 150px;
        background-color: white;
        z-index: 999;
        display: block;
        padding-bottom: 0px;
        padding-top: 7px;
        padding-right: 0px;
        margin-bottom: -5px;
        color: black;
    }

    #filter-list2 .filter-content.opened .active {
        font-weight: 600;
        font-style: italic;
    }
}

.paggination {
    width: 100%;
    text-align: right;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 20px 0 40px;
    padding: 0;
    list-style: none;
}

.pagination_item {
    width: 34px;
    height: 34px;
    font-weight: 700;
    color: #000;
    border: 1px solid #f4f4f4;
    background: #f4f4f4;
    display: block;
    line-height: 36px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.pagination_item:hover {
    background: #e9e9e9;
}

.reset-filter, .view-filter {
    padding: 10px 6px;
    width: 100%;
    font-family: "Decima Nova Pro";
    color: #000;
    text-align: center;
    text-decoration: none;
}


.pagination_item.paggination--more {
    background: #fff;
}

.pagination_item.active {
    background: #fff;
    border: 1px solid #000;
}

.pagination_item.paggination--left {
    background: url(../img/i-slider-arrow.svg) center no-repeat #f4f4f4;
    background-size: 10px;
    transform: rotate(180deg);
}

.pagination_item.paggination--left:hover {
    background-color: #e9e9e9;
}

.pagination_item.paggination--right {
    background: url(../img/i-slider-arrow.svg) center no-repeat #f4f4f4;
    background-size: 10px;
}

.pagination_item.paggination--right:hover {
    background-color: #e9e9e9;
}

.reset-filter {
    background: #f4f4f4;
    font-size: 14px;
    display: block;
    border-radius: 2px;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .reset-filter {
        display: inline-flex;
        width: 41%;
        margin: 0 4%;
        justify-content: center;
        font-size: 16px;
    }
}

.view-filter {
    display: block;
    background: #fff;
    border: 1px solid #000;
    font-size: 14px;
    border-radius: 2px;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .view-filter {
        display: inline-flex;
        width: 41%;
        margin: 0 4%;
        justify-content: center;
        font-size: 16px;
    }
}

.filter-content {
    display: none;
    padding-bottom: 15px;
}

.filter-form_price-range-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 6px 0;
}

.filter-form_price-input {
    width: calc(50% - 6px);
    display: inline-block;
    float: right;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #808080;
}

.filter-scroll {
    overflow-y: scroll;
    max-height: 173px;
}

#filter-list2 .filter-content {
    padding-bottom: 0px;
    position: relative;
}

.filter-content.opened {
    display: block;
}

@media (min-width: 769px) {
    .filter-content.opened {
        display: block;
    }
}

@media (max-width: 900px) {
    .filter-title.hide, .filter-title.hide.mobile-only {
        display: none !important;
    }

    .filter-title.hide.opened, .filter-title.hide.opened.mobile-only {
        display: block !important;
    }
}

.catalog-filter {
    background: #f4f4f4;
    padding: 12px 0;
}

@media (max-width: 900px) {
    .catalog-filter {
        padding: 6px 0;
    }
}

.catalog-filter .container {
    display: flex;
    justify-content: space-between;
}

.catalog-filter .sort-back-link {
    display: flex;
    font-size: 14px;
    color: #000;
    font-family: "Decima Nova Pro";
    align-items: center;
    text-decoration: none;
}

.catalog-filter .sort-back-link img {
    width: 8px;
    height: 10px;
    margin-right: 5px;
    margin-top: -1px;
}

.catalog-filter .filter-link {
    display: flex;
    align-items: center;
    font-family: "Decima Nova Pro";
    background: url(../img/i-filter-arrow.svg) right no-repeat;
    padding-right: 16px;
}

.email {
    display: none;
    left: 0;
}

.search-form {
    display: block;
    box-shadow: 0 0 0;
    position: static;
}

@media (max-width: 900px) {
    .search-form, .search-form-fields {
        display: none;
    }

    .search-form-fields.opened {
        display: block;
        padding: 0 20px;
    }
}

.email-sub-title, .order-call-sub-title {
    font-family: "Decima Nova Pro Lt";
}

.catalog-filter .filter-link img {
    width: 12px;
    height: 10px;
    margin-right: 5px;
    margin-top: -2px;
}

@media (min-width: 769px) {
    .catalog-filter {
        display: none;
    }
}

.email {
    position: fixed;
    width: 517px;
    height: 602px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: url(../img/email.png);
    z-index: 999999999;
}

.email:after {
    content: "";
    background: #fff;
    position: absolute;
    top: 21px;
    left: 38px;
    right: 37px;
    bottom: 54px;
}

@media (max-width: 520px) {
    .email {
        background: #fff;
        width: calc(100% - 20px);
        height: 450px;
    }

    .email:after {
        display: none;
    }
}

.email-close {
    background: url(../img/i-close.svg) center no-repeat;
    position: absolute;
    top: 31px;
    right: 47px;
    width: 25px;
    height: 25px;
    z-index: 9999;
}

.email-content {
    padding: 50px 60px;
    position: relative;
    z-index: 1;
}

@media (max-width: 520px) {
    .email-close {
        top: 10px;
        right: 10px;
    }

    .email-content {
        padding: 15px;
    }
}

.email-title {
    font-size: 28px;
    text-align: center;
    color: #000;
    padding-top: 20px;
}

.email-sub-title {
    font-size: 16px;
    text-align: center;
}

.discount-left, .discount-right, .email-form button, .email-form input[type="email"], .email-form label, .search-form-fields button, .search-form-fields input {
    font-family: "Decima Nova Pro";
}

.search-form-fields input {
    color: #000;
}

.search-form-btn--mb {
    display: none;
}

li div.search-form-fields form {
    padding: 10px 20px;
}

@media (max-width: 900px) {
    .header-contact {
        display: none;
    }

    .header-mobile .search-form {
        width: 100%;
        padding: 0 20px;
    }

    .search-form-btn--pc {
        display: none;
    }

    .search-form-btn--mb {
        display: flex;
        align-items: center;
    }

    div.search-form-fields form {
        padding: 10px 20px;
        margin: 20px 0 0 0;
        text-align: center;
        line-height: 16px;
        border-radius: 50px;
        position: relative;
        box-shadow: 0 0 10px rgb(0 0 0 / 50%);
    }

    div.search-form-fields input {
        margin: 0 10px 0 0;
        border: 0px;
        border-bottom: 2px solid #000;
        background: transparent;
        width: 100%;
        padding: 5px 0;
        outline: none;
        color: #000;
        font-weight: bold;
    }

    div.search-form-fields button {
        border: none;
        color: #ffffff;
        font-size: 22px;
        cursor: pointer;
        width: auto;
    }

    div.search-form-fields button svg {
        width: 25px;
        height: 25px;
    }
}

.search-form-fields form {
    display: flex;
    width: 100%;
}

@media (min-width: 900px) {
    .search-form-fields form {
        padding: 10px 20px;
        border: 2px solid #e1e1e1;
        border-radius: 50px;
    }

    .search-form-fields input {
        outline: 0;
        padding: 5px 10px;
        min-width: 195px;
    }
}

.search-form-fields input {
    width: 100%;
    border: none;
}

.search-form-fields button {
    text-align: right;
    cursor: pointer;
    padding: 0;
    background: transparent;
    border: none;
}

.discount {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 120px;
}

.discount-left {
    font-size: 18px;
    font-weight: 700;
    text-align: right;
    line-height: 1;
}

.discount-center {
    color: #c03;
    font-size: 180px;
    text-align: right;
    line-height: 90px;
    position: relative;
}

.discount-center span {
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 80px;
}

.discount-right {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    line-height: 1;
}

@media (max-width: 520px) {
    .discount {
        margin-top: 60px;
    }
}

.email-form {
    text-align: center;
    margin-top: 30px;
    padding: 0 60px;
}

.email-form input[type="email"] {
    width: 100%;
    border-radius: 0;
    box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.26);
    border: 1px solid #e4e4e4;
    padding: 12px 10px 8px;
    line-height: 1;
    color: #000;
}

.order-call {
    position: fixed;
    box-shadow: 0 0 4px #000;
}

.email-form button {
    border: 2px solid #000;
    border-radius: 2px;
    padding: 5px 10px 3px;
    margin-top: 15px;
    color: #000;
    width: 100%;
    background: #fff;
}

.email-form label {
    margin-top: 15px;
    display: block;
    font-size: 13px;
}

.email-form label input {
    margin: -3px 2px 0 0;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    border: 1px solid #e4e4e4;
    -webkit-appearance: none;
    outline: 0;
}

.email-form label input:checked {
    background: url(../img/i-check-black.svg) center no-repeat;
}

.email-form label a {
    color: #000;
}

@media (max-width: 520px) {
    .email-form {
        padding: 0;
    }
}

.basket-list .close, .order-call-close, .order-wish-close, .search-form-close, .wishlist .close {
    background: url(../img/i-close.svg) center no-repeat;
}

.search-form-title {
    font-size: 18px;
    margin-bottom: 50px;
}

.order-call {
    display: none;
    width: 404px;
    height: 360px;
    top: 100px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 99999;
    background: #fff;
    padding: 40px 60px;
}

.order-call-close {
    background-size: contain;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    z-index: 9999;
}

.order-wish-close {
    background-size: contain;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    z-index: 9999;
}

@media (max-width: 520px) {
    .order-call-close {
        top: 10px;
        right: 10px;
    }

    .order-wish-close {
        top: 10px;
        right: 10px;
    }
}

.order-call-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.order-call-sub-title {
    font-size: 14px;
    font-weight: 700;
    padding: 10px 0;
    text-align: center;
}

.order-call-form {
    text-align: center;
    margin-top: 15px;
    padding: 0 10px;
}

.order-call-form .input-label {
    display: block;
    width: 100%;
    font-family: "Decima Nova Pro";
    font-size: 15px;
    font-weight: 700;
}

.order-call-form input[type="text"],
.order-call-form input[type="tel"] {
    outline: 0;
    width: 100%;
    background: #fff;
    box-shadow: inset 1px 1px 5px #cecece;
    padding: 5px 10px;
    margin: 8px 0;
    font-family: "Decima Nova Pro";
    font-size: 15px;
    color: #000;
    border: 1px solid #cecece;
    border-radius: 4px;
}

.order-call-form button {
    margin: 10px 0;
    background: #fff;
    border: 2px solid #000;
    width: 100%;
    text-align: center;
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
}

.order-call-form label.input-checkbox {
    margin-top: 15px;
    display: block;
    font-family: "Decima Nova Pro";
    font-size: 13px;
}

.order-wish {
    position: fixed;
    box-shadow: 0 0 4px #000;
}

.order-wish {
    display: none;
    width: 404px;
    /*height: 200px;*/
    top: 100px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 99999;
    background: #fff;
    padding: 40px 60px;
}

.order-wish-close {
    background-size: contain;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    z-index: 9999;
}

@media (max-width: 520px) {
    .order-wish-close {
        top: 10px;
        right: 10px;
    }
}

.order-wish-title {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.order-wish-sub-title {
    font-size: 14px;
    font-weight: 700;
    padding: 10px 0;
    text-align: center;
}

.order-wish-form {
    text-align: center;
    margin-top: 15px;
    padding: 0 10px;
}

.footer, .contacts-col__social {
    display: flex;
    justify-content: center;
}

.contacts-col__social {
    gap: 40px
}

.order-call-form label.input-checkbox input {
    margin: -3px 2px 0 0;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    border: 1px solid #e4e4e4;
    -webkit-appearance: none;
    outline: 0;
}

.order-call-form label.input-checkbox input:checked {
    background: url(../img/i-check-black.svg) center no-repeat;
}

.order-call-form label.input-checkbox a {
    color: #000;
}

@media (max-width: 520px) {
    .order-call {
        width: 100%;
        height: 100%;
        top: 0;
        padding: 20px;
    }
}

@media (max-width: 520px) {
    .order-wish {
        width: 100%;
        height: 100%;
        top: 0;
        padding: 20px;
    }
}

footer {
    border-top: 2px solid #000;
    padding: 40px 0 100px;
}

footer .container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: flex-start;
    grid-template-areas: 'logo menus search' 'logo menus contacts' 'copyright subscribe contacts';
    row-gap: 50px;
    overflow: hidden;
}

footer .container:before, footer .container:after {
    display: none;
}

.footer_logo-wrapper {
    grid-area: logo;
}

.footer_explanation {
    font-size: 20px;
    margin: 50px 0 0 0;
}

.footer-col__catalog {
    grid-area: menus;
    font-size: 23px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.footer-col__catalog-item {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 100%;
    gap: 1em;
}

.footer-col__catalog-item li {
    font-family: 'Decima Nova Pro';
    display: flex;
}

.footer-col__link {
    color: #000;
    text-decoration: none;
}

.footer-col__link:hover {
    color: #c03;
}

.footer_search-form {
    grid-area: search;
    position: relative;
}

.footer_search-form input {
    width: 100%;
    border: 1px solid #e4e4e4;
    line-height: 1;
    padding: 5px 10px 3px;
    border-radius: 4px;
}

.footer_search-form button {
    background: url(../img/i-search.svg) center no-repeat;
    width: 17px;
    height: 17px;
    border: none;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

.footer_contacts {
    grid-area: contacts;
    text-align: center;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.footer-col__social-top {
    margin: 40px 0 0 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.footer-col__social {
    margin: auto 0 0 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer_social-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
}

.footer_social-item :where(img, svg) {
    width: 30px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer_work-hours {
    margin: 35px 0 0 0;
}

.footer_social-item-big {
    display: flex;
}

.footer_social-item-big :where(img, svg) {
    width: 40px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-col__phone {
    background: url(../img/i-phone-bug.svg) left no-repeat;
    font-family: "Decima Nova Pro";
    font-size: 33px;
    color: var(--black);
    text-decoration: none;
    padding-left: 24px;
    width: fit-content;
}

.footer_copyright {
    grid-area: copyright;
    max-width: 100%;
    align-self: center;
}

.footer_subscribe-form {
    grid-area: subscribe;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer_subscribe-form__input {
    font-size: 16px;
    padding: 1em;
    line-height: 1em;
    background: #F7F7F7;
    border-radius: 6px;
    border: none;
    width: 286px;
    min-width: 0;
    max-width: 100%;
}

.footer_subscribe-form__send {
    background: var(--black);
    color: white;
    font-size: 16px;
    padding: 1em 1.25em;
    border-radius: 6px;
    flex-shrink: 0;
    border: none;
    line-height: 1em;
}

@media (max-width: 1280px) {
    footer .container {
        grid-template-columns: 100%;
        grid-template-areas: 'menus' 'search' 'contacts' 'subscribe';
    }

    .footer_logo-wrapper {
        display: none;
    }

    .footer_copyright {
        display: none;
    }
}

@media (max-width: 992px) {
    .footer-col:nth-child(1) {
        display: none;
    }

    .footer-col:nth-child(4) {
        width: 100%;
        text-align: center;
    }

    .footer-col:nth-child(4) input {
        padding: 15px 10px 13px;
    }

    .footer-col:nth-child(4) button {
        width: 37px;
        height: 37px;
    }

    .footer-col__phone {
        font-size: 34px;
    }

    .footer-col .footer-col__social, .contacts-col__social {
        justify-content: center;
    }

    .footer-col .footer-col__social a, .contacts-col__social a {
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    footer .container {
        row-gap: 0;
    }

    .footer_search-form {
        margin: 10px 0 0 0;
    }

    .footer-col__catalog {
        font-size: 14px;
    }

    .footer_contacts {
        margin: 40px 0 0 0;
    }

    .footer-col__social-top {
        margin: 30px 0 0 0;
    }

    .footer_subscribe-form {
        display: grid;
        grid-template-columns: 100%;
        gap: 10px;
        margin: 20px 0 0 0;
    }

    .footer_subscribe-form__input {
        width: 100%;
    }

    .footer-col__social {
        margin: 30px 0 0 0;
        gap: 70px;
    }

    .footer_work-hours {
        margin: 25px 0 0 0;
        font-size: 14px;
    }

    .footer-col__phone {
        font-size: 32px;
    }

    .footer_social-item {
        font-size: 14px;
    }

    .footer_social-item :where(img, svg) {
        width: 20px;
    }

    .footer_social-item-big :where(img, svg) {
        width: 30px;
    }
}

.newest-arrows, .related-arrows {
    position: absolute;
    right: 10px;
    top: 0;
}

.newest-arrows button, .related-arrows button {
    font-size: 0;
    background: 0 0;
    border: none;
    cursor: pointer;
    outline: 0;
    margin-left: 15px;
}

.newest-arrows button.slick-prev, .related-arrows button.slick-prev {
    width: 14px;
    height: 22px;
    background: url(../img/i-slider-arrow.svg) center no-repeat;
    transform: rotate(180deg);
}

.newest-arrows button.slick-prev:hover, .related-arrows button.slick-prev:hover {
    background-image: url(../img/i-slider-arrow__red.svg);
}

.newest-arrows button.slick-next, .related-arrows button.slick-next {
    width: 14px;
    height: 22px;
    background: url(../img/i-slider-arrow.svg) center no-repeat;
}

.newest-arrows button.slick-next:hover, .related-arrows button.slick-next:hover {
    background-image: url(../img/i-slider-arrow__red.svg);
}

.newest-section .tag.tag--new {
    top: 20px;
}

.product-info {
    border-bottom: 2px dashed #eee;
    padding-bottom: 50px;
}

@media (max-width: 992px) {
    .product-info {
        border-bottom: 1px solid #000;
        padding-bottom: 20px;
    }
}

.product-info__title-mobile {
    display: none;
    font-family: "Decima Nova Pro";
    font-size: 24px;
    font-weight: 500;
    border-bottom: 1px solid #000;
    margin-left: -15px;
    margin-right: -15px;
    padding: 10px;
    width: calc(100% + 30px);
    text-align: center;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .product-info__title-mobile {
        display: block;
    }
}

.product-info .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-info__img {
    width: 450px;
}

.product-info__img img {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

@media (max-width: 992px) {
    .product-info__img {
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
    }

    .product-info__img .fotorama {
        display: flex;
        flex-wrap: nowrap;
        overflow: auto;
        margin: 0 0 10px !important;
        min-width: 100%;
        width: 100%;
    }

    .product-info__img .fotorama a {
        display: inline-flex !important;
        margin: 10px;
    }

    .product-info__img .fotorama a img {
        width: 300px;
        max-width: 300px !important;
    }

    .product-info__img .fotorama::-webkit-scrollbar {
        width: 4px;
        height: 10px;
    }

    .product-info__img .fotorama::-webkit-scrollbar-track {
        height: 4px;
        background: url(../img/bg.png) center no-repeat;
        background-size: contain;
        margin-left: 15px !important;
        margin-right: 15px !important;
        background: #eee;
        border-radius: 20px;
    }

    .product-info__img .fotorama::-webkit-scrollbar-thumb {
        background: url(../img/i-drag.svg) center no-repeat #000;
        background-size: 7px;
        background: #000;
        border-radius: 20px;
    }
}

.product-info__txt {
    width: calc(100% - 450px);
    padding-left: 70px;
}

.product-info__txt h1 {
    font-family: "Decima Nova Pro";
    font-size: 28px;
    font-weight: 500;
    padding-bottom: 15px;
}

.product-detail, .product-icon-detail__item {
    font-family: "Decima Nova Pro Lt";
}

@media (max-width: 992px) {
    .product-info__txt {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        padding-left: 0;
        justify-content: space-between;
    }

    .product-info__txt div:not(:last-child) {
        gap: 5px !important;
    }

    #tobasket .product-price__old {
        margin-top: 0;
    }

    #tobasket .product-price__container {
        margin: 0;
    }

    .product-info__txt h1 {
        display: none;
    }

    #tobasket .product-count__btns .product__count {
        padding: 10px 25px;
    }
}

.product-detail {
    font-size: 18px;
}

.product-detail p {
    margin: 0 0 4px;
}

.product-detail p img {
    display: inline-block;
}

@media (max-width: 767px) {
    .product-info__txt {
        flex-direction: column;
    }

    .product-info__txt div.product-detail {
        font-size: 16px;
        margin: 0 20px 0 0;
    }
}

.product-icon-detail {
    display: flex;
    margin: 20px 0;
}

.product-icon-detail-length {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.product-icon-detail div:first-child {
    margin: 0 20px 0 0;
}

.product-icon-detail__item {
    font-size: 18px;
    line-height: 1.2;
}

.product-icon-detail__item:first-child {
    margin: 0 10px 0 0;
}

.product-icon-detail__item strong {
    font-size: 20px;
    font-family: "Decima Nova Pro";
}

.product-icon-detail__item--ship {
    padding: 12px 0 8px 80px;
    background: url(../img/i-ship.svg) left 0px no-repeat;
}

@media (max-width: 992px) {
    .product-icon-detail__item--ship {
        padding-left: 45px;
        background-size: 40px;
    }
}

.product-icon-detail__item--ship-free {
    padding: 12px 0 8px 40px;
    background: url(../img/i-marker-big.svg) 6px 8px no-repeat;
}

@media (max-width: 992px) {
    .product-icon-detail__item--ship-free {
        padding-left: 30px;
        background-size: 25px;
    }

    .product-icon-detail__item, .product-icon-detail__item strong {
        font-size: 14px;
    }
}

#tobasket {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.product-count {
    flex: 1;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    position: relative;
}

.product-count__btns {
    display: flex;
    flex: 1;
    border-radius: 4px;
    width: calc(100% - 80px);
    max-width: 300px;
    flex-basis: 220px;
}

@media screen and (min-width: 1366px ) {
    #tobasket {
        /*flex-direction: column;*/
    }
}

.product-count__btns a {
    font-size: 20px;
    font-family: "Decima Nova Pro";
    font-weight: 700;
    text-decoration: none;
    color: #000;
    display: inline-flex;
    padding: 9px 8px 7px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.product-count__btns a:hover {
    background: #f2f2f2;
}

.product-count__btns .product__count {
    padding: 10px 30px;
    font-family: "Decima Nova Pro";
    font-size: 18px;
    font-weight: 700;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    width: 100%;
}

@media (max-width: 520px) {
    .product-count {
        /*display: block;*/
    }

    #tobasket .product-count__btns .product__count {
        width: 100%;
        padding: 9px 20px;
    }

    .product-count__btns input {
        width: 100%;
    }

    .product-icon-detail {
        display: block;
        margin: 20px 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }

    .product-icon-detail-length {
        width: 100%;
    }

    .product-icon-detail__item--ship-free {
        background: url(../img/i-marker-big.svg) 2px 9px no-repeat;
    }

    .product-icon-detail__item--ship {
        background-position: left 8px;
    }

    #tobasket .product-price {
        margin-top: 10px;
        gap: 10px !important;
    }

    #tobasket .product-price__btn {
        padding: 3px 0;
    }

    #tobasket .product-price__container {
        margin: 0;
    }

    #tobasket {
        flex-direction: column;
    }
}

.product-count__info {
    font-family: "Decima Nova Pro Lt";
}

.product-price__credit a {
    background: #fff;
    border: 2px solid #000;
    border-radius: 4px;
    display: inline-block;
    padding: 10px 40px;
    text-decoration: none;
    font-family: "Decima Nova Pro Lt";
    color: #000;
    margin: 0 10px 0 0;
    height: 100%;
}

.product-price__credit {
    display: flex;
    margin: 0 0 20px 0;
}

.product-price__credit a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-price__credit img {
    max-width: 70px;
    max-height: 50px;
}

.product-count__info {
    padding-left: 12px;
    font-size: 12px;
}

@media (max-width: 992px) {
    .product-count__btns {
        border-radius: 0;
        width: calc(100% - 80px);
    }

    .product-count__info {
        padding-top: 10px;
    }

    .product-count {
        order: 1;
        align-items: center;
        width: 100%;
    }

    #tobasket {
        /*display: block;*/
        width: 100%;
    }
}

.product-price {
    padding: 0px 0 20px;
}

#tobasket .product-price {
    flex: 1;
    display: flex;
    gap: 20px;
    position: relative;
    flex-direction: column;
    width: 50%;
}

#tobasket.mobil .product-price {
    display: flex;
    gap: 20px;
    position: relative;
    flex-direction: row;
    width: 100%;
    padding-top: 15px;
}

@media (min-width: 992px) {
    #tobasket .product-price > div {
        width: 100%;
    }
}

#tobasket .product-price__current {
    display: flex;
    padding: 10px 0 0;
    align-items: center;
    flex-wrap: wrap;
}

.price-goods-page-old {
    text-align: left;
    text-decoration: line-through;
    font-size: 12px;
    color: gray;
    font-family: Ubuntu-M, Arial, Helvetica, sans-serif;
    /*font-weight: bold;*/
}

.product-price__container {
    display: flex;
    margin: 20px 0 0 0;
}

.product-price__old {
    padding: 0 5px 0 0;
    color: #333;
}

.product-price__current {
    font-size: 16px;
    line-height: 1;
    padding-left: 20px;
}

.product-price__current span.price-num {
    font-weight: 600;
    font-size: 18px;
}

#tobasket.mobil .product-price__current {
    padding-left: 0px;
    width: 100%;
    position: relative;
}

#tobasket.mobil .product-price__all {
    width: 100%;
}

#tobasket.mobil .product-price__current .product-price__current, #tobasket.mobil .product-price__current .product-price__total {
    padding-top: 0;
}

#tobasket.mobil .product-price__current .product-price__total {
    padding-top: 0px;
    position: relative;
}

#tobasket.mobil .product-price__current span:not(.total-sum__text) {
    margin-top: 0;
    /*font-size: 18px;*/
    /*font-weight: bold;*/
}

.product__price > span, .product-price__current > span {
    position: relative;
}

.product__price s, .product-price__current s {
    font-size: 14px;
    position: absolute;
    white-space: nowrap;
    top: -13px;
    right: -50px;
}

.product__price s {
    right: -28px;
}

@media (max-width: 992px) {
    .product__price s, .product-price__current s {
        font-size: 12px;
        top: -12px;
        right: -34px;
    }
}

@media (max-width: 400px) {
    .product__price s, .product-price__current s {
        font-size: 11px;
        top: -10px;
        right: -27px;
    }

    .product__price s {
        top: -13px;
        right: -16px;
        font-size: 10px;
    }
}

.product-price .product-price__btn {
    flex: 1;
}

.product-price__container {
    gap: 20px;
}

@media (max-width: 992px) and (min-width: 767px) {
    .product-price__container .product-price__btn {
        width: auto;
        flex: 1 1 auto;
    }
}

@media (max-width: 400px) {
    .product-price__container {
        gap: 10px;
    }

    .product-price__container .product-price__btn {
        width: auto;
        flex: 1 1 auto;
    }
}

.product-price__btn {
    text-align: center;
    margin-left: auto;
    padding: 5px 0;
    border: 2px solid #000;
    border-radius: 4px;
    color: #fff;
    background: #000;
}

@media screen and (max-width: 768px) {
    .product-price__btn.order {
        /*display: none;*/
    }
}

#tobasket.mobil .product-price__current.mobil {
    font-size: 100%;
}

#tobasket.mobil .product-price__btn {
    text-align: center;
    margin-left: auto;
    padding: 0;
    /*border: 2px solid #000;*/
    /*border-radius: 4px;*/
    width: 50%;
    height: 30px;
    /*background: #cc0033;*/
}

#tobasket.mobil .product-price__btn.wishListClickBlock a#wishListClick {
    text-align: center;
    margin-left: auto;
    padding: 0px 0;
    border: 2px solid #000;
    border-radius: 4px;
    width: 35px;
    background: transparent;
    color: red;
}

#tobasket.mobil span.favorites-product {
    /*background: url('/img/tovar_v_izbrannom2.png') no-repeat 0 0;*/
    position: relative;
    bottom: 0;
    right: 29px;
    background-size: contain;
    display: inline-block;
    float: right;
    height: 32px;
    text-align: center;
    margin-left: auto;
    padding: 0px 0;
    border: 2px solid #000;
    border-radius: 4px;
    width: 35px;
    cursor: pointer;
}

#tobasket.mobil .product-price__btn.wishListClickBlock {
    text-align: center;
    margin-left: auto;
    padding: 0;
    border: none;
    width: 40px;
    height: 32px;
    background: transparent;
}

#tobasket.mobil .product-price__btn a {
    width: 100%;
    /*height: 100%;*/
    display: inline-block;
    text-decoration: none;
    line-height: 1;
    background-color: transparent;
    font-weight: bold;
}

.product-price__btn a {
    background: #000;
    display: inline-block;
    text-decoration: none;
    line-height: 1;
    font-family: "Decima Nova Pro Lt";
    color: #fff;
}

.product-price__btn span {
    cursor: pointer;
    display: block;
}

.description__txt, .product-tabs__item a, .salon__item, .salon__item-distance {
    font-family: "Decima Nova Pro";
}

@media (max-width: 992px) {
    .product__price, .product-price__current {
        font-size: 16px;
    }

    .product-price__credit a {
        padding: 5px 10px;
        border-radius: 0;
        border-width: 1px;
    }
}

.product-tabs {
    border-top: 2px solid #eee;
    padding-top: 50px;
    margin-top: 2px;
}

.product-tabs__item {
    display: flex;
    padding-bottom: 40px;
}

.product-tabs__item a {
    font-size: 16px;
    color: #000;
    line-height: 1;
    border-bottom: 1px dashed;
    text-decoration: none;
    margin-right: 20px;
    display: inline-block;
}

.description, .salon__item {
    display: flex;
}

.product-tabs__item a.active-tab {
    border-bottom-color: transparent;
    color: #c03;
}

@media (max-width: 992px) {
    .product-tabs__item a {
        font-size: 14px;
        margin-right: 10px;
    }
}

.description__txt {
    padding-left: 50px;
    font-size: 15px;
}

.description__txt p {
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .description__txt {
        padding-left: 0;
        padding-top: 20px;
    }

    .description {
        flex-wrap: wrap;
    }

    .description__video {
        width: 100%;
    }

    .description iframe {
        width: 100%;
        max-width: 100%;
    }
}

.salon__item {
    font-size: 24px;
    font-weight: 700;
    padding-left: 25px;
}

@media (max-width: 992px) {
    .salon__item {
        font-size: 16px;
        padding-top: 6px;
    }
}

.salon__item-name {
    position: relative;
    width: 400px;
}

.salon__item-name span {
    background: #fff;
    position: relative;
    z-index: 1;
    padding-right: 3px;
}

.salon__item-name:after {
    content: "";
    position: absolute;
    border-bottom: 2px dotted #ccc;
    left: 0;
    right: 0;
    bottom: 12px;
    z-index: -1;
}

@media (max-width: 600px) {
    .salon__item-name:after {
        display: none;
    }
}

.ship-item, .ships {
    display: flex;
}

.salon__item-distance {
    padding-left: 10px;
    font-size: 24px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
}

.salon__item-m {
    background: url(../img/map-blue.png) 0 10px no-repeat;
}

@media (max-width: 992px) {
    .salon__item-distance {
        font-size: 16px;
    }

    .salon__item-m {
        background: url(../img/map-blue.png) 0 5px no-repeat;
    }
}

.salon__item-g {
    background: url(../img/map-green.png) 0 10px no-repeat;
}

@media (max-width: 992px) {
    .salon__item-g {
        background: url(../img/map-green.png) 0 5px no-repeat;
    }
}

.obrazec {
    font-family: "Decima Nova Pro Lt";
    font-size: 16px;
    padding: 10px 0 10px 50px;
    margin: 30px 0;
    background: url(../img/i-sample.svg) left no-repeat;
    background-size: 40px;
}

.ship-item .ship-item-col:nth-child(1), .ship-item:nth-child(1) {
    padding-right: 40px;
}

.email-overlay, .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}

.obrazec a {
    color: #c03;
}

@media (max-width: 929px) {
    .ships {
        flex-wrap: wrap;
    }

    .ship-item {
        margin-bottom: 40px;
        flex-wrap: wrap;
    }
}

.ship-item img {
    margin-bottom: 20px;
}

.ship-item__title {
    color: #000;
    font-family: "Bebas Neue";
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 15px;
}

.ship-item .ship-text, .ships-info {
    font-family: "Decima Nova Pro";
    font-size: 16px;
}

.ship-item .ship-text {
    padding-bottom: 8px;
}

.ship-item .ship-text--bold {
    font-weight: 700;
}

.context {
    margin: 0 0 30px 0;
}

.feedBackSent__message {
    color: #065d2e;
}

.btn, .form-control {
    /*border: 2px solid #000;*/
    line-height: 1;
    color: #000;
}

.ships-info {
    margin: 30px 0;
}

.title-address-shop + .row {
    display: flex;
    margin: 10px 0 35px 0;
    border-bottom: 3px solid #e6e3e3;
    padding: 0 0 60px 0;
}

@media (max-width: 900px) {
    .title-address-shop + .row {
        flex-direction: column;
    }

    .col-md-4 {
        text-align: center;
    }

    .title-address-shop + .row .col-md-4:first-child {
        margin: 0;
    }

    .title-address-shop + .row .metro-name {
        justify-content: center;
    }
}

.title-address-shop + .row .metro-name {
    display: flex;
}

.title-address-shop + .row .metro-name img {
    display: inline;
}

.title-address-shop + .row + .row .line-ip {
    display: flex;
}

.col-md-4 {
    flex: 0 1 33.333%;
    min-width: 0;
}

@media (max-width: 900px) {
    .title-address-shop + .row {
        padding: 0 0 30px 0;
    }

    .col-md-4 {
        flex: 1 1 48%;
    }
}

.title-address-shop + .row + .row .col-md-6 {
    flex: 0 1 50%;
}

.title-address-shop + .row + .row .col-md-6:first-child {
    margin: 0 15px 0 0;
}

@media (max-width: 600px) {
    .title-address-shop + .row + .row .line-ip {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .title-address-shop + .row + .row .col-md-6:first-child {
        margin: 0 0 20px 0;
    }
}

.carousel {
    margin: 0 0 50px 0;
}

.col-md-4:first-child {
    margin: 0 30px 0 0;
}

.container, .paggination-center ul {
    margin: 0 auto;
}

.product-tab-content {
    display: none;
    padding-bottom: 40px;
}



body._active {
    overflow: hidden;
}

.container {
    max-width: 1560px;
    padding: 0 15px;
}

.overlay {
    z-index: 99;
    display: none;
}

.email-overlay {
    z-index: 99999999;
    display: none;
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

.page-title + .newest {
    padding-top: 35px;
}

.page-title {
    font-size: 28px;
}

.search-empty {
    padding: 15px 0 20px;
}

@media only screen and (min-width: 900px) {
    .search-empty {
        padding: 35px 0 40px;
        font-size: 25px;
    }
}

.free-del, .lbl-radio .ttl {
    font-size: 16px;
    font-weight: 700;
}

.btn {
    background: #fff;
    border-radius: 4px;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-family: "Decima Nova Pro Lt";
    transition: all 0.3s ease 0s;
}

.basket-list .item, .wishlist .item, .free-del, .total-line .total-sum {
    /*font-family: "Decima Nova Pro";*/
}

@media (max-width: 520px) {
    .basket-list {
        text-align: center;
    }
}

.btn:hover {
    border-color: red;
    background: red;
    color: #fff;
    cursor: pointer;
}

.basket-container {
    margin: 0 0 30px;
}

.basket-sidebar {
    flex: 0.2;
    margin: 10px 0;
    flex-basis: 220px;
}

.basket-sidebar .basket-sidebar-wrapper {
    width: 100%;
    position: sticky;
    top: 20px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 5px;
}

.basket-plank {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    background-color: white;
    bottom: 65px;
    width: 100%;
    padding: 5px 0;
    justify-content: space-evenly;
    gap: 10px;
    align-items: center
}

@media only screen and (max-width: 767px) {
    .basket-container {
        margin: 0 0 15px;
    }
    .basket-sidebar {
        background: white;
        overflow-y: scroll;
        display: none;
        margin: 0;
        position: fixed;
        z-index: 101;
        top: 0;
        bottom: calc( 65px + 45px);
        left: 0;
        width: 100vw;

    }

    .basket-sidebar.show {
        display: block;
        background-color: #f5f5f5;
    }

    .basket-sidebar .basket-sidebar-wrapper {
        position: relative;
        top: unset;
        bottom: 0;
        /*height: calc(100vh - 65px - 46px);*/
    }

    .basket-plank {
        display: flex;
        flex-wrap: wrap;
    }

}

.free-del-wrap {
    display: flex;
    justify-content: flex-end;
}

.free-del {
    color: #c03;
    position: relative;
    padding-left: 35px;
    background: url(../img/free-del.png) no-repeat;
    min-height: 29px;
}

.basket-list, .wishlist {
    margin-bottom: 15px;
}

.basket-list .item, .wishlist .item {
    display: flex;
    flex-flow: row wrap;
    /*margin: 0 -10px;*/
    position: relative;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 520px) {
    .basket-list .item, .wishlist .item {
        /*flex-direction: column;*/
        padding: 0 0 10px 0;
    }

    .wishlist__container {
        padding: 0 0 13px 0;
    }

    .wishlist__block:first-child {
        justify-content: center;
        padding: 0;
    }

    .wishlist button.wishlist__btn {
        max-width: 200px;
        line-height: 1;
        font-size: 15px;
    }
}

@media (min-width: 855px) {
    .wishlist__block {
        display: none;
    }

    .wishlist__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex: 1 1 auto;
    }
}

@media (max-width: 855px) {
    .wishlist .wishlist__btn {
        width: auto;
        margin: 0 10px 0 0;
    }

    .wishlist__block {
        display: flex;
        justify-content: space-between;
    }

    .wishlist__container {
        /*max-width: 360px;*/
    }

    .wishlist .wishlist__container > div.col.price {
        display: none;
    }

    .wishlist__container > div.col.quantity {
        display: none;
    }

    .wishlist__container > div.col.subtotal {
        display: none;
    }

    .wishlist__container > div.col.ttl {
        display: none;
    }

    .wishlist__container > .wishlist__btn {
        display: none;
    }
}

.basket-list .item:before, .basket-list .item:last-child:after, .wishlist .item:before, .wishlist .item:last-child:after {
    width: calc(100% - 20px);
    height: 0;
    margin: 0 10px;
    content: "";
}

.wishlist .item:last-child:after, .basket-list .item:last-child:after {
    border-top: 1px solid #000;
}

.wishlist .item:before, .basket-list .item:before {
    border-top: 1px solid #d8d8d8;
}

.wishlist .item a, .basket-list .item a {
    color: inherit;
    text-decoration: none;
}

.wishlist .item a:hover, .basket-list .item a:hover {
    text-decoration: underline;
}

.wishlist .item:first-child:before, .basket-list .item:first-child:before {
    border-top: none;
}

.wishlist .item.head, .basket-list .item.head {
    padding-top: 0;
    font-family: "Decima Nova Pro Lt";
    color: #999;
}

.wishlist .item.head .col, .basket-list .item.head .col {
    padding-top: 0;
    font-size: 14px;
}

.wishlist .item.head .col.subtotal, .basket-list .item.head .col.subtotal {
    font-size: 14px;
}

.wishlist .item.head + .item:before, .basket-list .item.head + .item:before {
    border-color: #000;
}

.wishlist .item .col, .basket-list .item .col {
    padding: 3px 5px;
    flex: 1 120px;
}

@media only screen and (max-width: 855px) {
    .wishlist .item.head, .basket-list .item.head {
        display: none;
    }
}

.wishlist .item .col .product-count__btns, .basket-list .item .col .product-count__btns {
    margin-top: 0;
}

.wishlist .item .col.pict,
.basket-list .item .col.pict {
    width: 140px;
    max-width: 140px;
    /*height: 140px;*/
    border-radius: 5px;
    position: relative;
}

.basket-list .item .col.ttl {
}

.basket-list .item .col.price {
    flex-basis: 120px;
}

.basket-list .item .col.subtotal {
    text-align: end;
}

.wishlist .wishlist__btn {
    padding: 0 20px;
    width: auto;
    height: 40px;
    width: 239px;
}

@media (max-width: 855px) {
    .wishlist .wishlist__container div.col.subtotal {
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: 18px;
        line-height: 21.6px;
        text-align: left;
        color: #3a3a3f;
    }

    .wishlist__container .col.quantity {
        padding: 0 10px;
    }

    .wishlist__container .col.quantity input {
        height: 40px;
    }
}

.wishlist .item .col.pict img, .basket-list .item .col.pict img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

@media only screen and (min-width: 900px) {
    .wishlist .item, .basket-list .item {
        align-items: center;
    }

    .wishlist .item .col.ttl, .basket-list .item .col.ttl {
        /*width: 18%;*/
    }
}

@media only screen and (max-width: 767px) {
    .wishlist .item .col.pict, .basket-list .item .col.pict {
        width: 140px;
        max-width: 140px;
        min-width: 140px;
    }

    .wishlist .item .col.ttl, .basket-list .item .col.ttl {
        /*width: calc(100% - 140px);*/
    }

    .wishlist .item .col.price, .basket-list .item .col.price {
        align-items: flex-end;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .wishlist .item .col.quantity .product-count__btns, .basket-list .item .col.quantity .product-count__btns {
        width: 100%;
    }

    .wishlist .item .col.quantity .product-count__btns a, .basket-list .item .col.quantity .product-count__btns a {
        padding: 5px 6px;
    }

    .wishlist .item .col.quantity .product-count__btns .product__count, .basket-list .item .col.quantity .product-count__btns .product__count {
        flex: 1;
        text-align: center;
        padding: 5px 6px;
    }
}

.wishlist .item .col.remove, .basket-list .item .col.remove {
    width: 36px;
    justify-items: flex-end;
}

@media only screen and (max-width: 855px) {
    .basket-list .item .col.subtotal, .basket-list .item .col.subtotal {
        flex: 1;
        font-size: 18px;
        align-items: center;
        display: flex;
    }

    .wishlist .item .col.remove, .basket-list .item .col.remove {
        position: absolute;
        top: 5px;
        right: 0;
    }
}

.wishlist .sale-box, .basket-list .sale-box {
    font-size: 14px;
    color: #c03;
}

.wishlist .close, .basket-list .close {
    width: 16px;
    height: 16px;
    display: block;
    background-size: 16px 16px;
    z-index: 9999;
}

.wishlist .old-price, .basket-list .old-price {
    color: #333;
    font-size: 12px;
    text-decoration: line-through;
}

.total-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 15px;
}

.total-line .btn-order {
    padding-left: 15px;
    padding-right: 15px;
}

.total-line .total-sum {
    margin-left: auto;
    margin-right: 15px;
    font-size: 28px;
}

.form-control, .order-container {
    /*font-family: "Decima Nova Pro Lt";*/
}

@media only screen and (min-width: 992px) {
    .total-line .total-sum {
        margin-right: 30px;
    }
}

@media (max-width: 855px) {
    .total-line .total-sum {
        font-size: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .total-line .btn {
        /*width: 100%;*/
    }

    .total-line .total-sum {
        width: 100%;
        padding: 15px 0;
        text-align: center;
    }

    .total-line {
        flex-flow: row wrap;
    }

    .promo {
        width: 100%;
    }
}

.form-control {
    display: block;
    width: 100%;
    background: #fff;
    padding: 10px;
    text-decoration: none;
    resize: none;
}

.order-container .row, .promo .form, .type-delivery .row .col {
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 5px;
}

.form-control::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.form-control:-moz-placeholder {
    color: #999;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #999;
    opacity: 1;
}

.btn-red {
    background: #cb0232;
    color: #fff;
    border-color: #cb0232;
}

.btn-red:hover {
    background: red;
    border-color: red;
}

.promo .form .form-control {
    /*width: 206px;*/
    /*margin-right: 15px;*/
}

.wishlist__pre-order {
    padding: 0 10px;
}

.wishlist__block.wishlist__pre-order > button {
    width: 49%;
    line-height: .9;
    margin: 0;
}

@media only screen and (max-width: 855px) {
    .wishlist__block:first-child {
        padding: 0 0 0 10px;
    }

    .promo .form .form-control {
        width: 100%;
        margin: 0;
    }

    .promo .form .btn {
        width: 100%;
        margin-top: 10px;
    }

    .promo .form {
        flex-flow: row wrap;
    }
}

.form-group {
    margin: 0 0 15px;
}

.tabs-wrap {
    position: relative;
    overflow: hidden;
}

.tabs-wrap .tab {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: -1000;
    transition: all 0.3s ease 0s;
}

.tabs-wrap .tab.active {
    opacity: 1;
    position: static;
    visibility: visible;
}

.order-container .step-title {
    font-size: 18px;
    color: #c03;
    font-weight: 700;
    font-family: "Decima Nova Pro";
    margin: 0 0 20px;
}

.order-container .tab {
    padding-top: 45px;
}

.order-container .step {
    padding: 0 0 45px;
}

.order-container .row {
    /*margin: 0 -10px;*/
    flex-flow: row wrap;
    gap: 10px;
}

.order-container .row .col {
    /*padding: 0 10px;*/
    width: 100%;
}

.order-container .row.personal-data {
    align-items: flex-end;
}

@media only screen and (min-width: 900px) {
    .order-container .row.personal-data {
        max-width: 75%;
    }

    .order-container .row.personal-data .col {
        /*width: 25%;*/
        flex: 1;
    }

}

@media only screen and (min-width: 992px) {
    .type-delivery .row .col {
        width: 30%;
    }
}

@media only screen and (max-width: 992px) and (min-width: 900px) {
    .type-delivery .row .col {
        width: 33.33333%;
    }
}

.type-delivery .row .col input {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: -100;
}

.type-delivery .row .col label {
    width: 100%;
    display: block;
    cursor: pointer;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease 0s;
    padding: 15px 15px 15px 55px;
    position: relative;
}

.type-delivery .row .col label .icon-wrap {
    top: 16px;
}

.field-inp {
    font-size: 18px;
    line-height: 24px;
    padding: 6px 15px;
    box-shadow: inset 0 3px 7px #cdcdcd;
    font-family: "Decima Nova Pro Lt";
}

@media only screen and (min-width: 900px) {
    .field-inp {
        border-color: transparent;
    }
}

.inp-radio {
    opacity: 0;
    visibility: hidden;
    z-index: -1000;
    position: absolute;
}

input:checked ~ label.lbl-radio {
    border-color: #060606;
}

input:checked ~ label.lbl-radio .icon-wrap:after {
    background: #cb0232;
}

.lbl-radio {
    cursor: pointer;
    display: inline-block;
    padding-left: 55px;
    position: relative;
}

.lbl-radio .ttl {
    display: block;
}

.lbl-radio .icon-wrap {
    position: absolute;
    border-radius: 100%;
    padding: 2px;
    border: 1px solid #060606;
    top: 2px;
    left: 19px;
}

.lbl-radio .icon-wrap:after {
    content: "";
    display: block;
    border-radius: 100%;
    background: #fff;
    transition: all 0.3s ease 0s;
    width: 20px;
    height: 20px;
}

.delivery-address textarea {
    height: 120px;
    margin-bottom: 30px;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input::-webkit-inner-spin-button, input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.delivery-address .row {
    margin: 0;
}

@media only screen and (min-width: 900px) {
    .delivery-address {
        max-width: 75%;
    }

    .delivery-address .row .col {
        width: 50%;
    }

    .map {
        max-width: 1100px;
        margin: 0 auto 50px auto;
    }
}

@media (max-width: 900px) {
    .map {
        flex-direction: column;
    }

    .map .container {
        padding: 0px 15px;
        width: 100%;
    }

    .map .container .map-adress {
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .map {
        height: 620px;
    }

    .map .container .map-adress {
        flex-direction: column;
        background: #fff;
    }
}

.delivery-postal .type-postal {
    display: flex;
}

@media only screen and (max-width: 767px) {
    .delivery-postal .type-postal {
        flex-flow: row wrap;
    }

    .delivery-postal .type-postal .lbl-radio {
        width: 100%;
    }
}

.delivery-postal .type-postal input:checked + .lbl-radio img {
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
}

.delivery-postal .type-postal .lbl-radio {
    display: flex;
    align-items: center;
}

.delivery-postal .type-postal .lbl-radio img {
    margin-right: 20px;
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all 0.3s ease 0s;
}

@media (max-width: 900px) {
    .delivery-postal .type-postal .lbl-radio img {
        max-width: 90px;
    }

    .delivery-postal .type-postal .lbl-radio .ttl {
        font-size: 18px;
    }
}

@media only screen and (min-width: 900px) {
    .row.row-city-wrap div.col {
        width: 30%;
    }

    .row.row-city-wrap div.col:first-child {
        width: 70%;
    }
}

.cabinet {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0 0 0;
    margin: 0 0 90px 0;
    font-family: 'Montserrat', sans-serif;
}

.cabinet__title {
    padding: 0 0 0 14px;
    margin: 0 0 6px 0;
    font-size: 30px;
    color: #29292f;
    line-height: 60px;
}

.cabinet__tabs {
    display: flex;
    color: #29292f;
    font-weight: 400;
    line-height: 60px;
}

.cabinet__tab {
    margin: 0 40px 0 0;
    cursor: pointer;
    position: relative;
}

.cabinet__tab:hover {
    color: #000;
}

.cabinet__tab._active {
    font-weight: 600;
}

@media (max-width: 767px) {
    .cabinet__title {
        font-size: 27px;
        margin: 0;
        padding: 0;
    }

    .cabinet__tab {
        margin: 0 30px 0 0;
        font-size: 15px;
    }
}

@media (max-width: 670px) {
    .cabinet .cabinet__tabs {
        line-height: 25px;
        margin: 0 0 20px 0;
    }

    .cabinet__title {
        font-size: 24px;
    }

    .cabinet__tab {
        margin: 0 22px 0 0;
        font-size: 12px;
    }
}

@media (max-width: 520px) {
    .cabinet .cabinet__tabs {
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
    }

    .cabinet__tab {
        margin: 0 10px 10px 10px;
    }
}

@media (max-width: 420px) {
    .cabinet__title {
        text-align: center;
    }
}

.cabinet__tab._active::after, .cabinet__tab:hover::after {
    content: '';
    position: absolute;
    bottom: 9px;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background-color: #001a74;
}

.cabinet__subtitle {
    line-height: 60px;
    color: #29292f;
    font-weight: 500;
}

@media (max-width: 767px) {
    .cabinet__subtitle {
        font-size: 18px;
    }
}

@media (max-width: 670px) {
    .cabinet__subtitle {
        line-height: 45px;
    }

    .cabinet__tab._active::after, .cabinet__tab:hover::after {
        bottom: -5px;
    }
}

.cabinet__form {
}

.form-cabinet {
}

.form-cabinet__row {
    gap: 10px;
    color: #29292f;
    display: flex;
    align-items: flex-end;
    margin: 0 0 40px 0;
}

.register-form .form-cabinet__row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin: 0;
}

form.register-form .form-cabinet__row > button.register-form__btn {
    margin: 24px 0 0 0;
}

.register-form .form-cabinet__row label {
    margin: 0;
}

.register-form input {
    flex: 1;
}

.register-form label button {
    width: auto;
}

@media (max-width: 1080px) {
    .form-cabinet__row {
        flex-direction: column;
        align-items: flex-start;
        margin: 0 0 20px 0;
    }
}

.form-cabinet__block input, .form-cabinet__block button, .form-cabinet__block div.input {
    border: none;
    border-radius: 10px;
    background: transparent;
}

.form-cabinet__block {
    width: 100%;
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid #7f7f7f;
    display: flex;
}

.form-cabinet__row label span {
    display: block;
    margin: 0 0 8px 0;
}

.form-cabinet__row label, .form-cabinet__row button {
    margin: 0;
}

.form-cabinet__row label.hat2, .form-cabinet__row button.hat2 {
    width: 65% !important;
    margin: 0 21px 0 0 !important;
}

.register-form .form-cabinet__row > button {
    width: 100%;
    margin: 24px 0 0 0;
    background-color: #001a74;
    color: #fff;
}

@media (max-width: 1080px) {
    .form-cabinet__row label, .form-cabinet__row button {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .form-cabinet__row label:last-child, .form-cabinet__row button:last-child {
        margin: 0;
    }
}

.form-cabinet__row label:nth-child(3), .form-cabinet__row button:nth-child(3) {
    margin: 0;
}

.form-cabinet__block input, .form-cabinet__block div.input {
    padding: 13px 26px;
    outline: none;
    color: #29292f;
}

.form-cabinet__block button {
    min-width: 70px;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 1080px) {
    .form-cabinet__block input, .form-cabinet__block div.input {
        width: 100%;
    }

    .form-cabinet__block button {
        width: 70px;
    }
}

.form-cabinet__block button::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 37px;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background-color: #7f7f7f;
}

.form-cabinet__block:nth-child(3), .form-cabinet__block button {
    margin: 0;
}

.form-cabinet__add-address {
    line-height: 1;
}

.btn-add {
    font-size: 18px;
    color: #001a74;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid #001a74;
    transition: all .3s linear 0s;
    height: 52px;
    background: transparent;
    cursor: pointer;
}

.btn-add:hover {
    background-color: #001a74 !important;
    color: #fff !important;
}

.orders-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 50px;
    text-align: left;
    color: #29292f;
}

.orders__table {
    width: 100%;
    border-collapse: collapse;
}

.orders__table tr > td.orders__summative {
    text-align: start;
    font-weight: 900;
}

@media (max-width: 767px) {
    .orders__table {
        display: none;
    }
}

.orders__table caption {
    display: none;
}

.orders__table td {
    vertical-align: top;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #333;
}

.orders__table td:first-child[rowspan] {
    font-weight: 500;
}

.orders__table td:last-child {
    font-weight: 300;
}

.orders__table th {
    text-align: start;
    border-bottom: 1px solid #c7c7c7;
    border-top: 1px solid #c7c7c7;
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-align: left;
    color: #333;
}

.orders__table th:nth-child(3) {
    width: 17%;
    text-align: center;
}

.orders__table th:nth-child(4) {
    width: 14%;
}

.orders__table th:last-child {
    text-align: center;
}

.orders__table tr + tr td {
    padding: 22px 0 0 0;
}

.orders__table tr + tr td:last-child {
    padding: 0;
}

.orders__table td:last-child {
    text-align: center;
}

.orders__table tbody::before {
    content: '';
    display: block;
    height: 17px;
}

.orders__num {
    text-align: center;
}

.orders__comment {
    width: 225px;
    padding: 0 55px 0 0;
}

@media (max-width: 925px) {
    .orders__comment {
        width: 180px;
        padding: 0 20px 0 0;
    }
}

.orders__performance {
    color: #27C82B;
}

.orders__table .orders__performance {
    width: 140px;
    color: #27C82B;
}

.orders__wait {
    color: #EDA417;
}

.orders__table .orders__wait {
    width: 10%;
    color: #EDA417;
}

.orders__mobile-history {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    color: #333;
    border-top: 1px solid rgba(167, 167, 167, .5);
    padding: 10px 0 0 0;
}

@media (min-width: 767px) {
    .orders__mobile-history {
        display: none;
    }
}

.mobile-history-orders__block {
    border-bottom: 1px solid rgba(167, 167, 167, .5);
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
}

.mobile-history-orders__row {
    display: flex;
    justify-content: space-between;
}

.mobile-history-orders__row:first-child .mobile-history-orders__col:first-child {
    display: flex;
}

@media (max-width: 400px) {
    .mobile-history-orders__row:first-child {
        flex-direction: column;
    }

    .mobile-history-orders__row:first-child .mobile-history-orders__col:last-child {
        align-self: flex-end;
        line-height: 18px;
    }
}

.mobile-history-orders__col {
}

.mobile-history-orders__id, .mobile-history-orders__date {
    margin: 0 20px 0 0;
}

.mobile-history-orders__id {
    font-weight: 500;
    line-height: 30px;
}

.mobile-history-orders__date, .mobile-history-orders__time {
    font-weight: 300;
    font-size: 12px;
    line-height: 30px;
}

@media (max-width: 400px) {
    .mobile-history-orders__id {
        line-height: 18px;
    }

    .mobile-history-orders__date, .mobile-history-orders__time {
        line-height: 18px;
    }
}

.mobile-history-orders__status {
}

.orders__performance {
}

.mobile-history-orders__name {
    font-weight: 700;
    line-height: 30px;
}

@media (max-width: 400px) {
    .mobile-history-orders__name {
        line-height: 18px;
    }
}

.mobile-history-orders__num {
}

.orders__num {
}

.mobile-history-orders__price {
}

.mobile-history-orders__resultant {
}

.orders__comment {
}

.mobile-history-orders__comment {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 22px;
}

.mobile-history-orders__summative {
    display: flex;
    justify-content: flex-end;
    font-weight: 700;
}

@media (max-width: 767px) {
    .orders-title {
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: 18px;
        text-align: left;
        color: #29292f;
    }
}

.stock {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
}

.stock__block {
    flex: 0 1 48.5%;
    margin: 0 0 15px 0;
}

.stock__block img {
    margin: 0 0 10px 0;
}

.stock__block:nth-child(odd) {
    margin: 0 30px 15px 0;
}

@media (max-width: 1080px) {
    .stock__block {
        flex: 0 1 49%;
    }

    .stock__block:nth-child(odd) {
        margin: 0 0 15px 0;
    }
}

@media (max-width: 767px) {
    .stock__block {
        flex: 0 1 100%;
        display: flex;
        flex-direction: column;
    }

    .stock__block:nth-child(3), .stock__block:last-child {
        display: none;
    }
}

.stock__form {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 21.6px;
    color: #001a74;
}

.stock__form input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.stock__form label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    margin: 0 120px 0 0;
    cursor: pointer;
}

@media (max-width: 767px) {
    .stock__form {
        font-size: 16px;
        line-height: 35px;
        display: flex;
        flex-direction: column;
    }

    .stock__form label {
        margin: 0;
    }
}

.stock__form label:last-child {
    margin: 0;
}

.stock__form label::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    flex-grow: 0;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background: transparent;
    margin: 0 15px 0 0;
    border: 1px solid #001a74;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

@media (max-width: 520px) {
    .stock__form {
        font-size: 15px;
        line-height: 35px;
    }

    .stock__form label::before {
        width: 20px;
        height: 20px;
        border-radius: 3px;
        margin: 0 10px 0 0;
    }
}

.stock__form input:checked + label::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.stock__form input:not(:disabled):not(:checked) + label:hover::before {
    border-color: #b3d7ff;
}

.stock__form input:not(:disabled):active + label::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}

.stock__form input:focus + label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.stock__form input:focus:not(:checked) + label::before {
    border-color: #80bdff;
}

.stock__form input:disabled + label::before {
    background-color: #e9ecef;
}

.register {
    width: 100%;
    height: 100vh;
    background: url("../img/background.png") center no-repeat;
    position: relative;
}

.register__container {
    width: 490px;
    text-align: center;
    position: absolute;
    top: 520px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px 0 40px 0;
    box-shadow: 0px 17px 38px rgba(0, 0, 0, 0.13);
    border-radius: 10px;
    z-index: 5;
}

.register__container .form-cabinet__row {
    padding: 0 40px;
}

@media (max-width: 520px) {
    .register__container {
        width: 100%;
    }

    .register__container .form-cabinet__row {
        padding: 0 15px;
    }
}

.register__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 60px;
    text-align: center;
    color: #29292f;
    padding: 0 40px 25px 40px;
    margin: 0 0 30px 0;
    border-bottom: 1px solid rgba(127, 127, 127, .2);
}


.wishListClick.hart.wish-opened {
    color: red !important;
}

.divForAddInBottom {
    position: fixed;
    z-index: 1000;
    background: white;
    top: 0;
    left: 0;
    right: 0;
    padding: 2px;
    bottom: 0;
}

div.fotorama__fullscreen-icon {
    width: 100% !important;
    height: 100% !important;
}

div.fotorama__arr {
    z-index: 50;
}

div.fotorama__fullscreen-icon {
    background-image: none !important;
}

div.fotorama__video-close {
    transform: none !important;
}

div.fotorama--fullscreen div.fotorama__fullscreen-icon {
    background: url(../img/fotorama.png) no-repeat -66px 2px !important;
    opacity: 1 !important;
    z-index: 150 !important;
    width: 32px !important;
    height: 32px !important;
    top: 0px;
    right: 0px;
}

div#slidersBlock {
    padding: 0 10px;
    margin: 0 auto;
    width: 1100px;
    max-width: calc(100% - 32px);
    display: block;
}

div.js_slider {
    min-height: 270px;
    display: inline-block;
}

div#Photos_slider {
    width: 730px;
    max-height: 325px;
    overflow: hidden;
}

div#Goods_slider {
    width: 317px;
    margin-left: 15px;
}

#Goods_carusel {
    display: block;
    width: auto;
    float: right;
    max-height: 355px;
    overflow: hidden;
}

#Goods_carusel .h2 {
    font-family: 'Decima Nova Pro';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    margin-left: 15px;
}

#Goods_carusel .h2 a {
    font-family: 'Decima Nova Pro';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    text-decoration: none;
    color: red;
}

#Goods_carusel .slick-arrow {
    width: 33px !important;
    height: 33px !important;
    margin-top: -27px !important;
}

.slider #Goods_carusel .slick-arrow.slick-prev {
    left: -16px;
}

.slider #Goods_carusel .slick-arrow.slick-next {
    right: -16px;
}

.slider__item_img {
    height: 216px;
}

#Goods_carusel .product-name {
    font-family: 'Decima Nova Pro';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #000000;
}

#Goods_carusel a.slider-product-link {
    text-decoration: none;
}

#Goods_carusel .sliader-price {
    font-family: 'Decima Nova Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

#Goods_carusel .price-goods-page-old {
    font-family: 'Decima Nova Pro';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: #707070;
}

#Goods_carusel .product__price {
    padding: 0;
}

#Goods_carusel .product__add-btn {
    float: right;
    margin-top: 17px;
}

svg.for_open {
    cursor: pointer;
    width: 25px;
    margin-left: 14%;
}

svg.for_open, div.header-mobile2 {
    display: none;
}

div.header-mobile2 {
    margin: -20px 0 5px 0;
    background-color: white;
}

@media (max-width: 1224px) {
    div#Photos_slider {
        width: 660px;
    }
}

@media (max-width: 1023px) {
    div#Photos_slider {
        width: 100%;
    }

    #Goods_carusel {
        display: block;
        float: none;
    }

    div#Goods_slider {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 900px) {
    #Goods_carusel .slick-arrow.slick-prev {
        left: -11px;
    }

    svg.for_open, div.header-mobile2 {
        display: block;
    }

    .mobile-dropdown.opened .mobile-dropdown__panel a {
        display: block;
        width: 100%;
    }

    .social-mob {
        display: flex;
        align-items: center;
    }

    div#Photos_slider {
        max-height: 270px;
    }
}

@media all and (min-width: 992px) {
    .newest {
        min-height: unset;
    }

    .slider {
        max-height: 330px;
        overflow: hidden;
    }
}

.footer-col2 {
    width: 50%;
    font-size: 14px;
    font-family: 'Decima Nova Pro';
}

#Goods_carusel {
    overflow: inherit;
}

@media (max-width: 992px) {
    .footer {
        align-items: center;
    }

    .footer-col__catalog-item {
        list-style-type: none;
        text-align: center;
    }

    .footer-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col2 {
        width: 70%;
        margin: 0 10px 0 0
    }

    .footer-col__catalog {
        gap: 20px;
    }

    .footer_search-form {
        width: 100%;
    }
}

@media (min-width: 768px) {
    header .container {
        width: 100% !important;
    }
}

.header-contact__order-call {
    color: #FF2020;
    display: block;
    text-align: end;
    text-decoration: underline;
}

.header-order-call {
    display: none;
    height: 30px;
    width: 30px;
}

.header-order-call__phone img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 900px) {
    .header-order-call {
        display: block;
    }
}

.order-backcall {
    display: none;
    position: fixed;
    width: 404px;
    height: 360px;
    top: 100px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 0 4px #000;
    padding: 40px 60px;

    @media (max-width: 450px) {
        width: calc(100% - 15px);
        left: 15px;
        right: 15px;
        top: 20px;
        padding: 20px;
    }
}

.overlay-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99;
}

span.filter-title {
    font-size: 16px;
    width: 100%;
    position: relative;
    outline: 0;
    margin-bottom: 10px;
    display: block;
    font-family: "Decima Nova Pro";
    margin-top: 20px;
    cursor: pointer;
}

.footer-col__social-top a:hover, .footer-col__social-top a:hover svg path, .contacts-col__social-top a:hover, .contacts-col__social-top a:hover svg path {
    fill: #c03;
    color: #c03;
    text-decoration: none;
}

.contacts-col__social-top, .contacts-col__social {
    justify-content: flex-start;
}

.contacts-col__social a {
    position: relative;
}

.contacts-col__social a .star {
    color: #c03;
    font-size: 24px;
    position: absolute;
    top: -8px;
    right: -3px;
    font-weight: 900;
}

.social-warning {
    color: #c03;
    margin-top: 5px;
}

.description__txt .sm__txt {
    text-transform: lowercase;
}

.filterFound {
    display: block;
    text-align: center;
    margin-top: 20px;
}

.social-mob__text {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #333;
    margin-left: 10px;
    margin-bottom: 0;
}

.catalog .products-list .products-noFound {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px auto;
    font-size: 24px;
    gap: 30px;
}

.products-noFound .noFound-title {
    font-weight: 700;
}

.products-noFound .noFound-button {
    background-color: #B7223F;
    color: #fff;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 2px;
    font-size: 16px;
    margin: 20px 0;
}

.product .product-label,
.product-info .product-label {
    position: absolute;
    top: 10px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product .product-label a, .product .product-label div,
.product-info .product-label a, .product-info .product-label div {
    position: relative;
    top: 0;
}

.feedbackModal {
    display: none;
    width: 400px;
    top: 100px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 99999;
    background: #fff;
    padding: 40px 60px;
    position: fixed;
    box-shadow: 0 0 4px #000;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 1024px) {
    html {
        font-size: 14px;
    }

    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .mobile-header-float {
        display: block;
    }

    .catalog-menu {
        padding: 0;
    }

    .catalog-menu_submenu {
        display: none;
    }

    .catalog-menu .container {
        grid-template-columns: 100%;
        border-radius: 0;
        padding: 0 20px;
    }

    .catalog-menu_main {
        border-right: none;
    }

    .catalog-menu_main:after {
        display: none;
    }

    .catalog-menu_main-item {
        --icon-size: 25px;
    }

    .catalog-menu_main-item-dropdown {
        width: calc(100% + 40px);
        margin: 0 0 0 -20px;
    }

    .has-childrens .catalog-menu_main-item-title:after {
        content: '';
        width: 8px;
        height: 8px;
        border-right: 2px solid black;
        border-bottom: 2px solid black;
        transform: translate(0, -17%) rotate(45deg);
        margin: 0 0 0 auto;
    }

    .catalog-menu_main-item.active .catalog-menu_main-item-title:after {
        transform: translate(0, -17%) rotate(-135deg);
    }

    .catalog-menu_main-item.active .catalog-menu_main-item-dropdown {
        display: grid;
    }
}

@media (max-width: 900px) {
    .contacts-col__social {
        gap: 0;
    }
}

@media (max-width: 600px) {
    .contacts-col__social-top {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .popup_content {
        padding: 25px;
    }

    .popup_close {
        width: 30px;
        height: 30px;
        top: 12px;
        right: 12px;
    }

    .popup_title {
        font-size: 24px;
    }

    #popup {
        .change-city_input {
            font-size: 16px;
            padding: 12px 35px 12px 0;
        }

        .change-city_find-form :where(img, svg) {
            margin: 0 15px 0 0;
        }

        .change-city_list {
            grid-template-columns: 100%;
        }
    }

    #Photos_slider .slider__item {
        height: 175px;
    }
}