﻿:root {
    --cl-main: #FDB813;
    --cl-menu: #FFC10D;
    --cl-text: #333;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #FDB813;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: #FDB813;
}

body {
    font-family: 'Mulish';
    font-size: 16px;
}

section {
    position: relative;
}

p:last-child {
    margin-bottom: 0;
}

.w-full {
    width: 100%;
}

.gutter-0 {
    margin-left: 0px;
    margin-right: 0px;
}

.gutter-0>* {
    padding-left: 0px;
    padding-right: 0px;
}

.gutter-20 {
    margin-left: -10px;
    margin-right: -10px;
}

.gutter-20>* {
    padding-left: 10px;
    padding-right: 10px;
}

.gutter-10 {
    margin-left: -5px;
    margin-right: -5px;
}

.gutter-10>* {
    padding-left: 5px;
    padding-right: 5px;
}

.loading {
    pointer-events: none;
    position: relative;
}

.loading::before {
    content: '';
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 40px;
    height: 40px;
    background: url('../../images/upgrade/loading.svg') center no-repeat;
    background-size: contain;
}

a:focus,
a:hover {
    color: var(--cl-main);
}

.cl-main {
    color: var(--cl-main);
}

.cl-second {
    color: var(--cl-second);
}

.cl-text {
    color: var(--cl-text);
}

.cl-000 {
    color: #000;
}

.cl-white {
    color: #fff;
}

.cl-999 {
    color: #999;
}

.cl-666 {
    color: #666;
}

.featured_image {
    height: 0;
    overflow: hidden;
    position: relative;
    padding-bottom: 71.21%;
}

@media screen and (min-width: 1440px) {
    .container {
        max-width: 1410px;
    }
}

.relative {
    position: relative;
}

.container,
.group_content {
    position: relative;
    z-index: 50;
}

.header-wrapper {
    position: relative;
    z-index: 9999;
}

.header-wrapper.fixedHeader {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 2023;
    top: 0;
    background: #fff;
    transition: .2s all ease-in-out;
    transform: translateY(-100%);
}

.admin-bar .header-wrapper.fixedHeader {
    top: 32px;
}

.header-wrapper.fixedHeader.toTop {
    transform: translateY(0);
    box-shadow: 0 0 5px rgb(0 0 0 / 48%);
}

.site-header {
    background-color: #fff;
    border-bottom: 1px solid #E5E5E5;
}

.header-item {
    display: flex;
    align-items: center;
}

.header-item-logo {
    flex-shrink: 0;
    padding: 13px 18px 11px 23px;
}

.header-item {
    border-left: 1px solid #E5E5E5;
}

.header-item-form-search {
    padding: 10px;
    flex: 1;
    width: 100%;
}

.header-item-form-search .search-form {
    position: relative;
    padding-right: 60px;
    padding-left: 30px;
    width: 100%;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.search-form input[type="search"] {
    width: 100%;
    display: block;
    border: unset;
    padding: 10px 0;
    color: var(--cl-text);
    font-size: 16px;
    line-height: 20px;
}

.search-form input[type="search"]::placeholder {
    color: #807F84;
}

button.search-submit {
    border: unset;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background: var(--cl-menu);
    border-radius: 5px;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-item-link {
    position: relative;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: #5E5E5E;
}

.header-item-link::after {
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    background-color: var(--cl-main);
    opacity: 0;
}

.header-item-link:hover::after {
    opacity: 1;
}

.header-item-link .icon {
    height: 30px;
}

.header-item-link .label {
    margin-top: 5px;
    text-align: center;
}

.header-item-link:not(.noHover).current,
.header-item-link:not(.noHover):hover {
    color: var(--cl-main);
}

.header-item-link:not(.noHover).current svg path,
.header-item-link:not(.noHover):hover svg path {
    fill: var(--cl-main) !important;
}

.header-item-cart {
    background-color: var(--cl-main);
    border-color: var(--cl-main);
}

.header-item-cart .label {
    color: #474747;
}

.header-item-cart .icon {
    position: relative;
}

.count-cart {
    border-radius: 50%;
    font-weight: 800;
    font-size: 11px;
    line-height: 19px;
    display: block;
    width: 19px;
    height: 19px;
    background: #474747;
    position: absolute;
    color: var(--cl-main);
    right: -12px;
    top: -7px;
    text-align: center;
}

.header-menu {
    background: #F5F5F5;
}

@media screen and (min-width: 1200px) {
    .mega-menu-wrap .max-mega-menu {
        display: flex !important;
        justify-content: space-between !important;
    }

    .mega-menu-wrap .max-mega-menu>li {
        margin: 0 !important;
    }

    .mega-menu-wrap .max-mega-menu>li.mega-menu-item:last-child {
        margin-right: 0 !important;
    }

    .mega-menu-wrap .max-mega-menu>li.mega-menu-item>a.mega-menu-link {
        font-weight: 500 !important;
    }
}

.mega-indicator {
    display: none !important;
}

.mega-menu-item-type-widget.widget_media_image .mega-block-title {
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 23px !important;
    color: #333333 !important;
    margin-top: 13px !important;
}

.swiper-button {
    background: rgb(236 229 223 / 80%);
    border-radius: 5px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s all ease-in-out;
}

.swiper-button:hover {
    background: var(--cl-main);
}

.swiper-button::before {
    content: '';
    display: block;
    width: 22px;
    height: 15px;
    background: url('../../images/upgrade/arrow-swiper.svg') center no-repeat;
    background-size: contain;
}

.swiper-button-prev::before {
    transform: scaleX(-1);
}

.swiper-button:after {
    display: none;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    margin: 0 10px !important;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-button-prev {
    left: 28px;
}

.swiper-button-next {
    right: 28px;
}

.group-title .swiper-button {
    position: static;
    margin: 0;
}

.group-title .swiper-button-next {
    margin-left: 7px;
}

.group-title .link {
    margin-left: 14px;
}

.product_item .inner {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    transition: .2s all ease-in-out;
}

.product_item .inner:hover {
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
}

.product_item .inner .name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product_item .inner .name a {
    transition: .2s all ease-in-out;
}

.product_item .inner:hover .name a {
    color: var(--cl-main);
}

.product_item .featured_image {
    background: #FAFAFA;
    border-radius: 8px;
}

.product_item .featured_image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product_item .box_content {
    padding: 20px;
}

.product_item .price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product_item .price ins {
    float: left;
    display: inline-block;
    margin-right: 20px;
    text-decoration: initial;
}

.product_item .price del {
    font-size: 15px;
    color: #8C8C8C;
    text-decoration-line: line-through;
}

.product_item .box-bottom {
    border-top: 1px solid #D7D7D7;
    border-bottom: 1px solid #D7D7D7;
}

.product_item .left {
    max-width: 70px;
    max-height: 50px;
}

.product_item .left img {
    max-height: 50px;
    object-fit: contain;
}

.product_item .right {
    margin-left: auto;
}

body .product_item .right>* {
    position: relative;
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
    padding: 0;
    padding-right: 38px;
    background: transparent !important;
    color: #333333;
}

.product_item .right>*::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background: url('../../images/upgrade/plus-product.svg') center no-repeat;
    background-size: contain;
    transition: .2s all ease-in-out;
}

.product_item .right>*:hover {
    color: var(--cl-main) !important;
}

.product_item .right>*:hover::after {
    transform: translateY(-50%) rotate(90deg);
}

.product_item .right>*+* {
    border-top: 1px dashed rgba(215, 215, 215, 0.6);
}

.product_item .tags-product {
    position: absolute;
    top: 17px;
    left: 25px;
    z-index: 20;
}

.tags-product .item-tag+.item-tag {
    margin-left: 6px;
}

.tags-product .new {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    background: var(--cl-main);
    border-radius: 3px;
    padding: 0 10px;
}

.tags-product .per_sale {
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    color: #FFFFFF;
    background: #696D6C;
    border-radius: 3px;
    padding: 0 3px;
}

.group-title .right {
    margin-left: auto;
}

.title-has-line-left {
    position: relative;
    padding-left: 65px;
}

.title-has-line-left::before {
    content: '';
    display: block;
    width: 41px;
    height: 1px;
    background-color: #666;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.link a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #ECE5DF;
    border-radius: 5px;
    height: 50px;
    padding: 0 28px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.15em;
    color: #696D6C;
    transition: .2s all ease-in-out;
}

.link a:hover {
    color: #333;
    background-color: var(--cl-main);
}

.link-arrow a::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 15px;
    background: url('../../images/upgrade/arrow-swiper.svg') center no-repeat;
    background-size: contain;
    margin-left: 20px;
}

.link-arrow a:hover::after {
    filter: brightness(0);
}

.link-active a {
    color: #333;
    background-color: var(--cl-main);
}

.link-active a::after {
    filter: brightness(0);
}

.link-active a:hover {
    transform: scale(1.05);
}

.wrap-nav_ajax {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.wrap-nav_ajax .item-nav_ajax {
    position: relative;
    margin: 0 22px;
}

.wrap-nav_ajax .item-nav_ajax+.item-nav_ajax::before {
    content: '';
    display: block;
    height: 16px;
    width: 1px;
    background-color: rgba(94, 94, 94, 0.5);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -23px;
}

.wrap-nav_ajax .item-nav_ajax a {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: #333333;
}

.wrap-nav_ajax .item-nav_ajax a:hover,
.wrap-nav_ajax .item-nav_ajax a.active {
    text-decoration-line: underline;
    color: var(--cl-main);
}

.product-combo-first {
    background: #F7F4EF;
}

.product-combo-first .box_content {
    padding: 85px 85px 25px;
}

.product-combo-first .featured_image {
    height: 100%;
    padding-bottom: 0;
}

.product-combo-first .name {
    max-width: 370px;
}

.product-combo-first .excerpt {
    min-height: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
}

.product-combo-first .big-price {
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    padding-bottom: 26px;
}

.product-combo-first .big-price ins {
    float: left;
    display: inline-block;
    margin-right: 35px;
    text-decoration: initial;
}

.product-combo-first .big-price del {
    font-size: 20px;
    color: #8C8C8C;
    text-decoration-line: line-through;
}

.product-combo-first .box-bottom {
    border-top: 1px solid #D7D7D7;
    padding-top: 26px;
}

.product-combo-first .box-bottom>* {
    display: inline-block;
    position: relative;
    font-size: 14px;
    line-height: 18px;
    padding-right: 36px;
}

.product-combo-first .box-bottom>*::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background: url(../../images/upgrade/plus-product.svg) center no-repeat;
    background-size: contain;
    transition: .2s all ease-in-out;
}

.product-combo-first .box-bottom>*:hover {
    color: var(--cl-main);
}

.product-combo-first .box-bottom>*:hover::after {
    transform: translateY(-50%) rotate(90deg);
}

.product-combo-first .wrap:hover .img-background {
    transform: scale(1.1);
}

.product-combo-first .name a {
    color: inherit;
}

.product-combo-first .wrap:hover .name {
    color: var(--cl-main);
}

.combo .featured_image {
    padding-bottom: 133.73%;
}

.combo .tags-product {
    position: absolute;
    top: 26px;
    left: 34px;
    z-index: 20;
}

.combo .item-tag+.item-tag {
    margin-left: 5px;
}

.combo .per_sale {
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    color: #FFFFFF;
    background: #696D6C;
    border-radius: 3px;
    padding: 0 3px;
}

.combo .box_content {
    position: absolute;
    z-index: 30;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 34px;
    padding-right: 10px;
}

.combo .box_content::before {
    content: '';
    display: block;
    width: 100%;
    height: 188px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: -1;
}

.combo .combo-price {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: var(--cl-main);
}

.combo .name a {
    color: inherit;
}

.combo .combo-price ins {
    float: left;
    display: inline-block;
    margin-right: 25px;
    text-decoration: initial;
}

.combo .combo-price del {
    font-size: 15px;
    color: #fff;
    text-decoration-line: line-through;
}

.combo .inner:hover .img-background {
    transform: scale(1.1);
}

.wrap_ajax.loading .ajax_content {
    opacity: .5;
}

.news-first .featured_image {
    padding-bottom: 0;
    height: 610px;
}

.news-first .inner:hover .featured_image img {
    transform: scale(1.1);
}

.news-first .box_content {
    z-index: 100;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(253 184 19 / 92%);
    padding: 40px 38px 30px 50px;
    z-index: 110;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.news-first .name {
    max-width: 270px;
    padding-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.news-first .cate a:hover,
.news-first .name a:hover {
    color: #000;
}

.news-first .box-bottom .right {
    margin-left: auto;
}

.news .name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.news {
    background: #F5F5F5;
}

.news .featured_image {
    padding-bottom: 0;
    height: 305px;
}

.news .inner:hover .featured_image img {
    transform: scale(1.1);
}

.news .box_content {
    padding: 40px 40px 35px 50px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.news .box-bottom .right {
    margin-left: auto;
}

.footer_brands {
    background-color: #fff;
    border-top: 1px solid #D7D7D7;
    border-bottom: 1px solid #D7D7D7;
    padding: 20px 0;
}

.footer_brands .img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.footer_brands .img img {
    object-fit: contain;
    max-height: 80px;
    width: auto;
    max-width: 90%;
    filter: grayscale(1);
}

.footer_brands .img:hover img {
    filter: grayscale(0);
}

.footer-new .site-logo img {
    width: 238px;
    max-width: 100%;
}

.footer-new [class*="col-"] {
    padding-top: 35px;
    padding-bottom: 35px;
}

.footer-form {
    position: relative;
}

.footer-form p {
    margin-bottom: 0;
    flex: 1;
}

.footer-form .wpcf7-form {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    background: #FFFFFF;
    border-radius: 5px;
}

.footer-form .wpcf7-form-control-wrap {
    display: block;
}

.footer-form .wpcf7-submit {
    flex-shrink: 0;
}

.footer-form input {
    display: block;
    width: 100%;
    line-height: 50px;
    padding: 0 25px;
    color: #000;
    font-weight: 600;
    font-size: inherit;
    border-radius: 5px 0 0 5px;
    border: unset;
}

.footer-form input::placeholder {
    font-style: normal;
    color: #6B6A68;
}

.footer-form [type="submit"] {
    position: relative;
    background: var(--cl-main);
    border-radius: 0px 5px 5px 0px;
    font-weight: 600;
    font-size: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding: 0 25px;
    border: unset;
}

.footer-form [type="submit"]::after {
    background: url('../../images/upgrade/arrow_submit.svg') center no-repeat;
    background-size: contain;
    width: 20px;
    height: 14px;
    content: '';
    display: block;
    margin-left: 16px;
}

.footer-form .wpcf7 .ajax-loader {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}

.footer-form .wpcf7 form .wpcf7-response-output {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin: 5px 0 0;
}

.footer-form .wpcf7-not-valid-tip {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
}

.footer-form .wpcf7-not-valid-tip,
.footer-form .wpcf7 form .wpcf7-response-output {
    font-size: 80%;
}

.site-footer {
    background: #F7F4EF;
}

.site-footer .footer-new .center {
    padding-right: 90px;
}

.site-footer .footer-new .center::after {
    content: '';
    display: block;
    background-color: #E3E1E0;
    position: absolute;
    top: 0;
    right: 30px;
    height: 100%;
    width: 1px;
}

.site-footer .socials li {
    background: #FFFFFF;
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-right: 10px;
    transition: .2s all ease-in-out;
}

.site-footer .socials li:hover {
    background-color: var(--cl-main);
}

.footer-menu {
    line-height: 25px;
}

.footer-top {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}

.footer-top .content a,
.footer-top .content {
    color: #5E5E5E;
}


.copy-right a:hover,
.footer-top .content a:hover {
    color: var(--cl-main);
}

.footer-top .title {
    color: #333;
}

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

.method_checkout li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #E0DFDD;
    border-radius: 8px;
    height: 33px;
    padding: 0 7px;
    margin-right: 5px;
}

.copy-right {
    border-top: 1px solid #D7D7D7;
    padding-top: 16px;
    padding-bottom: 16px;
}

.copy-right,
.copy-right a {
    color: #989491;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
}

.copy-right .footer-menu li {
    display: inline-block;
    position: relative;
    margin-left: 30px;
}

.copy-right .footer-menu li+li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
    background-color: #989491;
}

.btt {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 100px;
    right: 180px;
    width: 60px;
    height: 60px;
    z-index: 500;
    transition: .2s all ease-in-out;
    background-color: #fff;
}

.btt:hover {
    background-color: var(--cl-main);
}

@media screen and (max-width: 1500px) {
    .product_item .price {
        font-size: 16px;
    }

    .product_item .price del {
        font-size: 13px;
    }

    body .product_item .right>* {
        font-size: 12px;
    }

    .product_item .left {
        max-width: 50px;
    }

    body .product_item .right>* {
        padding-right: 23px;
    }
}

@media screen and (max-width: 1199px) {
    .p-top-60 {
        padding-top: 40px;
    }

    .p-bottom-60 {
        padding-bottom: 40px;
    }

    .m-top-40 {
        margin-top: 30px;
    }

    .m-bottom-40 {
        margin-bottom: 30px;
    }

    .m-top-50 {
        margin-top: 40px;
    }

    .m-bottom-50 {
        margin-bottom: 40px;
    }

    .p-top-50 {
        padding-top: 40px;
    }

    .p-bottom-50 {
        padding-bottom: 40px;
    }

    .footer {
        padding-bottom: 70px;
    }

    .site-footer .footer-new .center {
        padding-right: 50px;
    }

    .site-footer .footer-new .center::after {
        right: 15px;
    }

    .wrap-fixed-bottom {
        position: fixed;
        z-index: 2022;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 0 6px 2px rgb(105 109 108 / 34%);
        bottom: 0;
        left: 0;
    }

    .wrap-fixed-bottom .header-item-link {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .wrap-fixed-bottom .header-items {
        justify-content: center;
    }

    .mega-indicator {
        display: inline !important;
    }

    .product-combo-first .excerpt {
        display: none;
    }

    .news .featured_image {
        height: 250px;
    }

    .group-title .right {
        margin-top: 5px;
        margin-left: 0;
        width: 100%;
    }

    .group-title .link {
        margin-left: auto;
    }

    .combo .box_content {
        padding: 10px;
    }

    .combo .tags-product {
        top: 10px;
        left: 15px;
    }

    .product-combo-first .big-price {
        font-size: 25px;
        padding-bottom: 10px;
    }

    .product-combo-first .box-bottom {
        padding-top: 10px;
    }

    .product-combo-first .big-price ins {
        margin-right: 15px;
    }

    .fz-20 {
        font-size: 16px;
    }

    .fz-25 {
        font-size: 20px;
    }

    .combo .featured_image {
        padding-bottom: 56.25%;
    }

    .m-top-70 {
        margin-top: 40px;
    }

    .m-bottom-70 {
        margin-bottom: 40px;
    }

    .header-item-form-search {
        flex: unset;
        max-width: 300px;
        margin-left: auto;
    }

    .wrap-nav_ajax .item-nav_ajax {
        position: relative;
        margin: 0 10px;
    }

    .wrap-nav_ajax .item-nav_ajax+.item-nav_ajax::before {
        left: -10px;
    }

    .wrap-nav_ajax .item-nav_ajax a {
        font-size: 16px;
    }

    .title-has-line-left {
        padding-left: 45px;
    }

    .title-has-line-left::before {
        width: 30px;
    }

    .header-item-logo {
        border-left: unset;
    }

    .header-menu {
        background: transparent;
        margin-left: 40px;
        display: flex;
        align-items: center;
    }

    #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
        margin: 0;
    }

    .btt {
        bottom: 30px;
        right: 30px;
        width: 40px;
        height: 40px;
    }

    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item {
        margin-right: 0;
    }

    #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open+#mega-menu-primary {
        margin-top: 10px;
    }

    .fz-35 {
        font-size: 30px;
    }

    .link a {
        height: 40px;
        font-size: 11px;
    }

    .swiper-button {
        width: 40px;
        height: 40px;
    }

    .link-arrow a::after {
        margin-left: 10px;
    }
}

@media screen and (max-width: 991px) {
    .product_item .box_content {
        padding: 10px;
    }

    .product_item .tags-product {
        top: 15px;
        left: 6px;
    }

    .product_item .inner .name {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .product_item .price {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .product_item .price del {
        font-size: 11px;
    }

    .product_item .price ins {
        margin-right: 13px;
    }
    .product_item .left {
        width: 30px;
        height: 30px;
    }

    .product_item .left img{
        max-height: 30px;
    }
    
    .product_item .right {
        margin-left: 30px;
        flex: 1;
    }

    body .product_item .right>* {
        font-size: 10px;
        line-height: 24px;
    }

    .product_item .right>*::after {
        width: 10px;
        height: 10px;
    }

    .p-top-70 {
        padding-top: 50px;
    }

    .p-bottom-70 {
        padding-bottom: 50px;
    }

    .fz-35 {
        font-size: 24px;
    }

    .footer-new [class*="col-"].left {
        padding-top: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #E3E1E0;
    }

    .footer-top {
        padding-top: 30px;
        border-top: 1px solid #E3E1E0;
    }
}

@media screen and (max-width: 767px) {
    .product_item .box_content {
        padding: 10px 0;
    }

    .product_item .tags-product {
        top: 8px;
        left: 6px;
    }

    .product_item .price del {
        font-size: 9px;
    }

    .product_item .price ins {
        margin-right: 10px;
    }

    .product_item .inner .name {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .product_item .price {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .product_item .left {
        display: none;
    }

    .product_item .right {
        margin-left: 0;
        width: 100%;
    }

    body .product_item .right>* {
        font-size: 10px;
        line-height: 24px;
    }

    .product_item .right>*::after {
        width: 10px;
        height: 10px;
    }

    .header-wrapper.fixedHeader .header-item-logo {
        display: none;
    }

    .banner_shop .group_content {
        padding: 30px 0 0;
    }

    .btt {
        bottom: 90px;
        right: 20px;
    }

    .fz-14 {
        font-size: 13px;
    }

    .footer-top [class*="col-"] .content {
        padding-bottom: 20px;
    }

    .wrap-fixed-bottom .header-item-link:nth-child(2),
    .wrap-fixed-bottom .header-item-link:nth-child(1) {
        display: none;
    }

    .wrap-fixed-bottom .header-item {
        border: unset;
        flex: 1;
    }

    .wrap-fixed-bottom .header-item-link {
        padding: 10px 5px;
    }

    .wrap-fixed-bottom .header-item-link .label {
        font-size: 8px;
        margin-top: 0;
    }

    .title-has-line-left {
        padding-left: 30px;
    }

    .title-has-line-left::before {
        width: 20px;
    }

    .footer-new [class*="col-"] {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .copy-right,
    .copy-right .text-right {
        text-align: center !important;
    }

    .mega-menu-wrap .max-mega-menu li.mega-menu-item.mega-menu-megamenu>ul.mega-sub-menu>li>ul.mega-sub-menu>li:not(:last-child) {
        border-right: unset !important;
    }

    body .mega-menu-wrap .max-mega-menu>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link,
    body .mega-menu-wrap .max-mega-menu>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item>a.mega-menu-link {
        font-size: 13px !important;
    }

    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link,
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-megamenu>ul.mega-sub-menu li.mega-menu-column>ul.mega-sub-menu>li.mega-menu-item li.mega-menu-item>a.mega-menu-link {
        font-size: 12px !important;
    }

    .site-footer .footer-new .center {
        margin-top: 10px;
        padding-right: 15px;
        border-top: 1px solid #E3E1E0;
    }

    .site-footer .footer-new .center::after {
        display: none;
    }

    .footer-new [class*="col-"].left {
        padding-bottom: 0;
        border-bottom: unset;
    }

    .footer-form .wpcf7 .ajax-loader {
        left: unset;
        right: 0;
    }

    .news .box_content {
        padding: 20px;
    }

    .news .box_content .cate {
        margin-bottom: 5px;
    }

    .news .box_content .name {
        margin-bottom: 10px;
    }

    .news .box-bottom .right svg {
        width: 30px;
        height: auto;
    }

    .p-top-90 {
        padding-top: 50px;
    }

    .p-bottom-90 {
        padding-bottom: 50px;
    }

    .fz-18 {
        font-size: 15px;
    }

    .header-item-logo {
        width: 100%;
        padding: 10px 0 0;
        flex-shrink: unset;
        justify-content: center;
    }

    .group-title .right {
        margin-top: 15px;
    }

    .header-item-form-search {
        margin-left: 0;
        max-width: unset;
        flex: 1;
        border-left: unset;
        background: transparent;
    }

    button.search-submit {
        width: 30px;
        height: 30px;
    }

    button.search-submit svg {
        max-width: 10px;
    }

    .header-item-form-search .search-form {
        padding-left: 0;
        padding-right: 40px;
    }

    .swiper-button::before {
        width: 15px;
    }

    .header-menu {
        margin-left: 10px;
    }
}