* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5
}

main {
    min-height: calc(100vh - 340px);
}
.hidden{
    display: none!important;
}

.search-results-bg{
    width: 100%;
    display: none;
    top: 50px;
    position: absolute;
    z-index: 1000;
}

.search-results{
    width: 300px;
    max-height: 237px;
    overflow-y: auto;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    background: #fff;
    border: 1px solid #eef0f4;
}

.search-results::-webkit-scrollbar {
    width: 3px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.search-results::-webkit-scrollbar-thumb {
    background: #b99a56;
}

.search-results__item {
    display: flex;
    align-items: center;
    padding: 9px 14px;
}

.search-results__item:not(:last-child){
    border-bottom: 1px solid #f2f2f4;
}

.search-results__img {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #f2f2f2;
}
.search-results_info{
    margin: 10px auto;
    color: #808687;
    font-weight: 400;
    font-size: 18px;
}
.search-results__link {
    display: flex;
    width: 100%;
    padding: 0 0 0 12px;
    text-decoration: none;
    font-weight: normal;
    font-size: 15px;
    text-align: left;
    color: #424344;
}

.notification-text {
    width: 210px;
    font-weight: normal;
    font-size: 16px;
    line-height: 30px;
    text-align: right;
    color: #000;
}
.container-notification>.notification {
    position: fixed;
    top: 20px;
    z-index: 99999999;
    right: 20px;
}

.header-behind-gape {
    padding: 180px 0 0;
}

header.sticky~main>.header-behind-gape {
    padding: 116px 0 0;
}

a {
    text-decoration: none;
}

button {
    outline: none;
    border: none;
    cursor: pointer;
    font-family: unset;
    background: transparent;
}

.img {
    width: 100%;
}

header {
    transition: .5s ease;
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    left: 0;
    background: #FFF;
    backdrop-filter: blur(7.5px);
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    -o-transition: .5s ease;
}

.sticky>.container {
    display: none;
}

.container {
    max-width: 1440px;
    margin: auto;
}

.header-logo-search {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    width: 187px;
    display: block;
    margin-right: 20px;
}

.header-feedback-info{
    display: flex;
    align-items: center;
}

.header-feedback{
    display: flex;
    flex-wrap: wrap;
}

.header-feedback-tel{
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    text-align: left;
    color: #808687;
}
.header-tel{
    display: flex;
}

.header-logo-tel{
    display: flex;
    align-items: center;
}

.header-feedback__link{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    padding: 4px;
    margin: 4px;
    background: #ffffff;
    border: 1px solid #f5f5f5;
    border-radius: 50%;
    box-shadow: 0px 2px 7px rgba(102, 101, 101, 0.21);
}

.header-search {
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: flex-end;
}

.header-search-form {
    display: flex;
    position: relative;
    max-width: 478px;
    width: 100%;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.header-search-form__input {
    width: 100%;
    outline: none;
    border: none;
    padding: 15px 16px;
    background: #F5F5F5;
}

.header-search-form__btn {
    width: 49px;
    height: 45px;
    background: #B99A56;
}

.favorite-icon,
.cart-icon{
    display: inline-block;
    margin: 0 0 0 30px;
    position: relative;
}

.favorite-icon{
    margin: 0 0 0 15px;
}

.favorite-count,
.cart-count {
    position: absolute;
    top: -8px;
    right: -22px;
    display: flex;
    color: #FFF;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    background: #B99A56;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    justify-content: center;
    align-items: center;
}

.cart-count{
    top: -11px;
}

.login-icon,
.registration-icon {
    display: flex;
    align-items: center;
    padding: 11px 10px;
    margin: 0 0 0 12px;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 23px;
    text-align: center;
    color: #B99A56;
    background: #ffffff;
    box-shadow: 0px 2px 7px rgba(102, 101, 101, 0.21);
}

.login-icon{
    background: #B99A56;
    color: #fff;
}

.zoom-effect{
    display: flex;
    align-items: center;
    transition: .4s ease;
    text-wrap: nowrap;
}

.login-icon:hover .zoom-effect,
.registration-icon:hover .zoom-effect,
.favorite-icon:hover .zoom-effect,
.cart-icon:hover .zoom-effect{
    transform: scale(1.1);
}

.login-icon>.zoom-effect>svg,
.registration-icon>.zoom-effect>svg{
    margin: 1px 4px 0 0;
}

.header-social-lang {
    padding: 10px 0;
    border-bottom: 1px solid #EDEDED;
    display: none;
    align-items: center;
    justify-content: space-between;
}

.header-social-icon {
    display: flex;
    flex-wrap: wrap;
}

.header-social-icon__link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    margin: 0 8px 0 0;
    width: 25px;
    height: 25px;
    border: 1px solid #B99A56;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.header-social-icon__link>img {
    filter: brightness(0) saturate(100%) invert(70%) sepia(61%) saturate(336%) hue-rotate(3deg) brightness(80%) contrast(84%);
    -webkit-filter: brightness(0) saturate(100%) invert(70%) sepia(61%) saturate(336%) hue-rotate(3deg) brightness(80%) contrast(84%);
}

.language-selcet {
    display: none;
    position: absolute;
    top: 48px;
    right: -2px;
    z-index: 5;
}

.language-group-btn, .language-selcet__link {
    display: block;
    border-radius: 100%;
    margin: 0 0 0 8px;
    width: 48px;
    height: 48px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.show {
    display: block !important;
}

.language-selcet__link {
    display: block;
    border: 1px solid #EDEDED;
    border-radius: 100%;
    margin: 0 0 0 8px;
    width: 25px;
    height: 25px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.language-active {
    border: 1px solid #B99A56;
}

.menu-burger,
.menu-burger-close {
    border-radius: 3px;
    width: 23px;
    height: 23px;
    margin-left: 19px;
    border: 1px solid #fff;
    align-items: center;
    justify-content: center;
    display: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.header-sticky {
    background: #B99A56;
}

.header-sticky>.container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-sticky__logo {
    margin: 12px 0;
    max-width: 138px;
    width: 100%;
    display: flex;
}

.header-sticky-icons {
    display: flex;
    align-items: center;
}

.header-sticky-search {
    position: relative;
}

.header-sticky-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 2px;
    border: 1px solid #FFF;
    background: #B99A56;
}

.close-icon {
    display: none;
}

.sticky-search-form {
    width: 300px;
    position: absolute;
    top: 55px;
    right: 0;
    display: none;
}

.header-sticky-icons>.favorite-icon {
    margin: 0 0 0 15px;
}

.header-sticky-icons>.favorite-icon>.favorite-count,
.header-sticky-icons>.cart-icon>.cart-count,
.header-sticky-icons>.login-icon{
    background: #fff;
    color: #B99A56;
}

.header-sticky-icons>.favorite-icon *,
.header-sticky-icons>.cart-icon *{
    fill: #fff;
}
.header-sticky-icons>.login-icon *{
    fill: #B99A56;
}

.header-sticky-icons .header-sticky-search,
.header-sticky-icons .login-icon,
.header-sticky-icons .favorite-icon,
.header-sticky-icons .cart-icon,
.header-sticky__logo,
.header-sticky-icons .language-group{
    display: none;
}

header.sticky .header-sticky-icons .header-sticky-search,
header.sticky .header-sticky-icons .login-icon,
header.sticky .header-sticky-icons .favorite-icon,
header.sticky .header-sticky-icons .cart-icon,
header.sticky .header-sticky__logo,
header.sticky .header-sticky-icons .language-group{
    display: flex;
}

.header-menu-position {
    position: relative;
}

.header-menu-position>.header-search-form {
    display: none;
}

.navigation{
    width: 60%;
}

header.sticky .header-sticky-icons,
header.sticky .header-sticky__logo {
    display: flex;
}

.header-menu {
    padding: 17px 0;
    display: flex;
    list-style-type: none;
    overflow: hidden;
    margin: 0 -18px;
}

.header-menu__item {
    padding: 0 18px 0;
    list-style-type: none;
}

.header-menu__item:not(:last-child) {
    border-right: 1px solid #ffffff1a;
}

.header-menu__link {
    white-space: nowrap;
    color: #FFF;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

header.sticky .header-menu{
    justify-content: center;
}

.dropdown-content {
    padding: 10px 0;
    max-height: 280px;
    width: 220px;
    overflow-y: auto;
    display: none;
    position: absolute;
    top: 58px;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.dropdown-content::-webkit-scrollbar {
    width: 4px;
}

.dropdown-content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px #B99A56;
}

.dropdown-content .header-menu__link {
    padding: 12px 8px;
    font-size: 13px;
    display: block;
    color: #B99A56;
}

.dropdown-btn {
    display: none;
    margin: 0 0 0 15px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.language-group{
    position: relative;
}

.header-sticky-icons .language-group-btn,
.header-sticky-icons .language-selcet__link{
    width: 36px;
    height: 36px;
}

.header-sticky-icons .language-group-btn,
.header-sticky-icons .language-selcet__link {
    display: block;
    border-radius: 100%;
    margin: 0 0 0 8px;
    width: 48px;
    height: 48px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.header-sticky-icons .language-selcet {
    display: none;
    position: absolute;
    top: 48px;
    right: -2px;
    z-index: 5;
}

.language-group-btn,
.language-selcet__link {
    display: block;
    border-radius: 100%;
    margin: 0 0 0 8px;
    width: 48px;
    height: 48px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.language-selcet__link{
    margin: 2px;
}
.show {
    display: block !important;
}

.category-click {
    cursor: pointer;
}

.category-menu-bg {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    background: #FFF;
    /*background: rgba(0, 0, 0, 0.50);*/
    height: 100vh;
}

.category-menu {
    overflow-y: auto;
    background: #FFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
    height: 100%;
}

.category-menu::-webkit-scrollbar {
    width: 6px;
}

.category-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.category-menu::-webkit-scrollbar-thumb {
    background: #B99A56;
}

.category-close {
    border: none;
    display: flex;
    margin: 18px 0 12px auto;
}

.category-items-img-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0 23px;
}

.category-items-img {
    width: 30%;
}

.category-row {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
}

.category-menu__item {
    width: 50%;
    padding: 0 15px 0 0;
    margin-bottom: 20px;
}

.category-sub-title {
    color: #B99A56;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 22px;
    display: block;
}

.category-child__item {
    display: flex;
    flex-direction: column;
    list-style-type: none;
}

.category-child__link {
    color: #636767;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 41px;
}

.category-child__link:hover {
    color: #B99A56;
    transition: .4s ease;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -ms-transition: .4s ease;
    -o-transition: .4s ease;
}

.cart-bg {
    display: none;
    width: 100vw;
    position: fixed;
    top: 180px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6;
    background: rgba(0, 0, 0, 0.43);
}

header.sticky~.cart-bg {
    top: 64px;
}

.cart-close-btn {
    display: block;
    margin: 3px 20px 0 auto;
    width: 27px;
    height: 27px;
    background: #F2F2F2;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.cart-block {
    max-width: 450px;
    margin: 0 0 0 auto;
    padding: 5px 0 13px 24px;
    background: #FFF;
    box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.25);
    height: 100%;
}

.cart-block-container {
    overflow-y: auto;
    height: calc(100% - 128px);
}

.cart-block-container::-webkit-scrollbar {
    width: 5px;
}

.cart-block-container::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.cart-block-container::-webkit-scrollbar-thumb {
    background: #B99A56;
    border-radius: 10px;
}

.cart-block-container__item {
    display: flex;
    /*flex-wrap: wrap;*/
    padding: 13px 0 13px;
    margin: 0 36px 0 0;
    border-bottom: 1px solid #F2F2F2;
}

.cart-img {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 110px;
    min-width: 110px;
    height: 110px;
    padding: 2px;
    margin: 0 10px 0 0;
}

.cart-img>img {
    height: 100%;
    object-fit: contain;
}

.cart-info__title {
    max-width: 265px;
    color: #626262;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -moz-box;
    display: -webkit-box;
    -moz-box-orient: vertical;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.small-basket-price{
    padding: 12px 0 10px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.cart-info-price {
    color: #B99A56;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    margin: 10px 10px 10px 0;
}

.cart-info-count {
    display: flex;

}

.cart-info-count>.product-add-count>.decrement-count,
.cart-info-count>.product-add-count>.increment-count {
    font-size: 20px;
    width: 31px;
    height: 31px;
}

.cart-info-count>.product-add-count>.count-value {
    width: 80px;
    height: 31px;
}

.cart-info-count>.product-favorite-btn,
.cart-info-count>.product-delete-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
}

.cart-info-count>.product-favorite-btn,
.cart-info-count>.product-delete-btn {
    width: 31px;
    height: 31px;
}

.product-delete-btn {
    border: 1px solid #B99A56;
}

.cart-block-footer {
    border-top: 1px solid #CAC7C1;
    padding: 15px 0 0 0;
    margin: 0 40px 0 0;
}

.cart-block-total {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 12px;
}

.cart-block-total__text {
    margin: 0 10px 0 0;
    color: #B99A56;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
}

.cart-block-total__price {
    color: #B99A56;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
}

.cart-block-order-btn {
    width: fit-content;
    display: block;
    margin: 0 0 0 auto;
    border-radius: 2px;
    border: 1px solid #7A7A7A;
    color: #000000;
    font-size: 15px;
    background: #FFF;
    padding: 7px 25px;
    transition: .4s ease;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -ms-transition: .4s ease;
    -o-transition: .4s ease;
}

.cart-block-order-btn:hover {
    border: 1px solid #B99A56;
    background: #B99A56;
    color: #fff;
}

footer {
    padding: 24px 0 37px;
    background: #FBFBFB;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer-row__item {
    width: 25%;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-row__item:last-child {
    text-align: right;
}

.footer-menu__item {
    list-style-type: none;
}

.footer-menu__link {
    color: #808687;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
}

.footer-menu__link:hover {
    color: #B99A56;
    transition: .4s ease;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -ms-transition: .4s ease;
    -o-transition: .4s ease;
}

.footer-menu__link:hover svg * {
    fill: #B99A56;
    transition: .4s ease;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -ms-transition: .4s ease;
    -o-transition: .4s ease;
}

.footer-menu__link>svg {
    margin: 0 0 0 11px;
}

.footer-info {
    padding: 30px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-info__text {
    color: #808687;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
}

.footer-logo {
    display: block;
    max-width: 300px;
}

.footer-payment-method{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 15px -2px 0;
}

.footer-payment-method__item{
    margin: 2px;
    height: 39px;
    padding: 9px;
    border: 1px solid #e8e6e6;
    border-radius: 5px;
    box-shadow: 0px 2px 7px rgba(102, 101, 101, 0.21);
}

.footer-payment-method__item>img{
    height: -webkit-fill-available;
}

.footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 15px 0 0;
}

.footer-social-icons__link {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #808687;
    border-radius: 100%;
    padding: 5px;
    width: 27px;
    height: 27px;
    margin: 0 0 5px 5px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.footer-social-icons__link>img {
    filter: brightness(0) saturate(100%) invert(54%) sepia(8%) saturate(182%) hue-rotate(141deg) brightness(95%) contrast(87%);
    -webkit-filter: brightness(0) saturate(100%) invert(54%) sepia(8%) saturate(182%) hue-rotate(141deg) brightness(95%) contrast(87%);
}

.show {
    display: block !important;
}

.hide {
    display: none !important;
}

.flex {
    display: flex !important;
}

.overflow-hidden {
    overflow-y: hidden !important;
}

.editor ul,
ol {
    padding: revert;
}

.menu-active,
.hover-color:hover {
    text-decoration: underline;
    text-underline-offset: 8px;
    transition: .4s ease;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -ms-transition: .4s ease;
    -o-transition: .4s ease;
}

.footer-active,
.gold-color-h:hover {
    color: #B99A56;
    transition: .4s ease;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -ms-transition: .4s ease;
    -o-transition: .4s ease;
}

.hover-bg:hover {
    background: #808687;
    transition: .4s ease;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -ms-transition: .4s ease;
    -o-transition: .4s ease;
}

.scale-hover {
    transition: .4s ease;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -ms-transition: .4s ease;
    -o-transition: .4s ease;
}

.scale-hover:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.footer-social-icons__link:hover {
    border-color: #B99A56;
    transition: .4s ease;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -ms-transition: .4s ease;
    -o-transition: .4s ease;
}

.footer-social-icons__link:hover img {
    filter: brightness(0) saturate(100%) invert(70%) sepia(61%) saturate(336%) hue-rotate(3deg) brightness(80%) contrast(84%);
}

.cart-no-products{
    text-align: center;
    font-size: 18px;
    color: #938f8f;
}

.not-in-stock>.notification-text{
    color: red;
    font-size: 16px;
    text-align: left;
}

.notification-modal{
    position: fixed;
    display: flex;
    align-items: center;
    width: 250px;
    padding: 12px;
    right: 15px;
    top: 20px;
    z-index: 1000;
    background: #FFFFFF;
    box-shadow: 0px 4px 14.2px rgba(88, 87, 87, 0.25);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.notification-modal-img{
    filter: brightness(0) saturate(100%) invert(70%) sepia(61%) saturate(336%) hue-rotate(3deg) brightness(70%) contrast(84%);
    -webkit-filter: brightness(0) saturate(100%) invert(70%) sepia(61%) saturate(336%) hue-rotate(3deg) brightness(70%) contrast(84%);
}

.notification-text-container{
    display: flex;
    flex-direction: column-reverse;
}

.notification-modal-text{
    padding: 0 15px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    color: #514f4b;
}

.main-social-icon{

}
.main-social-icon__link{
    position: fixed;
    right: 8px;
    bottom: 105%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    padding: 12px 8px;
    margin: 4px;
    background: #ffffff;
    border: 1px solid #f5f5f5;
    border-radius: 50%;
    box-shadow: 0px 2px 7px rgba(102, 101, 101, 0.21);
    transition: 1s ease;
}

.whatsapp-link.open-icon {
    bottom: 440px;
}
.telegram-link.open-icon {
    bottom: 380px;
}
.facebook-link.open-icon {
    bottom: 320px;
}
.viber-link.open-icon {
    bottom: 260px;
}
.instagram-link.open-icon {
    bottom: 200px;
}

.main-social-icon__link>span,
.header-feedback__link>span,
.footer-social-icons__link>span{
    animation: 2s linear 1s infinite normal  running es-chats-pulse;
}

@-webkit-keyframes es-chats-pulse {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes es-chats-pulse {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}



/* ------ RESPONSIVE ------ */

@media all and (max-width: 1500px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media all and (max-width: 1280px) {
    .header-sticky-icons .header-sticky-search,
    .header-sticky-icons .login-icon,
    .header-sticky-icons .favorite-icon,
    .header-sticky-icons .cart-icon,
    .header-sticky__logo {
        display: flex;
    }

    .favorite-icon svg,
    .cart-icon svg,
    .user-icon svg {
        width: 22px;
        height: auto;
    }

    .header-sticky-search-btn {
        width: 38px;
        height: 38px;
        display: none;
    }
    .header-sticky-search {
        display: none;
    }
    .header-behind-gape {
        padding: 110px 0 0;
    }

    .header-logo {
        max-width: 140px;
    }

    .header-logo-search {
        display: none;
    }

    .header-sticky-icons,
    .header-sticky__logo,
    .menu-burger,
    .header-sticky-icons .language-group{
        display: flex;
        justify-content: center;
    }

    .navigation {
        padding: 29px 54px;
        position: fixed;
        overflow-y: auto;
        top: 105px;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        height: calc(100vh - 64px);
        transform: translateX(0);
        -webkit-transform: translateX(130%);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transition: .4s ease;
        -webkit-transition: .4s ease;
        -moz-transition: .4s ease;
        -ms-transition: .4s ease;
        -o-transition: .4s ease;
        z-index: 6;
    }

    .navigation.open {
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
    }

    .navigation::-webkit-scrollbar {
        width: 5px;
    }

    .navigation::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
    }

    .navigation::-webkit-scrollbar-thumb {
        background: #B99A56;
    }

    header.sticky .navigation {
        top: 64px;
    }
    .favorite-count, .cart-count{
        right: -12px;
    }
    .header-menu-position>.header-search-form {
        display: flex;
        max-width: 330px;
        margin-bottom: 32px;
    }

    .header-menu {
        flex-direction: column;
        margin: 0;
        padding: 0;
    }

    .header-menu__item:not(:last-child) {
        border-right: none;
    }

    .header-menu__item {
        padding: 20px 0;
        border-bottom: 1px solid #A5A3A31A;
    }

    .header-menu__link {
        color: #585858;
        font-size: 21px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .category-menu {
        height: calc(100vh - 64px);
    }

    .category-menu__item {
        margin-bottom: 21px;
    }

    .category-sub-title {
        margin-bottom: 10px;
    }

    .cart-bg {
        top: 110px;
    }
    .login-icon, .registration-icon {
        display: flex;
        align-items: center;
        padding: 6px 10px;
    }
    .search-results{
        width: 290px;
    }
}

@media all and (max-width: 1024px) {
    .footer-logo {
        max-width: 250px;
    }

    .footer-row__item:first-child {
        width: 100%;
    }

    .footer-row__item {
        width: 33.333%;
    }

    .footer-info {
        padding: 20px 0 0;
    }
    .main-social-icon__link{
        width: 40px;
        height: 40px;
        right: 4px;
    }

    .whatsapp-link.open-icon {
        bottom: 380px;
    }

    .telegram-link.open-icon {
        bottom: 335px;
    }

    .facebook-link.open-icon {
        bottom: 290px;
    }

    .viber-link.open-icon {
        bottom: 245px;
    }

    .instagram-link.open-icon {
        bottom: 200px;
    }
}

@media all and (max-width: 767px) {
    .footer-row__item:first-child {
        width: 100%;
    }

    .navigation {
        top: 110px;
        padding: 28px 18px;
    }
    header.sticky~.cart-bg{
        top: 56px;
    }
    header.sticky .navigation {
        top: 56px;
    }

    .header-menu__item {
        padding: 16px 0;
    }

    .header-menu__link {
        font-size: 18px;
    }

    .category-row {
        width: 60%;
    }

    .category-items-img {
        width: 40%;
    }
    .category-menu::-webkit-scrollbar {
        width: 3px;
    }
    .category-menu__item {
        width: 100%;
    }
    .footer-row__item:last-child{
        text-align: left;
    }
    .footer-payment-method{
        justify-content: flex-start;
    }
    .footer-row__item{
        width: 50%;
    }
    .header-sticky__logo{
        max-width: 110px
    }
}

@media all and (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    .login-icon, .registration-icon {
        padding: 4px 4px;
    }
    .header-behind-gape {
        padding: 80px 0 0;
    }

    header.sticky~main>.header-behind-gape {
        padding: 95px 0 0;
    }

    .header-social-lang {
        padding: 4px 0;
    }

    .header-social-icon__link,
    .language-selcet__link {
        width: 19px;
        height: 19px;
    }

    .language-selcet__link {
        margin: 0 0 0 5px;
    }

    .language-group-btn, .language-selcet__link {
        width: 28px!important;
        height: 28px!important;
    }

    .header-social-icon__link {
        margin: 0 5px 0 0;
    }

    .header-logo {
        max-width: 130px;
    }

    .header-sticky__logo {
        margin: 6px 0;
        max-width: 100px;
    }

    .favorite-icon,
    .cart-icon,
    .user-icon {
        margin: 0 0 0 10px;
    }

    .favorite-icon svg,
    .cart-icon svg,
    .user-icon svg {
        width: 18px;
    }

    .favorite-count{
        top: -6px;
        right: -12px;
    }

    .cart-count {
        top: -8px;
        right: -12px;
    }

    .menu-burger,
    .menu-burger-close {
        margin-left: 18px;
    }

    .language-group__btn {
        border: none;
        margin: 0;
        padding: 0 8px 0 8px;
    }

    .menu-burger>svg,
    .menu-burger-close>svg {
        width: 17px;
    }

    .navigation {
        top: 80px;
    }

    header.sticky .navigation {
        top: 41px;
        left: 0;
        right: 0;
        height: calc(100vh - 41px);
    }
    .login-icon,
    .registration-icon,
    .header-sticky-icons>.login-icon,
    .header-sticky-icons>.registration-icon{
        background: transparent;
        box-shadow: unset;
    }
    .login-icon>.zoom-effect>svg *,
    .registration-icon>.zoom-effect>svg *,
    .header-sticky-icons>.login-icon *,
    .header-sticky-icons>.registration-icon *{
        fill: #fff;
    }
    .registration-icon{
        margin: 0 0 0 5px;
    }
    .header-sticky-icons>.favorite-icon{
        margin: 0 0 0 10px;
    }
    .login-icon{
        margin: 0;
    }
    .category-menu {
        padding: 12px 0;
    }

    .category-close {
        margin: 12px 0 22px auto;
    }

    .category-menu__item {
        margin-bottom: 21px;
    }

    .category-sub-title {
        font-size: 20px;
    }

    .header-menu__item {
        padding: 6px 0;
    }

    .category-menu {
        height: calc(100vh - 44px);
    }

    .category-row {
        width: 100%;
    }

    .category-items-img {
        width: 60%;
    }

    .cart-bg {
        top: 80px;
    }

    header.sticky~.cart-bg {
        top: 40px;
    }

    .cart-block {
        max-width: 100%;
        padding: 5px 0 15px 15px;
    }

    .cart-block-container {
        height: calc(100% - 120px);
    }

    .cart-block-container__item {
        margin: 0 17px 0 0;
    }

    .cart-block-footer {
        margin: 0 22px 0 0;
    }

    .cart-close-btn {
        width: 22px;
        height: 22px;
    }

    .cart-close-btn>svg {
        width: 10px;
        height: 10px;
    }

    footer {
        padding: 23px 0 19px;
    }

    .footer-logo {
        max-width: 230px;
    }

    .footer-row__item {
        width: 100%;
        margin-bottom: 25px;
    }

    .footer-info {
        padding: 0;
    }

    .footer-row__item:last-child {
        text-align: left;
    }

    .footer-social-icons {
        justify-content: flex-start;
    }

    .footer-social-icons__link {
        margin: 0 5px 5px 0;
    }

    .category-menu::-webkit-scrollbar,
    .navigation::-webkit-scrollbar {
        width: 3px;
    }
    .header-feedback-tel,
    .login-icon,
    .registration-icon{
        font-size: 0;
    }
    .login-icon>.zoom-effect>svg,
    .registration-icon>.zoom-effect>svg{
        margin: 0
    }
    /*.search-results{*/
    /*    width: 280px;*/
    /*}*/
    .search-results__img {
        width: 40px !important;
    }
}

@media all and (max-width: 420px) {
    .whatsapp-link.open-icon {
        bottom: 280px;
    }

    .telegram-link.open-icon {
        bottom: 235px;
    }

    .facebook-link.open-icon {
        bottom: 190px;
    }

    .viber-link.open-icon {
        bottom: 145px;
    }

    .instagram-link.open-icon {
        bottom: 100px;
    }
    .header-sticky-icons>.favorite-icon {
        margin: 0 0 0 10px;
    }
    .login-icon>.zoom-effect>svg,
    .registration-icon>.zoom-effect>svg{
        width: 18px;
    }
    .login-icon, .registration-icon {
        margin: 0 0 0 0px;
        padding: 2px 4px;
    }
}

