/* CUSTOM PRELOAD */
#loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: #fff;
    -webkit-animation: loader 1s linear;
    animation: loader 1s linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes loader {
    0% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    99% {
        opacity: 0;
    }
    100% {
        display: none;
        visibility: hidden;
        z-index: -10;
        opacity: 0;
    }
}

@keyframes loader {
    0% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    99% {
        opacity: 0;
    }
    100% {
        display: none;
        visibility: hidden;
        z-index: -10;
        opacity: 0;
    }
}


/* RESET STYLES */
* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    -webkit-text-size-adjust: none;
    box-sizing: border-box;
}

.clear {
    clear: both;
    overflow: hidden;
    height: 0px;
    font-size: 0px;
    display: block;
}

html:not(.touch-screen)::-webkit-scrollbar, html:not(.touch-screen) *::-webkit-scrollbar {
    width: 3px;
    height: 6px;
}

html:not(.touch-screen)::-webkit-scrollbar-track, html:not(.touch-screen) *::-webkit-scrollbar-track {
    background: #e1e1e1;
}

html:not(.touch-screen)::-webkit-scrollbar-thumb, html:not(.touch-screen) *::-webkit-scrollbar-thumb {
    background: #A28054;
}

:focus, :active, :visited {
    outline: none;
}

/* GLOBAL SETTINGS */
html {
    height: 100%;
    overflow-x: hidden;
}

body {
    height: 100%;
}

body.bg-black {
    background: #1B1B1B;
}

#content-block {
    overflow: hidden;
    position: relative;
}

html:not(.ie) #content-block {
    min-height: 100vh;
}

.overflow-hidden {
    overflow: hidden;
}

html.overflow-hidden body {
    overflow: hidden;
}

/*.swiper-slide:not(:first-child){display: none;}*/

.container {
    position: relative;
    width: 100%;
    margin: auto;
    padding: 0 55px;
    max-width: 1440px;
}

/*spacers*/
.spacer {
    clear: both;
}

.spacer-100 {
    height: 100px;
}

.spacer-80 {
    height: 80px;
}

.spacer-72 {
    height: 72px;
}

.spacer-65 {
    height: 65px;
}

.spacer-55 {
    height: 55px;
}

.spacer-45 {
    height: 45px;
}

.spacer-40 {
    height: 40px;
}

@media ( max-width: 1200px ) {
    .spacer-100 {
        height: 75px;
    }

    .spacer-72,
    .spacer-80 {
        height: 60px;
    }

    .spacer-55,
    .spacer-65 {
        height: 40px;
    }

    .spacer-45 {
        height: 35px;
    }

    .spacer-40 {
        height: 25px;
    }
}

/* TYPOGRAPHY */
body {
    font-family: 'Gotham Pro';
    color: #000;
}

b, strong {
    font-weight: 700;
}

a {
    cursor: pointer;
    text-decoration: none;
    outline: none;
    color: inherit;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

a:link, a:visited, a:active, a:hover {
    cursor: pointer;
    text-decoration: none;
    outline: none;
}

iframe {
    border: none;
    outline: none;
}

ul, ol {
    list-style: none;
}

img {
    width: 100%;
    height: auto;
    max-width: 100%;
    vertical-align: top;
}

blockquote {
    position: relative;
    color: #212121;
    font-size: 22px;
    line-height: 1.85em;
    font-weight: 700;
    padding-left: 30px;
    text-align: left;
    border-left: 6px solid #00ABED;
}

img.lazy {
    opacity: 0;
}

img.lazy.loaded {
    opacity: 1;
}

h1, .h1 {
    font-size: 36px;
    color: #000000;
    line-height: 1;
}

h2, .h2 {
    font-weight: 300;
    font-size: 32px;
    line-height: 1;
    color: #262F56;
}

.h3 {
    font-size: 24px;
    line-height: 1;
}

.h4 {
    font-size: 18px;
    line-height: 1;
}

.fw-500 {
    font-weight: 500;
}

.fw-300 {
    font-weight: 300;
}

.upper {
    text-transform: uppercase;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.dark {
    color: #000;
}

.purple {
    color: #262F56;
}

.bg-1 {
    background: #F9F7F5;
}

.bg-2 {
    background: #FCFBF9;
}

@media ( max-width: 1199px ) {
    h1, .h1 {
        font-size: 30px;
    }
}

@media ( max-width: 991px ) {
    h1, .h1 {
        font-size: 26px;
    }
}


/*HEADER*/
.header-top .container {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top .phone {
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    color: #000000;
}

.header-top .top-options {
    display: flex;
    align-items: center;
    position: relative;
}

.header-top .search-open {
    width: 20px;
    height: 20px;
    font-size: 0;
}

.header-top .lang {
    margin: 0 40px;
}

.lang ul {
    display: flex;
    align-items: center;
    position: relative;
}

.lang ul:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    height: 20px;
    width: 1px;
    background: #C4C4C4;
}

.lang ul li:not(:last-child) {
    margin-right: 25px;
}

.lang a {
    font-size: 16px;
    line-height: 15px;
    text-transform: uppercase;
    color: #575757;
}

.header-top .phone:hover,
.lang a:hover {
    color: #CDBB9F;
}

.lang .active a {
    color: #CDBB9F;
}

.cart-link {
    position: relative;
    display: flex;
    margin-right: 24px;
}

.cart-link img {
    width: 15px;
    height: 15px;
}

.header-top .count {
    background: linear-gradient(180deg, rgba(196, 196, 196, 0.38) 30.99%, rgba(255, 255, 255, 0) 100%);
    height: 16px;
    min-width: 16px;
    border-radius: 50%;
    position: absolute;
    top: -1;
    right: -24px;
    font-weight: bold;
    font-size: 8px;
    line-height: 9px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/*main*/
.main-image {
    padding: 125px 100px 60px 114px;
    margin-bottom: 8px;
    background-size: cover;
    background-position: right center;
}

.main-image .title {
    margin-bottom: 13px;
    font-weight: 300;
    font-size: 36px;
    line-height: 34px;
    color: #000000;
}

.main-image .discount {
    font-weight: 500;
    font-size: 48px;
    line-height: 46px;
    color: #CDBB9F;
    margin-bottom: 13px;
}

.main-image .h3 {
    margin-bottom: 32px;
}

.main-category ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-category li {
    width: calc(20% - 6.4px);
    overflow: hidden;
    transition: all 0.35s;
}

.main-category a {
    display: block;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.main-category li:hover {
    box-shadow: 0px 4px 12px rgba(125, 130, 154, 0.16);

}

.main-category a:hover {
    transform: scale(1.01)
}

.main-category a:before {
    content: "";
    display: block;
    padding-top: 135%;
}

.main-category .title {
    position: absolute;
    padding: 0 16px;
    padding-top: 12px;
    border-top: 1px solid #262F56;
    bottom: 29px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    line-height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}


.navbar ul {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: center;
}

.navbar li {
    padding: 5px 16px;
}

.navbar a {
    font-size: 14px;
    line-height: 13px;
    color: #000000;
    display: block;
    position: relative;
    padding: 28px 0;
}

.navbar a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.35s;
    height: 1px;
    width: 0%;
    background: #A38452;
}

.navbar a:hover:after {
    width: 100%;
}

.site-header {
    position: relative;
}

.site-header.type-2 {
    border-bottom: 1px solid rgba(224, 224, 224, 0.5);
}

.menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(125, 130, 154, 0.12);
    z-index: 100;
    padding: 36px 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.35s;
}

.menu.active {
    top: calc(100% - 5px);
    opacity: 1;
    visibility: visible;
}

.menu .container {
    display: flex;
    justify-content: space-between;
}

.menu .content {
    width: calc(100% - 320px);
    padding-right: 5%;
}

.menu-row {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.menu-row .item {
    width: 33.33%;
    margin-bottom: 35px;
}

.menu-row .item-title {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.08em;
    color: #000000;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
}

.menu-row .item-title:hover {
    color: #A38452;
}

.menu-row .item-title:after {
    background: #A38452;
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 14px;
    height: 2px;
}

.menu-row .item-title img {
    width: 24px;
    height: 24px;
    position: absolute;
    left: -32px;
    top: 50%;
    margin-top: -10px;
}

.menu-row ul {
    padding-right: 15px;
}

.menu-row li:not(:last-child) {
    margin-bottom: 15px;
}

.menu-row ul a {
    font-size: 13px;
    line-height: 1;
    color: #575757;
}

.menu-side li a:hover,
.menu-row ul a:hover {
    color: #A38452;
}

.menu-price-row {
    display: flex;
    align-items: center;
    border: 1px solid #F1ECE4;
    padding: 24px;
}

.menu-price-row .subtitle-price {
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    letter-spacing: 0.08em;
    color: #000000;
    min-height: 20px;
    border-left: 2px solid #A38452;
    padding-left: 12px;
    font-weight: 500;
    width: calc(20% - 5px);
    margin-right: 10px;
}

.menu-price-row ul {
    width: calc(80% - 5px);
    display: flex;
    align-items: center;
}

.menu-price-row li {
    width: 25%;

}

.menu-price-row li a {
    position: relative;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #000000;
    padding-left: 24px;
    display: inline-block;
}

.menu-price-row li a:after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: url(../img/dot.svg) center no-repeat;
    top: 50%;
    transform: translateY(-50%) scale(1);
    transition: all 0.3s;
}

.menu-price-row li:not(:last-child) {
    padding-right: 10px;
}

.menu-price-row li a:hover {
    color: #A38452;
}

.menu-price-row li a:hover:after {
    transform: translateY(-50%) scale(1.1);
}

.menu-side {
    padding: 40px 24px;
    background: #F1ECE4;
}

.menu-side {
    text-align: center;
}

.menu-side ul {
    text-align: left;
    margin-bottom: 24px;
}

.menu-side li:not(:last-child) {
    margin-bottom: 17px;
}

.menu-side li {
    position: relative;
    padding-left: 24px;
    font-size: 0;
}

.menu-side li:after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: url(../img/dot.svg) center no-repeat;
    top: 50%;
    transform: translateY(-50%);
}

.menu-side li a {
    font-size: 13px;
    line-height: 1;
    text-decoration-line: none;
    color: #000000;
    display: inline-block;
}

.menu-side .btn {
    width: 100%;
}


/*SEARCH*/
.form-search {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 200;
    display: none;
}

.search-wrap {
    top: 80px;
    left: 56px;
    right: 56px;
    position: absolute;
    z-index: 2;
    height: 72px;

}

.form-search-close {
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(87, 87, 87, 0.72);
}

.search-wrap {
    background: #fff;
}

.search-wrap form {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px 60px 10px 88px;
}

.search-wrap input {
    font-size: 20px;
    line-height: 19px;
    color: #000000;
    width: 100%;
}

.search-wrap .btn-search {
    background: url(../img/btn-search.svg) center no-repeat;
    width: 34px;
    height: 34px;
    position: absolute;
    left: 44px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.search-wrap .clear-search {
    background: url(../img/cross-24.svg) center no-repeat;
    width: 34px;
    height: 34px;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.form-search-list {
    border-top: 1px solid rgba(87, 87, 87, 0.2);
    padding: 31px 48px 38px;
    background: #fff;
    display: none;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
}

.form-search-list ul {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 16px;
}

.form-search-list li {
    width: calc(25% - 36px);
    margin-bottom: 24px;
}

.form-search-list li a {
    display: flex;
    align-items: flex-start;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(224, 224, 224, 0.5);
    position: relative;
}

.form-search-list li a:after {
    content: "";
    position: absolute;
    left: 0;
    width: 0%;
    bottom: 0px;
    height: 1px;
    background: rgba(192, 161, 113, 0.8);
    transition: all 0.35s;
}

.form-search-list li a:hover:after {
    width: 100%;
}

.form-search-list .icon {
    width: 80px;
    height: 80px;
    overflow: hidden;
    position: relative;
    object-fit: cover;
    min-width: 80px;
}

.form-search-list img {
    transition: all 0.35s;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.form-search-list .icon:hover img {
    transform: scale(1.08);
}

.form-search-list .text {
    font-size: 13px;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.6);
    max-width: calc(100% - 80px);
    padding-left: 16px;
}

.form-search-list .text em {
    color: #000;
}

.basket {
    /*position: absolute;*/
    /*right: 0;*/
    /*top: calc(100% + 20px);*/
    position: fixed;
    top: calc(10% - 20px);
    right: calc(15% - 45px);
    padding: 24px 16px;
    background: #FFFFFF;
    border: 0.5px solid rgba(128, 128, 128, 0.24);
    box-shadow: 0px 12px 8px rgba(128, 128, 128, 0.04);
    width: 320px;
    z-index: 11;
    display: none;
}

.basket-title {
    font-size: 15px;
    line-height: 120%;
    color: #000000;
    text-align: center;
    margin-bottom: 24px;
}

.basket-close {
    position: absolute;
    right: 20px;
    top: 22px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.basket-item {
    display: flex;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.3);
    margin-bottom: 24px;
}

.basket-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.basket-item:first-child {
    border-bottom: 1px solid rgba(128, 128, 128, 0.3);
    margin-bottom: 24px;
}

.basket-item .image {
    width: 96px;
    position: relative;
    overflow: hidden;
    object-fit: cover;
}

.basket-item .image:before {
    content: "";
    padding-top: 100%;
    display: block;
}

.basket-item img {
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.35s;
}

.basket-item .item-content {
    width: calc(100% - 96px);
    padding-left: 14px;
    align-self: center;
    position: relative;
}

.basket-item .article {
    font-size: 11px;
    line-height: 1;
    color: #808080;
    margin-bottom: 11px;
}

.basket-item .item-title {
    font-size: 13px;
    line-height: 1.2;
    color: #000000;
    display: inline-block;
    margin-bottom: 15px;
}

.basket-item .item-bottom {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}

.basket-item .price-old {
    font-size: 12px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.8);
    color: #7A633E;
    position: relative;
    margin-right: 12px;
    text-decoration: line-through;
}

.basket-item .price {
    font-size: 15px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.8);
}

.basket-item .weight {
    font-size: 12px;
    line-height: 1;
    color: #575757;
    position: absolute;
    right: 0;
    top: -1px;
}

.basket .btn {
    width: 100%;
}

.basket-empty .be-content {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    align-content: center;
    flex-wrap: wrap;
}

.basket-empty .be-content img {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.basket-empty .basket-title {
    font-size: 16px;
    line-height: 1;
    color: #000000;
    margin-bottom: 11px;
    width: 100%;
}

.basket-empty p {
    width: 100%;
    font-size: 15px;
    line-height: 120%;
    color: #575757;
    max-width: 200px;
    margin: auto;
}

.basket-add-product {
    padding: 53px 16px 34px;
}

.basket-add-product .basket-title {
    font-size: 17px;
    padding: 0 35px;
    margin-bottom: 54px;
}

.basket-add-product .basket-item {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
    margin-bottom: 45px;
}

.basket-add-product .btn {
    margin-bottom: 23px;
}

.mobile-button {
    display: none;
}

/*-------------------------------*/
.breadcrumbs {
    padding: 16px 0;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs li:not(:last-child) {
    margin-right: 14px;
}

.breadcrumbs a {
    position: relative;
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    color: #A38452;
    text-decoration-line: underline;
}

.breadcrumbs a:after {
    position: absolute;
    content: "/";
    top: 50%;
    right: -11px;
    transform: translateY(-50%);
    font-size: 12px;
    line-height: 1;
    color: #A38452;
}

.breadcrumbs span {
    font-size: 12px;
    line-height: 1;
    color: #A38452;
}


/*CATALOG TITLE*/
.page-title {
    padding: 25px 0;
}

.page-title h1 {
    font-weight: 300;
}

.catalog-title {
    display: block;
    /*padding: 83px 25px;*/
    padding-bottom: 40%;
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    /*background-color: #F5F1EC;*/
}

.catalog-header {
    padding: 32px 0;
}

.catalog-filter {
    position: relative;
    padding: 46px 0 0;
    z-index: 6;
    max-height: 101px;
}

.catalog-filter:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url(../img/loader.gif) center no-repeat;
    background-size: 35px;
}

.catalog-filter .container {
    opacity: 0;
    visibility: hidden;
}

.catalog-filter.active .container {
    opacity: 1;
    visibility: visible;
}

.catalog-filter.active:after {
    opacity: 0;
    visibility: hidden;
}

.catalog-filter .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.catalog-filter .item.fi-price {
    width: calc(25% - 60px);
    /*margin-top: -30px;*/
    margin-top: -2px;
}

.fi-price .item-title {
    width: 100%;
    margin-bottom: 12px;
}

.fi-price .item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fi-price .item-row .input-wrap {
    width: calc(50% - 14px);
}

.fi-price .input-wrap {
    margin-bottom: 0;
}

.fi-price img {
    width: 12px;
}

.filter-row {
    display: flex;
    align-items: flex-start;
    /*min-height: 150px;*/
    max-height: 9999px;
    flex-wrap: nowrap;
    width: calc(75% - 230px);
    padding-top: 7px;
}

.filter-row .item {
    width: calc(25% - 18px);
}

.filter-row .item:not(:last-child) {
    margin-right: 24px;
}

.catalog-options {
    padding: 45px 0 30px;
}

.catalog-options .SumoSelect > .optWrapper > .options li.opt {
    justify-content: flex-end;
}

.catalog-options .container {
    display: flex;
    justify-content: flex-end;
}

.catalog-options .select-box.select-box-line .SumoSelect > .CaptionCont {
    padding-right: 40px;
}

.catalog-options .SumoSelect > .CaptionCont > label {
    right: 7px;
}

.catalog-options .SumoSelect.open {
    z-index: 12;
}

.catalog-options.type-2 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalog-options .filter-selected ul {
    flex-wrap: wrap;
}

@media ( min-width: 1200px ) {
    .form-search-list li:not(:nth-child(4n)) {
        margin-right: 48px;
    }

    .breadcrumbs a:hover {
        color: #000;
    }
}

@media ( max-width: 1199px ) {
    .catalog-options {
        padding: 15px 0 20px;
    }

    .catalog-header {
        padding: 10px 0 20px;
    }

    .catalog-filter {
        position: relative;
        padding: 5px 0;
        max-height: 190px;
    }

    .filter-row {
        width: 100%;
        padding: 15px 0;
    }

    .catalog-filter .container .btn {
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .catalog-filter .item.fi-price {
        width: 260px;
        margin-top: 0;
    }

    .catalog-title {
        /*padding: 45px 25px; */
    }

    .search-wrap .btn-search {
        left: 16px;
    }

    .form-search-list {
        padding: 26px 24px;
    }

    .search-wrap form {
        padding: 10px 50px 10px 60px;
    }

    .form-search-list .icon {
        width: 66px;
        height: 66px;
        min-width: 66px;
    }

    .form-search-list li {
        width: calc(33.33% - 16px);
        margin-bottom: 14px;
    }

    .form-search-list li:not(:nth-child(3n)) {
        margin-right: 24px;
    }

    .search-wrap input {
        font-size: 16px;
    }

    .search-wrap {
        left: 20px;
        right: 20px;
    }

    .navbar li {
        padding: 5px 8px;
    }

    .container {
        padding: 0 20px;
    }

    .main-image {
        padding: 55px 50px 40px 60px;
    }

    .main-image .title {
        font-size: 30px;
        line-height: 1.2;
    }

    .main-image .discount {
        font-size: 35px;
        margin-bottom: 10px;
        line-height: 1.35;
    }

    h2, .h2 {
        font-size: 26px;
    }

    .h3 {
        font-size: 18px;
    }

    .lang a {
        font-size: 14px;
    }

    .header-top .lang {
        margin: 0 30px;
    }
}

@media ( max-width: 991px ) {
    h2, .h2 {
        font-size: 24px;
    }

    .container {
        padding: 0 15px;
    }

    .menu {
        display: none;
    }

    .main-category .title {
        padding: 0 6px;
        padding-top: 7px;
        border-top: 0;
        bottom: 14px;
        font-size: 12px;
    }

    .header-top .phone {
        font-size: 18px;
    }

    .hidden-md {
        display: none !important;
    }

    .mobile-button {
        display: block;
        width: 40px;
        height: 40px;
        position: relative;
        cursor: pointer;
    }

    .mobile-button span,
    .mobile-button:before,
    .mobile-button:after {
        content: "";
        width: 20px;
        height: 1px;
        background: #000000;
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        margin: auto;
        transition: all 0.35s;
    }

    .mobile-button:before {
        margin-top: -5px;
    }

    .mobile-button:after {
        margin-top: 5px;
    }

    .mobile-button.active:after {
        transform: translateY(-50%) rotate(45deg);
        margin-top: 0px;
    }

    .mobile-button.active:before {
        transform: translateY(-50%) rotate(-45deg);
        margin-top: 0px;
    }

    .mobile-button.active span {
        opacity: 0;
    }

    .navbar {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        z-index: 101;
        background: #fff;
        bottom: 0;
    }

    .navbar ul {
        display: block;
        width: 100%;
        height: 100%;
    }

    .navbar a {
        display: inline-block;
        font-size: 16px;
    }

    .navbar a:after {
        bottom: -4px;
    }

    .navbar li {
        padding: 8px 10px;
    }
}


.catalog-list {
    display: flex;
    flex-wrap: wrap;
}

.catalog-list .product {
    margin-bottom: 24px;
}

@media ( min-width: 1200px ) {
    .catalog-list .product {
        width: calc(25% - 6px);
    }

    .catalog-list .product:not(:nth-child(4n)) {
        margin-right: 8px;
    }

}

@media ( max-width: 1199px ) {
    .catalog-list .product {
        width: calc(33.33% - 6px);
    }

    .catalog-list .product:not(:nth-child(3n)) {
        margin-right: 8px;
    }
}

/* new inputs start */

.filter-row .content {
    border-bottom: none;
    box-shadow: 0px 8px 12px rgb(128 128 128 / 15%);
}

.filter-row .overlay-filter__container-block:not(:last-child) {
    margin-right: 15px;
}

.filter-row .overlay-filter__container-block > a {
    padding-right: 0;
}

.bx-filter-container-model {
  position: absolute;
}

/* new inputs end */

.result-search .search-wrap {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 25px;
}

.result-search .search-wrap form {
    padding: 10px 50px 10px 40px;
}

.result-search .search-wrap .btn-search {
    left: 0;
}

/*@media (max-width: 991px) and (min-width: 769px) {}*/


.detail-card-left {
    /*max-height: 561px;*/
    overflow: hidden;
}

.basket-list {
    overflow-y: auto;
    max-height: 74vh;
}

/*Task #49309 Menu for Tablet start*/

@media only screen and (max-device-width: 1368px) and (-webkit-min-device-pixel-ratio: 2) {
    .mobile-button {
        display: block !important;
        width: 40px;
        height: 40px;
        position: relative;
        cursor: pointer;
    }

    .navbar {
        display: none;
    }

    .navbar ul {
        height: 100%;
        width: 100%;
        display: block;
    }

    .menuItem .overflowItems {
        overflow-y: auto;
        overflow-x: hidden;
        height: calc(100vh - 75px);
        padding-bottom: 100px;
    }

    .menuItem {
        display: flex !important;
        transform: translateX(0) !important;
        transition: .3s all;
    }

    .mobile-button.active span {
        opacity: 0;
    }

    .mobile-button.active:before {
        transform: translateY(-50%) rotate(-45deg);
        margin-top: 0px;
    }

    .mobile-button.active:after {
        transform: translateY(-50%) rotate(45deg);
        margin-top: 0px;
    }

    .mobile-button span,
    .mobile-button:before,
    .mobile-button:after {
        content: "";
        width: 20px;
        height: 1px;
        background: #000000;
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        margin: auto;
        transition: all 0.35s;
    }

    .mobile-button:before {
        margin-top: -5px;
    }

    .mobile-button:after {
        margin-top: 5px;
    }
}


@media not all and (min-resolution: .001dpcm) {
    @media (max-width: 1024px) {
        .mobile-button {
            display: block !important;
            width: 40px;
            height: 40px;
            position: relative;
            cursor: pointer;
        }

        .navbar {
            display: none;
        }

        .navbar ul {
            height: 100%;
            width: 100%;
            display: block;
        }

        .menuItem {
            display: flex !important;
            transform: translateX(0) !important;
            transition: .3s all;
        }

        .menuItem .overflowItems {
            overflow-y: auto;
            overflow-x: hidden;
            height: calc(100vh - 75px);
            padding-bottom: 100px;
        }

        .mobile-button.active span {
            opacity: 0;
        }

        .mobile-button.active:before {
            transform: translateY(-50%) rotate(-45deg);
            margin-top: 0px;
        }

        .mobile-button.active:after {
            transform: translateY(-50%) rotate(45deg);
            margin-top: 0px;
        }

        .mobile-button span,
        .mobile-button:before,
        .mobile-button:after {
            content: "";
            width: 20px;
            height: 1px;
            background: #000000;
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            margin: auto;
            transition: all 0.35s;
        }

        .mobile-button:before {
            margin-top: -5px;
        }

        .mobile-button:after {
            margin-top: 5px;
        }
    }
}

/*Task #49309 Menu for Tablet end*/

/*Task 49073 swiper for category start*/

.swiper__temp-desktop {
    position: relative;
    overflow: hidden;
    margin: 25px 0;
}

.swiper__temp-desktop .swiper-slide img {
    border-radius: 50%;
    max-width: 100px;
    width: 100%;
    max-height: 100px;
    height: 100%;
}

.swiper__temp-desktop .swiper-slide:hover:before {
    opacity: 1;
}

.swiper__temp-desktop .swiper-wrapper {
    align-items: baseline;
    align-content: center;
    /*justify-content: space-around;*/
    flex-direction: row;
    padding-top: 10px;
}

.swiper__temp-desktop .swiper-slide,
.swiper__temp-desktop .swiper-slide.swiper-slide-active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.swiper__temp-desktop .temp-desktop-name {
    padding-top: 15px;
    text-align: center;
    color: #000000;
}

/*hide*/

/*.swiper__temp-desktop .swiper__arrows {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    z-index: 99;*/
/*}*/

/*!**!*/
/*.swiper__temp-desktop .swiper__arrows {*/
/*    display: flex;*/
/*    position: absolute;*/
/*    top: 40%;*/
/*    left: 0;*/
/*    right: 0;*/
/*    z-index: 99;*/
/*}*/

/*.swiper__temp-desktop .swiper__arrows .swiper__arrow {*/
/*    display: flex;*/
/*    background: none;*/
/*    transition: opacity .3s ease;*/
/*    cursor: pointer;*/
/*}*/

/*.swiper__temp-desktop .swiper__arrows .swiper-button-disabled {*/
/*    opacity: .5;*/
/*    transition: opacity .3s ease;*/
/*}*/

/*.swiper__temp-desktop .swiper__arrows .swiper__arrow svg {*/
/*    width: 30px;*/
/*    height: 30px;*/
/*}*/


/*.swiper__temp-desktop .swiper__arrows .swiper__arrow-prev {*/
/*    transform: rotate(180deg);*/
/*}*/

/*.swiper__temp-desktop .swiper__arrows .swiper__arrow-next {*/
/*    margin-left: 10px;*/
/*}*/

.justify-desktop {
    justify-content: center;
}


/*@media ( max-width: 1023px ) {*/
/*    .swiper__temp-desktop .swiper__arrows .swiper__arrow-prev,*/
/*    .swiper__temp-desktop .swiper__arrows .swiper__arrow-next {*/
/*        display: none;*/
/*    }*/
/*}*/


.swiper__arrow-prev,
.swiper__arrow-next {
    position: absolute;
    top: 40%;
    transform: translateY(-40%);
    z-index: 6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    transition: opacity .3s ease;
    cursor: pointer;
}

.swiper__arrow-prev {
    transform: rotate(180deg);
    left: 10px;
    right: auto;
}

.swiper__arrow-next {
    right: 10px;
    left: auto;
}

@media(max-width: 1023px) {
    .swiper__arrow-prev {
        left: 0px;
    }

    .swiper__arrow-next {
        right: 0;
    }
}

@media ( max-width: 767px ) {
    .swiper__temp-desktop .swiper__arrow-prev,
    .swiper__temp-desktop .swiper__arrow-next {
        display: none;
    }
}

.swiper__temp-desktop .swiper-button-disabled {
    opacity: .5;
    transition: opacity .3s ease;
    cursor: not-allowed;
}

.swiper__temp-desktop .swiper__arrow svg {
    width: 30px;
    height: 30px;
}


/*hide*/

/**/

@media ( min-width: 1369px ) {
    .swiper__temp-desktop .swiper-slide:before {
        position: absolute;
        width: 106px;
        height: 106px;
        top: -4px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 100%;
        border: 1px solid #BF8F6C;
        opacity: 0;
        transition: all .2s ease;
        content: "";
        z-index: 99;
    }
}

/*Task 49073 swiper for category start*/

#input-price-1,
#input-price-2 {
    text-align: right!important;
    height: 100%;
    margin-bottom: 13px;
}

.catalog-filter {
    background: rgba(227, 217, 201, 0.5);
    padding: 46px 0 92px;
}

.overlay-filter__container-block > span.filter-sp.active {
    background: #ffffff;
}

.pay-icons-container {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin: 0 -5px;
}

.pay-icons-container .item-ico {
    flex: 1 1 auto;
    margin: 0 5px;
}

.pay-icons-container img{
    width: 60px;
}
.oferta-text {
    font-size: 12px;
}
.oferta-text a {
    text-decoration: underline;
}
[src*="tsyndicate.com"] {
 display: none;
}

@media(min-width: 768px) {
    .catalog .image.swiper-slide {
        height: 0;
        padding-bottom: 125%;
        display: block;
        position: relative;
        overflow: hidden;
    }

    .catalog .image.swiper-slide img {
        position: absolute;
        object-fit: cover;
        top: 0;
        height: 100%;
    }

    .multi-results .multi-thumbnail {
        height: 100px;
        position: relative;
    }

    .multi-results .multi-thumbnail .multi-image {
        height: 100%;
        object-fit: cover;
    }
}

.catalog-header .container {
    padding: 0;
    max-width: 100vw;
}
