@charset "utf-8";

:root {
     --orange: #ff5226;
     --grey-text-color: #8a8784;
}
body {
    font-family: 'Yandex Sans Text';
    font-weight: normal;
    overflow-x: hidden;
    color: #000;
    background-color: #f2f6f9;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    text-rendering: optimizeSpeed;
    min-width: 320px;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
}
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
/* bc */
.bread-line {
    padding: 40px 0 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}
.breadcrumb {
    position: relative;
    background: transparent;
    margin: 0;
    padding: 0;
    font-weight: 300;
    font-size: 12px;
    line-height: 140%;
    color: #a7a7a7;
    margin-bottom: 20px;
}
.breadcrumb li {
    list-style: none;
    display: inline-block;
    vertical-align: middle;
}
.breadcrumb li:after {
    content: ' - ';
    font-size: 12px;
    display: inline-block;
    margin: 0 8px 0 10px;
    color: #a7a7a7;
}
.breadcrumb li a {
    color: #a7a7a7;
    font-size: 12px;
    line-height: 20px;
}
.breadcrumb li:last-child:after {
    content: none;
}
.breadcrumb > li + li:before {
    content: none;
}

/* .bc */
/*
.is-scroll header {
    top: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}
.is-scroll header .main-header {
    display: none;
}
.is-scroll {
    padding-top: 192px;
}
*/
.top-menu {
    background: #1e1e1e;
}
.top-menu__in {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-menu__list {
    display: flex;
    gap: 40px;
}
.top-menu__list a {
    color: #ccc;
    font-size: 14px;
}
.top-menu__phone a {
    color: #fff;
    gap: 6px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}
header {
    position: relative;
    z-index: 12;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.header__in {
    height: 95px;
    align-items: center;
    display: flex;
}
.header__search {
    flex: 1;
    margin-left: 22px;
}
.header__search input {
    outline: none;
    box-shadow: none;
    height: 44px;
    font-size: 16px;
    border: 1px solid var(--orange);
    background: #fff;
    width: 100%;
    padding: 0 60px 0 20px;
    border-radius: 7px;
}
.search {
    position: relative;
}
.header__item_avatar img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}
.search button {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
    border: none;
    width: 90px;
    height: 44px;
    border-radius: 0 7px 7px 0;
    color: #fff;
    background: var(--orange);
}
.header__btns {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-item__icon {
    text-align: center;
    position: relative;
}
.header-item__icon svg {
    margin: 0 auto;
    display: block;
}
.header-item__icon .header-item__count {
    color: #fff;
    font-size: 11px;
    position: absolute;
    top: -13px;
    right: -15px;
    border-radius: 9px;
    width: 18px;
    height: 18px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__fav a,
.header__viewed a {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header-item__icon {
    margin-bottom: 10px;
}
.header__cart .header-item__icon {
    margin-bottom: 0;
}
.header__cart .header-cart__title {
    margin-bottom: 5px;
    font-size: 13px;
    line-height: 100%;
    color: #222;
    opacity: 0.8;
}
.header__cart .header-cart__total {
    font-weight: 500;
    font-size: 13px;
    line-height: 100%;
    color: #222;
}
.header__cart a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header__cart .header-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    width: 48px;
    height: 48px;
    box-shadow: 0 2px 15px 0 rgba(32, 31, 36, 0.1);
    background: #fff;
}
.header-item__title {
    font-weight: 500;
    font-size: 13px;
    line-height: 100%;
    color: #222;
    text-align: center;
}
.header__cart .header-item__count {
    top: -5px;
    right: -8px;
}
.btn {
    display: inline-block;
    outline: none;
    box-shadow: none;
    border: none;
    white-space: nowrap;
    text-align: center;
    height: 52px;
    line-height: 52px;
    font-weight: normal;
    background-color: var(--orange);
    padding: 0 20px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    transition: .4s;
    border-radius: 6px;
}
.btn:hover,
.btn:focus,
.btn:active {
    background: #9a2718;
    color: #fff;
    transition: .4s;
}
.header__nav {
    position: relative;
    z-index: 11;
    background: #fff;
    box-shadow: 0 12px 41px 0 rgba(0, 0, 0, 0.05);
}
.header-nav__content {
    height: 62px;
    display: flex;
    align-items: center;
}
.header__city {
    display: flex;
    align-items: center;
    gap: 5px;
}
.header__city svg {
    flex-shrink: 0;
}
.header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 40px;
}
.header__list > li {
    position: relative;
}
.header__list > li > a {
    display: inline-block;
    font-size: 16px;
    line-height: 62px;
    color: #000;
    transition: .4s;
}
.header__list > li > a:hover {
    color: gray;
    transition: .4s;
}
.header__list > .menu-item-has-children {
    position: relative;
}
footer {
    background: #fff;
    padding: 50px 0;
    color: #000;
}
.swiper-nav__wrapper {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100%;
}
.cat-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    gap: 8px;
    background: #F0F2F6;
    border-radius: 2px;
    min-height: 70px;
    padding: 10px;
}
.cat-item__img {
    flex-shrink: 0;
    margin-right: 18px;
}
.cat-item__ico {
    flex-shrink: 0;
}
.cat-item__ico img {
    width: 40px;
}
/*
.cats a {
    display: block;
    height: 100%;
    border: 1px solid #e600025c;
    padding: 16px 24px;
}
.cats .row.auto-h .col-3 {
    margin-bottom: 16px;
}
*/
.cat-item__title {
    font-weight: 500;
    font-size: 15px;
    color: #000;
}
.cat-ts-item__img img {
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
    object-fit: cover;
}
.front-cat .cat-ts-item__img img {
    width: 140px;
    height: auto;
}
.front-cat {
    min-height: 300px;
}
.front-catalog .cats {
    margin-bottom: 78px;
}
.tab-nav {
    display: flex;
    width: fit-content;
    margin-bottom: 34px;
    background: #efefef;
    border-radius: 10px;
}
.tab-nav li a {
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 84%;
    color: #888787;
    padding: 15px 25px;
    white-space: nowrap;
}

.tab-nav li a.active {
    background: #42413e;
    color: #fff;
    border-radius: 10px;
}

.product-card__price-block {
    margin-top: auto;
}
.long-text {
    position: relative;
}
.long-text:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #fff 65%);
}
.long-text.expanded:after {
    content: none;
}
.seo-text__in .toggle-seo-text {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: fit-content;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    text-align: right;
    color: var(--e60002);
    text-align: center;
}
.seo-text__in .toggle-seo-text:after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5L12 19' stroke='%23E60002' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3Cpath d='M19 12L12 19L5 12' stroke='%23E60002' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
    margin-left: 4px;
    transition: .3s;
}
.seo-text__in .long-text.expanded + .toggle-seo-text:after {
    transform: rotate(180deg);
    transition: .3s;
}
.product-card__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 24px;
}
.product-card__image img {
    width: auto;
    max-width: 100%;
    max-height: 180px;
    display: block;
    margin: 0 auto;
}
.product-card__image a {
    display: block;
    height: 100%;
    width: 100%;
}
.product-card__image_empty {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    /* background: rgb(230 0 1 / 11%); */
}
.product-card__image_empty img {
    max-width: 100%;
    height: auto;
    opacity: .3;
}
.product-card__code {
    font-size: 15px;
    color: rgb(51, 51, 51, .8);
    margin-bottom: 8px;
}
.product-card__title {
    margin-bottom: 20px;
}
.product-card__title a {
    font-size: 17px;
    font-weight: 500;
    color: var(--383e42);
}
.product-card__price-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.product-card__qty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 7px;
}
.product__price-block .product-card__qty {
    margin-left: auto;
}
.product-card__minus, .product-card__plus {
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
    background: #ededed;
}
.product-item {
    background: #fff;
    border-radius: 10px;
}
.product-item__img {
    position: relative;
}
.product-item__img img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.product-item__sticker {
    position: absolute;
    top: 20px;
    left: 60px;
}
.product-item__sticker {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.product-item__in {
    padding: 20px;
}
.sticker.sticker-2 {
    background: #ff6565;
}
.sticker.sticker-3 {
    background: #32cb5d;
}
.product-item__fav {
    position: absolute;
    top: 16px;
    right: 16px;
}
.product-item__fav svg {
    width: 22px;
    height: 22px;
}
.product-item__fav.active svg path {
    fill: var(--orange);
}

.product-item__fav:hover svg path {
    fill: var(--orange);
}
.btn-arrow {
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
    padding: 0 20px;
}

.sticker {
    background: #938af9;
    border-radius: 3px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    color: #fff;
    padding: 4px 10px;
}
.product-item__price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}
.product-item__price .price-current {
    font-weight: 700;
    font-size: 25px;
    color: #000;
}
.product-item__price .price-old {
    font-weight: 400;
    font-size: 15px;
    text-decoration: line-through;
    color: #666;
}
.product-item__price .price-economy {
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    background: var(--orange);
}
.product-item__stock {
    font-weight: 700;
    font-size: 13px;
    color: #11d500;
    margin-bottom: 25px;
}
.product-item__stock:before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    margin-left: 10px;
    background: #11d500;
    display: inline-block;
    position: relative;
}
.product-item__title {
    margin-bottom: 15px;
}
.product-item__title a {
    font-weight: 500;
    font-size: 18px;
    color: #000;
    display: -webkit-box;        
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 2;       
    overflow: hidden;            
    text-overflow: ellipsis;
}
.product-item__chars {
    font-weight: 400;
    font-size: 15px;
    color: #000;
    margin-bottom: 30px;
}
.product-item__chars li {
    margin-bottom: 10px;
}
.product-item__chars li span {
    color: #8c8c8c;
}
.product-item__btn .btn {
    width: 100%;
    height: 48px;
    line-height: 48px;
}
.prod-doc {
    position: relative;
    height: 100%;
    padding: 25px 100px 25px 25px;
    border: 5px solid rgba(0, 0, 0, .2);
}
.prod-doc__title {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 17px;
    line-height: 129%;
    color: var(--383e42);
}
.prod-doc__sub {
    font-weight: 400;
    font-size: 15px;
    line-height: 147%;
    color: var(--1d2022);
    opacity: .6;
}
.prod-doc__icon {
    position: absolute;
    top: 25px;
    right: 25px;
}
.product-card__input {
    width: 30px;
    height: 40px;
    line-height: 40px;
    background: #e600010d;
}
.product-card__qty input {
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    background: transparent;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    color: #000;
    text-align: center;
}
.product-card__minus {
    width: 30px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
}
.product-card__plus {
    width: 30px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
}
.product-card__price {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--383e42);
}
.product-card__btns {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.product-card__btns > button {
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: left;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    height: 64px;
    line-height: 64px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 6px;
    text-align: center;
}
.product-card .btn_cart {
    background: var(--orange);
}
.product-card .btn_one-click {
    background: #222;
}
.product__tabs .tab-nav {
    justify-content: flex-start;
}
/* text block */
.content {
    min-height: calc(100vh - 672px);
    padding-bottom: 60px;
}
.text-block {
    color: #000;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.2;
    color: var(--text-color);
}
.text-block h2 {
    font-size: 30px;
    text-align: left;
    margin-bottom: 20px;
}
.text-block h3 {
    font-weight: 700;
    font-size: 30px;
    color: var(--text-color);
    margin: 0 0 20px;
}
.text-block p + h3,
.text-block ol + h3,
.text-block ul + h3 {
    margin-top: 40px;
}
.text-block p {
    margin-bottom: 20px;
}
.text-block li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 25px;
}
.text-block li:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    background-size: 15px;
    width: 15px;
    height: 15px;
    background: url(/img/ok.svg);    
}
.text-block ul, .text-block ol {
    padding-left: 40px;
    margin-bottom: 20px;
}
.text-block img {
    max-width: 100%;
}
.blue-bold {
    color: var(--dark-blue);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 125% */
}
.blue-bold-sm {
    color: var(--dark-blue);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 125% */
}
.about__img img {
    width: 100%;
}
/* .text block */
h1.h-line {
    position: relative;
    text-align: left;
    margin-bottom: 22px;
}
h1.h-line span {
    display: inline-block;
    padding-right: 32px;
    position: relative;
    z-index: 2;
    background: #fff;
}
h1.h-line::before {
    content: ""; 
    position: absolute; 
    top: 50%; 
    left: 0; 
    right: 0; 
    height: 2px; 
    background-color: var(--e60002);
    z-index: -1; 
}
.h1__sub {
    font-weight: 400;
    font-size: 16px;
    line-height: 144%;
    color: var(--383e42);
    margin-bottom: 22px;
    opacity: .9;
    max-width: 700px;
    margin-bottom: 80px;
}
.posts-list.row.auto-h .col-4 {
    margin-bottom: 60px;
}

h2.h-line {
    position: relative;
    text-align: left;
    margin-bottom: 30px;
}
h2.h-line span {
    display: inline-block;
    padding-right: 32px;
    position: relative;
    z-index: 2;
    background: #fff;
}
h2.h-line::before {
    content: ""; 
    position: absolute; 
    top: 50%; 
    left: 0; 
    right: 0; 
    height: 2px; 
    background-color: var(--e60002);
    z-index: -1; 
}
.latest-posts__sub {
    font-weight: 400;
    font-size: 16px;
    line-height: 144%;
    color: var(--383e42);
    margin-bottom: 22px;
    opacity: .9;
    max-width: 700px;
}
.latest-posts__more {
    margin-bottom: 66px;
}
.latest-posts__more a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    text-align: right;
    color: var(--e60002);
}
.m-block {
    margin-bottom: 90px;
}
.cons__in {
    position: relative;
    background: url(/img/ts-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 72px;
}
.cons__profile {
    color: #fff;
    margin-top: 40px;
}
.cons__profile .team-item__title {
    color: #fff;
    font-size: 16px;
}
.cons__profile .team-item__post {
    color: #fff;
}
.cons__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 118%;
    color: #fff;
    margin-bottom: 12px;
}
.cons__sub {
    font-weight: 600;
    font-size: 28px;
    line-height: 125%;
    color: #fff;
    margin-bottom: 26px;
}
.cons__text {
    color: #fff;
    opacity: .7;
    line-height: 1.4;
}
.cons__sub span {
    color: var(--orange);
}
.cons__in .row {
    position: relative;
    z-index: 2;
}
.cons__decor {
    opacity: .02;
    position: absolute;
    bottom: 0;
    left: 0;
}
.cons h2 {
    color: #fff;
    margin-bottom: 30px;
}

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"] {
    width: 100%;
    border-radius: 0;
    padding: 24px 0;
    height: 61px;
    line-height: 61px;
    font-size: 16px;
    padding: 0 20px;
    border-radius: 10px;
    background: #f2f6f9;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.cons .form-group input {
    width: 100%;
}
.cons .form-group label {
    color: #fff;
}
.cons .form-group .btn_red {
    width: 250px;
}
.form .row {
    margin: 0 -12px;
}
.form .row .col-6 {
    padding: 0 12px;
}
.form .btn {
    width: 100%;
}
.form-row {
    margin-bottom: 24px;
}
.form__submit {
    margin-bottom: 27px;
}
.form__terms {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    color: var(--ffffff);
    opacity: .4;
}
.form__terms a {
    font-weight: bold;
}
.cons .form__terms {
    color: #fff;
}
.post-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.post-item__img {
    margin-bottom: 24px;
}
.post-item__img img {
    width: 100%;
    object-fit: cover;
    height: 272px;
    border-radius: 10px;
}
.post-item__date {
    font-weight: 400;
    font-size: 15px;
    line-height: 167%;
    color: var(--383e42);
    opacity: .8;
    margin-bottom: 11px;
}
.post-item__title a {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
}
.post-item__more {
    margin-top: auto;
}

.product-item__in {
    position: relative;
    z-index: 2;
}
.post-item__date {
    font-size: 14px;
    margin-bottom: 6px;
}
.post-item__title {
    margin-bottom: 32px;
}
.post-item__more {
    font-size: 14px;
    font-weight: 800;
    color: #F4DC23;
    text-transform: uppercase;
}
.content {
    padding-bottom: 80px;
}
.facetwp-load-more {
    display: block;
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    color: var(--e60002);
    border: 1px solid var(--e60002);
    background: transparent;
    border-radius: 12px;
    height: 56px;
    line-height: 56px;
    white-space: nowrap;
    padding: 0 10px;
}
.front-about {
    position: relative;
    overflow: hidden;
}
.front-about .container {
    position: relative;
}
.front-about__decor {
    position: absolute;
    top: 300px;
    right: -290px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}
.front-about__decor {
    opacity: .1;
}
.front-about__decor img {
    width: 800px;
}
.docs-list .doc-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 400px;
    padding: 10px;
    border-radius: 0;
    background: transparent;
    box-shadow: 0 4px 18px 0 rgba(29, 32, 34, 0.15);
}
.doc-item img {
    width: auto;
    max-width: 100%;
    max-height: 380px;
}
.doc-item a {
    display: block;
}
.front-about__text {
    max-width: 600px;
    margin-bottom: 40px;
}
.front-about__sert {
    padding-bottom: 80px;
}
.swiper__in {
    position: relative;
    margin: 0 -20px;
}

.upsells .swiper-slide {
    height: auto;
}
.upsells .swiper-slide .product-card {
    height: 100%;
}
.product-page__fav {
    z-index: 2;
}
.product-page__fav svg path {
    stroke: #f7918c;
}
.product-page__fav .active svg path {
    fill: #f7918c;
}
.swiper-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bulle {
    margin: 0 5px;
}
.partner-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 140px;
    box-shadow: 0 4px 18px 0 rgba(29, 32, 34, 0.15);
}
.partner-item img {
    width: auto;
    max-height: 80px;
}
.partners__img {
    margin-bottom: 35px;
}
.front-partners {
    overflow: hidden;
}
.front-partners__decor {
    position: absolute;
    pointer-events: none;
    top: 50px;
    right: 0;
}
.front-partners .container {
    position: relative;
}
.h2__sub {
    max-width: 700px;
    font-weight: 400;
    font-size: 16px;
    line-height: 144%;
    color: var(--383e42);
    opacity: .9;
    margin-bottom: 62px;
}
.partners__img img {
    display: block;
    margin: 0 auto;
    opacity: .1;
}
.partners__text {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    color: var(--dark-blue);
}
.cat__panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cat__panel {
    margin-bottom: 20px;
}
.cat-panel__sort .facetwp-type-sort,
.cat-panel__per-page .facetwp-type-pager {
    display: inline-block;
    margin: 0 0 0 10px;
}
.cat-panel__sort .facetwp-type-sort select,
.cat-panel__per-page .facetwp-type-pager select {
    color: var(--e60002);
    font-weight: 500;
    background: none;
    outline: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: 600;
}
.filter .facetwp-type-slider {
    max-width: 250px;
}
.filter__option {
    margin-bottom: 40px;
}
.filter-option__label {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
}
.filter {
    margin-bottom: 20px;
}
.filter__title {
    font-size: 28px;
    margin-bottom: 20px;
}
.filter__options .checkbox-label {
    display: block;
    margin: 0;
}
.filter__options .checkbox {
    margin: 0 0 15px;
    display: block;
}
.filter__options .checkbox-label input:checked~.checkmark {
    background: #eb8036;
    border-color: #eb8036;
}
.filter__options {
    position: relative;
    z-index: 10;
}
.filter__option {
    position: relative;
}
.filter-option__label {
    cursor: pointer;
    transition: .3s;
}
.facetwp-selections {
    margin-bottom: 40px;
}
.facetwp-selections li .facetwp-selection-value {
    font-weight: 500;
    text-transform: uppercase;
    color: var(--e60002);
}
.about-img {
    margin-bottom: 30px;
}
.about-img img {
    width: 100%;
    height: 380px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 28px;
}
.filter .facetwp-facet {
    margin-bottom: 0;
}
.category-page .cats {
    margin-bottom: 40px;
}
.contacts__list.row .col-6 .contact__block,
.contacts__list.row .col-6 .contact__btns {
    height: auto;
}
.contacts__map iframe {
    width: 100%;
    border: none;
}
.contact__block {
    padding: 30px 40px;
    border-radius: 26px;
    -webkit-box-shadow: 0px 4px 25px 0px rgba(0, 119, 182, 0.25);
    box-shadow: 0px 4px 25px 0px rgba(0, 119, 182, 0.25);
    background: rgb(255, 255, 255);
}
.contact__btn {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #20a0e1;
    padding: 0 30px;

}
.contact__content .col-12 {
    margin-bottom: 20px;
}
.contact__content.auto-h .col-6 {
    margin-bottom: 20px;
}

.contacts__in {
    border-radius: 10px;
    background: #fff;
    padding: 38px 20px 20px 20px;
}
.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.contact-item__label {
    width: 100px;
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
    color: var(--grey-text-color);
}
.contact-item__value {
    flex: 1;
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
    color: var(--text-color);
}
.contact-item .footer__social {
    margin-bottom: 0;
}
.contacts .form .btn {
    width: fit-content;
}
.form-terms {
    display: flex;
    gap: 17px;
}
.form-term {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: var(--grey-text-color);
}

.row.auto-h .contact__btns .col-6 {
    margin-bottom: 0;
}
.contact-btn__title {
    font-weight: 700;
    font-size: 15px;
    line-height: 160%;
    text-transform: uppercase;
    color: var(--ffffff);
    color: #fff;
}
.contact__btn svg {
    max-width: 28px;
}
.contact__btn_wa {
    background: rgb(81, 200, 93);
}
.contacts__list {
    margin-bottom: 40px;
}
/* faq */
.i-faq {
    padding: 80px 0;
}
.faq-item {
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 10px;
}
.faq-question {
    position: relative;
    cursor: pointer;
    font-weight: bold;
    font-size: 19px;
    line-height: 28px;
    padding: 24px 50px 24px 60px;
}
.faq-item__helper {
    position: absolute;
    top: 23px;
    left: 14px;
}

.faq-item__arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 16px;
        right: 9px;
    width: 48px;
    height: 48px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.faq-item .faq-item__arrow svg {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.faq-item.active .faq-item__arrow svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.faq-item.active .faq-item__arrow svg path {
    fill: var(--orange);
}
.faq-item.active .faq-item__helper svg path {
    fill: var(--orange);
}
.faq-item.active .faq-item__helper svg circle {
    stroke: var(--orange);
}
.faq-answer {
    font-weight: 400;
    font-size: 17px;
    color: var(--text-color);
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease-out;
    -o-transition: max-height 0.4s ease-out;
    transition: max-height 0.4s ease-out;
}
.faq-answer__in {
    margin: 0 30px 30px;
}
.faq-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
}

h1 {
    font-size: 36px;
}
.h1__in h1 {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.h1__count {
    display: inline-block;
    border: 1px solid #a7a7a7;
    border-radius: 2px;
    padding: 2px 6px;
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    color: #a7a7a7;
    vertical-align: middle;
}

.cart-list {
    width: 100%;
}
.cart-item td {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}
.cart-total td {
    padding-top: 35px;
}
.cart-total__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 147%;
    color: var(--1d2022);
    opacity: 0.8;
}
.cart-total__val {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: var(--e60002);
}
.cart-item__price_val {
    font-size: 18px;
    font-weight: bold;
}
.cart-item__price_text {
    font-size: 14px;
    color: rgba(51, 51, 51, .8);
}

.cart-item__remove button {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: bold;
}
.cart-item__remove button .svg {
    top: -2px;
    position: relative;
}
.cart-item__remove {
    width: 250px;
    text-align: right;
}
.cart-item__qty {
    width: 150px;
    text-align: right;
}
.cart-item__price {
    width: 200px;
}
.cart-item__qty .product-card__qty {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.cart-item .svg {
    color: var(--blue);
}
.cart-item__img {
    width: 130px;
}
.cart-item__img img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
}
.product-attributes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
}
.product-attributes-column {
    width: 50%;
}
.product-attribute {
    margin-bottom: 12px;
}

.product__short .product-attribute {
    padding: 0;
}
.product__short .product-attribute:before {
    content: none;
    position: absolute;
    top: 13px;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ccc;
    z-index: 1;
}
.product-page__gallery .product-item__sticker {
    position: absolute;
    top: 30px;
    right: 30px;
    left: inherit;
}

.product__short .attribute-name,
.product__short .attribute-value {
    position: relative;
    z-index: 2;
    background: #fff;
}

.attribute-name,
.attribute-value {
    position: relative;
    z-index: 2;
    font-size: 15px;
}
.attribute-name {
    color: #8c8c8c;
}
.attribute-value {
    color: #000;
}

.tab {
    display: none;
}
.tab.active {
    display: block;
}
.product-page__head {
    margin-bottom: 40px;
}
.product__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
.btn_cart {
    background: var(--orange);
    width: 50%;
}
.btn_one-click {
    background: #222;
    width: 50%;
}
.product-page__gallery {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 12px;
}
.product-page__main h1 {
    font-weight: 600;
    font-size: 30px;
    line-height: 140%;
    letter-spacing: -0.04em;
    color: #000;
    margin-bottom: 20px;
}
.product-page__head.row {
    margin: 0 -40px;
}
.product-page__head .col-6 {
    padding: 0 40px;
}
.product__code {
    color: rgb(51, 51, 51);
    font-size: 14px;
}
.product__more a {
    display: inline-block;
   font-weight: 600;
   font-size: 15px;
   line-height: 160%;
   color: var(--orange);
   border-bottom: 1px solid;
   margin-bottom: 20px;
}
.product-card__price .discount-percentage {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    line-height: 160%;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    background: var(--orange);
}
.product__price-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}
.product__price-block .product-card__price {
    display: flex;
    align-items: center;
    gap: 12px;
}
.product__price-block .sale-price {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    text-decoration: line-through;
    color: var(--1d2022);
    opacity: .7;
    text-decoration: line-through;
}
.product-card__qty {
    margin-left: 20px;
}
.product__compare {
    margin-left: auto;
}
.product__compare button:before {
    content: 'Добавить в сравнение';
    display: inline-block;
    margin-right: 6px;
} 
.product__compare button {
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.product-slide img {
    display: block;
    margin: 0 auto;
}
.product-page__fav {
    position: absolute;
    top: 0;
    left: 0;
}
.product-page__fav button {
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.product-page__fav button .svg {
    margin-left: 4px;
    position: relative;
    top: -2px;
}
.product-page__fav button .svg svg {
    width: 22px;
    height: 22px;
}
.product-head__btns {
    position: relative;
}
.product-page__gallery {
    position: relative;
}
.mobile-header {
    display: none;
}
.notification {
    position: fixed;
    top: 20px;
    right: -100%;
    padding: 20px 20px 20px 70px;
    background: #fff;
    color: #222;
    border-radius: 0;
    -webkit-animation: slideNot 0.5s forwards;
    animation: slideNot 0.5s forwards;
    display: none;
    font-size: 13px;
    max-width: 300px;
    border-radius: 0;
    box-shadow: 0px 4px 25px 0px rgba(0, 119, 182, 0.25);
    z-index: 78;
}
.notification img,
.notification .product-card__image_empty {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    -o-object-fit: cover;
    object-fit: cover;
}
@-webkit-keyframes slideNot {
    0% {
        right: -100%;
    }
    100% {
        right: 20px; 
    }
}
@keyframes slideNot {
    0% {
        right: -100%;
    }
    100% {
        right: 20px; 
    }
}
.order-form input[type="text"],
.order-form input[type="email"],
.order-form textarea {
    border: 1px solid rgba(0, 119, 182, .4);
    width: 100%;
}
.js-clear-cart {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: flex-end;
}
.cart-item__remove .js-clear-cart {
    margin-left: auto;
}
.order-form.form textarea {
    border-radius: 0;
    padding: 20px;
    height: 170px;
}
.woocommerce-page form .form-row::before {
    content: none;
}
.order-form .form-row .form-group {
    margin-bottom: 0;
}
.order {
    padding: 70px 0;
}
.cat-thumb {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}
.cat-thumb__img img {
    transition: .4s;
}
.cat-thumb:hover .cat-thumb__img img {
    transform: scale(1.1);
    transition: .4s;
}
.cat-thumb__img {
    position: relative;
    height: 392px;
}
.cat-thumb__img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(230, 0, 2, 30%) 0%, #1d2022 100%);
}
.cat-thumb__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cat-thumb__title {
    position: absolute;
    z-index: 3;
    bottom: 30px;
    left: 10px;
    right: 10px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 135%;
    text-transform: uppercase;
    text-align: center;
}
.catalog-tabs .tab-nav li a:before {
    content: none;
}
.catalog-tabs .tab-nav {
    gap: 18px;
}
.catalog-tabs .tab-nav li a {
    white-space: nowrap;
    display: inline-block;
    height: 52px;
    line-height: 52px;
    padding: 0 18px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--383e42);
    border: 1px solid var(--383e42);
    margin: 0;
}
.catalog-tabs .tab-nav li a.active:after {
    content: none;
}
.catalog-tabs .tab-nav li a.active {
    background: var(--383e42);
    color: #fff;
}
.front-about__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.swiper-arrow svg {
    flex-shrink: 0;
}
.reviews .swiper-arrow svg path {
    fill: #fff;
}
.reviews .swiper-pagination-bullet {
    background: #fff;
}
h2.h-line::before {
    z-index: 1;
    pointer-events: none;
}
.docs__more a {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    text-align: right;
    color: var(--e60002);
    display: flex;
    align-items: center;
    gap: 4px;
}
.docs__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 108%;
    text-transform: uppercase;
    color: var(--1d2022);
    margin-bottom: 30px;
}
.docs__sub {
    margin-bottom: 27px;
}
.docs-nav.swiper-nav {
    justify-content: flex-start;
}
.latest-posts .container {
    position: relative;
}
.latest-posts__decor {
    position: absolute;
    top: 50px;
    right: 0;
    pointer-events: none;
}
.partner-thumb {
    margin-bottom: 50px;
}
.partner-thumb__title {
    margin-top: 27px;
    font-weight: 500;
    font-size: 15px;
    line-height: 160%;
    text-transform: uppercase;
    color: var(--1d2022);
    opacity: .5;
}
.partner-thumb__address {
    font-weight: 400;
    font-size: 15px;
    line-height: 153%;
    color: var(--1d2022);
    margin: 5px 0;
}
.partner-thumb__link a {
    font-weight: 700;
    font-size: 15px;
    line-height: 160%;
    text-transform: uppercase;
    text-align: right;
    color: var(--e60002);
    display: flex;
    align-items: center;
    gap: 14px;
}
.page-compare .product-card {
    height: 400px;
    overflow: hidden;
    margin-bottom: 60px;
    margin: 20px;
}
.char-item {
    padding: 4px;
}
.compare__chars .char-item:nth-child(odd),
.product-card__chars .char-item:nth-child(odd) {
    background: #eee;
}
.compare__in {
    position: relative;
    padding-left: 300px;
}
.compare__chars {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 460px;
    width: 300px;
}
.product-card__chars {
    margin-top: 40px;
}
.char-item {
    height: 80px;
}
.header__logo img {
    width: 120px;
}
/* sub menu */
.header__list > li.menu-item-has-children > a:after {
    display: inline-block;
    position: relative;
    content: '';
    top: -2px;
    width: 8px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 24 24' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cpath d='M12 18a1 1 0 0 1-.71-.29l-10-10a1 1 0 0 1 1.42-1.42l9.29 9.3 9.29-9.3a1 1 0 1 1 1.42 1.42l-10 10A1 1 0 0 1 12 18z' fill='%23bdbdbd' opacity='1' data-original='%23000000' class=''%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-size: 8px;
    margin-left: 8px;
    vertical-align: middle;
}
.header__list > li.current-menu-item > a {
    border-bottom: 2px solid var(--main-color);
}
.header__list > .menu-item-has-children {
    position: relative;
}
.header__list > .menu-item-has-children > .sub-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 320px;
    background: #383e42;
    border-top: 1px solid #323232;
    list-style: none;
    z-index: 3;
}
.header__list > .menu-item-has-children:hover > .sub-menu {
    display: block;
    text-align: left;
}
.header__list > .menu-item-has-children > .sub-menu > li {
    position: relative;
}
.header__list > .menu-item-has-children > .sub-menu > li > a {
    display: block;
    padding: 14px 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
}
.header__list > .menu-item-has-children > .sub-menu > li.menu-item-has-children > a:after {
    content: '';
    position: absolute;
    top: 18px;
    right: 11px;
    width: 9px;
    height: 9px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' x='0' y='0' viewBox='0 0 24 24' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cpath d='M12 18a1 1 0 0 1-.71-.29l-10-10a1 1 0 0 1 1.42-1.42l9.29 9.3 9.29-9.3a1 1 0 1 1 1.42 1.42l-10 10A1 1 0 0 1 12 18z' fill='%23fff' opacity='1' data-original='%23000000' class=''%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-size: 9px;
    transform: rotate(270deg);
}
.header__list > .menu-item-has-children > .sub-menu > li:last-child > a {
    border-bottom: none;
}
.header__list > .menu-item-has-children > .sub-menu > li > .sub-menu {
    display: none;
    position: absolute;
    top: -1px;
    left: 318px;
    background: #282d31;
    width: 320px;
    list-style: none;
}
.header__list > .menu-item-has-children > .sub-menu > li:hover > .sub-menu {
    display: block;
}
.header__list > .menu-item-has-children > .sub-menu > li:hover {
    background: #282d31;
}
.header__list > .menu-item-has-children > .sub-menu > li > .sub-menu > li > a {
    display: block;
    padding: 14px 10px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 24px;
}
.header__list > .menu-item-has-children > .sub-menu > li > .sub-menu > li > .sub-menu > li > a {
    display: block;
    padding: 6px;
}
.header__list > .menu-item-has-children > .sub-menu > li > .sub-menu > li:last-child > a {
    border-bottom: none;
}
.modal-product {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--e60002);
    margin: -20px 0 40px;
}

/* mobile menu */
.mobile-nav .mobile-arrow {
  width: 30px;
  height: 30px;
}
.mobile-nav .mobile-arrow:before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(225deg);
  cursor: pointer;
}
.mobile-nav .menu-item-has-children > a {
    position: relative;
}
.mobile-nav .menu-item-has-children {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.mobile-nav .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #222;
}
.mobile-nav .sub-menu li::after {
  content: none;
}
.mobile-nav .sub-menu li::after {
  content: none;
}
.mobile-nav li.active > .sub-menu {
    display: block;
}
.mobile-nav li a {
  display: block;
  font-weight: 500;
  font-size: 18px;
}
.mobile-nav li .sub-menu a {
  font-size: 16px;
}
.mobile-nav__title {
  font-weight: 500;
  font-size: 24px;
  color: #fff;
}
.mobile-nav li a.back-button {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  color: #fff;
}
.back-button:before {
  content: '';
  width: 16px;
  height: 16px;
  background-size: 16px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 1.63281L0.636039 7.99677' stroke='%23fff' stroke-linecap='round' /%3E%3Cpath d='M7 14.4375L0.636038 8.07354' stroke='%23fff' stroke-linecap='round' /%3E%3Cpath d='M15 8L1.0002 8.07477' stroke='%23fff' stroke-linecap='round' /%3E%3C/svg%3E");
}
.mobile-nav li {
  margin-bottom: 16px;
}
.mobile-nav li.mobile-nav__title {
    color: #fff;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.mobile-nav {
  padding: 20px 0;
}

/* search */
.search-block {
  position: fixed;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 103;
  background: #fff;
  height: auto;
  padding: 10px 0;
  display: none;
  background: #fff;
}
.search-block {
  display: none;
}
.search-block.active {
  display: block;
  -webkit-animation: fadeIn .6s;
  animation: fadeIn .6s;
}
section.success {
  margin-bottom: 64px;
}

@-webkit-keyframes fadeIn {
    from { top: -120px; }
      to { top: 0; }
}
@keyframes fadeIn {
    from { top: -120px; }
      to { top: 0; }
}
.search-block .container {
  position: relative;
}
.search-block input {
    outline: none;
    box-shadow: none;
    border: none;
  border-bottom: 1px solid #ccc;
  text-align: left;
  height: 50px;
  margin-bottom: 0;
  color: #000;
}
.search-block__in {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 120px;
}
.search-block input {
  width: 500px;
}
.search-block .btn-main {
  display: block;
  width: 100px;
  height: 50px;
  background: var(--e60002);
  color: #fff;
  text-align: center;
  padding: 0;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  transition: .7s;
  flex-shrink: 0;
}
.search-block .btn-main:hover, .search-block .btn-main:active .search-block .btn-main:focus {
  transition: .7s;
}
.search-block .close {
  top: 0;
  left: 0;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin-left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.search-block .container:before {
    content: none;
}
.search-block.active {
    display: block;
    -webkit-animation: fadeIn .6s;
    animation: fadeIn .6s;
}
.search-item {
  display: flex;
  gap: 10px;
  padding: 14px;
  align-items: center;
  border-bottom: 1px solid #ccc;
  margin-bottom: 4px;
}
.search-item img {
  width: 40px;
  height: auto;
}
.card-price {
  width: fit-content;
}
.modal-text__success {
    text-align: center;
    font-size: 20px;
}
.product-colors {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.product-colors__title {
    font-weight: 400;
    font-size: 15px;
    line-height: 133%;
    color: var(--383e42);
    margin-bottom: 20px;
}
.product-color {
    width: 100px;
    padding: 10px;
    border: 1px solid #eee;
    transition: .4s;
}
.product-color:hover {
    transition: .4s;
    border-color: var(--e60002);
}
.product-color.active {
    border-color: var(--e60002);
}
.product-color__img {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}
.product-color img {
    width: 80px;
    max-height: 80px;
}
.product-color__title {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}
.swiper-100 .swiper-slide {
    height: auto;
}
.swiper-100 .product-card {
    height: 100%;
}

/* new */
.hero {
    padding: 50px 0 0;
}
.hero .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
h2 {
    margin: 0 0 50px;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #000;
}
h2 span {
    font-weight: 300;
}
.h2__sub {
    max-width: 450px;
    font-weight: 300;
    font-size: 15px;
    line-height: 140%;
    color: #666;
}
.title-block {
    gap: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}
.title-block h2 {
    min-width: 500px;
    margin-bottom: 0;
}
.features {
    padding: 60px 0 20px;
    border-bottom: 1px solid #eee;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
}
.feature-item__icon img {
    width: 40px;
}
.feature-item__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #333;
}
.feature-item__text {
    font-weight: 300;
    font-size: 15px;
    line-height: 140%;
    color: #666;
}
.title-block .h2__sub {
    margin-bottom: 0;
}
.gray-block {
    background: #f9f9f9;
    padding: 100px 0;
    border-radius: 30px;
}
.cat-ts-item {
    position: relative;
    border-radius: 10px;
    padding: 30px 160px 30px 30px;
    background: url(/img/cat-bg.jpg);
    background-size: cover;
    background-position: bottom;
}
.cat-ts-item__title {
    font-weight: 700;
    font-size: 25px;
    color: #333;
    margin-bottom: 20px;
}
.cat-ts-item__child ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}
.cat-ts-item__child a {
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
    color: #c94533;
}
.cat-ts-item__img {
    position: absolute;
    top: 20px;
    right: 20px;
}
.cat-item__img img {
    max-width: 140px;
}
.news-block {
    padding: 50px 80px;
    border-radius: 10px;
    border: 1px solid #f1f1f1;
    background: #fdfdfd;
}
.news-block__img {
    width: 350px;
    position: relative;
}
.news-block__img img {
    max-width: 100%;
}
.news-block__fav {
    position: absolute;
    top: 0;
    right: 0;
}
.news-block__code {
    font-weight: 300;
    font-size: 13px;
    line-height: 129%;
    color: #222;
    margin-bottom: 20px;
}
.news-block__title {
    margin-bottom: 10px;
}
.news-block__title a {
    font-weight: 600;
    font-size: 30px;
    line-height: 140%;
    letter-spacing: -0.04em;
    color: #000;
}
.news-block__stock {
    font-weight: 700;
    font-size: 13px;
    color: #11d500;
    margin-bottom: 26px;
}
.news-block__price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}
.news-block__price .price-current {
    font-weight: 600;
    font-size: 40px;
    line-height: 140%;
    letter-spacing: -0.04em;
    color: #000;
}
.news-block__price .price-old {
    font-weight: 400;
    font-size: 20px;
    text-decoration: line-through;
    color: #666;
}
.news-block__price .price-economy {
    padding: 4px 10px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    background: var(--orange);
}
.news-block__btn .btn {
    width: 100%;
    height: 70px;
    line-height: 70px;
    font-size: 15px;
}
.front-hits {
    padding: 100px 0;
}
.h2-sub__more {
    margin-top: 10px;
}
.h2-sub__more a {
    font-size: 18px;
    font-weight: 600;
    color: #c94533;
    border-bottom: 1px solid;
}
.sale-item__img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    background: #eee;
}
.sale-item__img img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}
.sale-item__date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    font-weight: 400;
    font-size: 13px;
    line-height: 140%;
    color: #666;
}
.sale-item__title {
    margin-bottom: 20px;
}
.sale-item__title a {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #333;
}
.review-item__img {
    position: relative;
    margin-bottom: 26px;
}
.review-item__img img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 10px;
}
.review-item__play {
    position: absolute;
    top: calc(50% - 37.5px);
    left: calc(50% - 37.5px);
    transition: .4s;
}
.review-item__img:hover .review-item__play {
    transform: scale(1.12);
    transition: .4s;
}
.review-item__info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.review-item__info span {
    padding: 9px 20px;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    text-align: center;
    color: #fff;
    background: #000;
    border-radius: 40px;
}
.review-item__info span {
    display: inline-block;
}
.review-item__title {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.review-item__text {
    flex: 1;
    font-weight: 500;
}
.show-more {
    margin-top: 50px;
}
.front-reviews {
    padding-bottom: 100px;
}
.dirs {
    padding: 20px 30px;
    background: url(/img/bg2.jpg);
    background-size: cover;
    background-position: bottom;
    border-radius: 10px;
}
.dirs__title {
    font-weight: 700;
    font-size: 17px;
    line-height: 140%;
    color: #333;
    margin-bottom: 26px;
}
.dirs__title span {
    font-weight: 400;
}
.dirs__list li {
    position: relative;
    padding-left: 25px;
    font-weight: 300;
    font-size: 13px;
    line-height: 140%;
    color: #666;
    margin-bottom: 10px;
}

.dirs__list li:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    background-size: 15px;
    width: 15px;
    height: 15px;
    background: url(/img/ok.svg);    
}
.about__team img {
    max-width: 600px;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.title-block_full h2 {
    min-width: 300px;
}
.title-block_full .h2__sub {
    max-width: 100%;
}
.h2__sub p {
    color: #000;
    margin-bottom: 30px;
}
.front-about {
    padding-bottom: 100px;
}
.front-seo {
    border-top: 1px solid #eee;
    padding: 100px 0;
}
.review-item {
    margin-bottom: 40px;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
.gallery-item {
    margin-bottom: 20px;
}
.gallery-lead {
    padding: 40px 50px;
    border: 1px solid #f1f1f1;
    background: #fdfdfd;
    border-radius: 10px;
}
.gallery-lead__btn {
    text-align: right;
}
.gallery-lead__text {
    font-weight: 700;
    font-size: 25px;
    line-height: 140%;
    color: #333;
}
.gallery-lead__text span {
    font-weight: 300;
}
.art__years {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}
.art__years a {
    padding: 6px 10px;
    border-radius: 2px;
    background: #f0f2f6;
    font-weight: 500;
    font-size: 15px;
    color: #000;
}
.art__years a.active {
    background: #d8dce5;
}
.article .review-item__info {
    margin-bottom: 40px;
}
.cat-ts-item__full {
    background: #fdfdfd;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    min-height: 372px;
    padding: 48px;
    padding-left: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cat-ts-item__full .cat-ts-item__img {
    position: absolute;
    top: 30px;
    left: 30px;
}
.cat-ts-item__full .cat-ts-item__img {
    width: 70px;
}
.cat-ts-item__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    color: #222;
}
.cat-ts-item__full .cat-ts-item__child ul {
    margin: 0;
}
.slider-in {
    position: relative;
}
.swiper-arrow {
    position: relative;
    z-index: 2;
    cursor: pointer;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-arrow svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.swiper-arrow.swiper-button-disabled svg path {
    fill: #CDD1D3;
}
.swiper-arrow svg path {
    fill: var(--orange);
}
.swiper-next svg {
    transform: rotate(180deg);
}
.page-reviews {
    margin-bottom: 60px;
}
.product__features {
    border: 1px solid #eee;
}
.product__features .feature-item {
    border-bottom: 1px solid #eee;
    margin: 0;
    padding: 15px;
}
.product__features .feature-item:last-child {
    border-bottom: none;
}
.product__features .feature-item__title {
    font-size: 14px;
    line-height: 1.2;
}
.product__features .feature-item__text {
    font-size: 12px;
}
.product__banner img {
    width: 100%;
}
.product__features {
    margin-bottom: 20px;
}
.team {
    padding: 100px 0;
    background: #f9f9f9;
}
.team-photo img {
    width: 100%;
    border-radius: 10px;
}
.team-item {
    background: url(/img/team-bg.jpg);
    background-size: cover;
    background-position: right;
    position: relative;
    padding: 30px;
    height: 100%;
    border-radius: 10px;
}
.team-item__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.team-item__img img {
    width: 79px;
    height: 79px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}
.team-item__title {
    font-weight: 700;
    font-size: 25px;
    line-height: 140%;
    color: #333;
}
.team-item__post {
    font-weight: 300;
    font-size: 13px;
    line-height: 140%;
    color: #666;
    margin-bottom: 5px;
}
.team-item__text {
    font-weight: 300;
    font-size: 15px;
    line-height: 140%;
    color: #000;
}
.is-scroll .header__nav {
    top: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}
.product-content__in {
    background: #f9f9f9;
    padding: 20px 30px;
    border-radius: 5px;
    margin-bottom: 40px;
}
.product-content__in .product-card__price .discount-percentage {
    padding: 2px 8px;
}
.product-content__in .product-card__price .discount-percentage {
    order: 2;
}
.product-content__call {
    gap: 15px;
    margin-top: 20px;
}
.product-content__call a {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid;
    color: #c94533;
}
.product-content__call svg {
    display: inline-block;
    margin-right: 15px;
}
.product-short__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 84%;
    color: #222;
    margin-bottom: 20px;
}

.top-line {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 12px 0;
}
.header__catalog {
    margin-left: 40px;
}
.header__catalog .btn {
    font-size: 16px;
    font-weight: 600;
}
.header__btns {
    margin-left: 40px;
}
.hero__title {
    font-weight: 700;
    font-size: 48px;
}
.hero__sub {
    font-weight: 500;
    font-size: 28px;
}
.hero__text {
    font-size: 16px;
    line-height: 1.2;
    margin-top: 16px;
}
.hero__btn {
    margin-top: 40px;
}
.hero-item__img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}
.link-item {
    position: relative;
    width: 100%;
    border-radius: 15px;
    height: 220px;
    font-size: 17px;
    color: #fff;
    background: linear-gradient(137deg, #028194 0%, #a4e2eb 100%);
    padding: 20px 30px;
}
.link-item__img img {
    width: 100px;
    display: block;
    margin: 0 auto;
}
.link-item_2 .link-item__img img {
    width: 180px;
}
.link-item_3 .link-item__img img {
    width: 160px;
}
.link-item_4 .link-item__img img {
    width: 130px;
}
.link-item_5 .link-item__img img {
    width: 160px;
}
.link-item_2 {
    background: linear-gradient(137deg, #0769ff 0%, #5198ff 100%);
}
.link-item_3 {
    background: linear-gradient(159deg, #cba99a 0%, #e8c6b7 100%);
}
.link-item_4 {
    background: linear-gradient(136deg, #f91155 0.33%, #fb316c 44.5%, #e74775 100%);
}
.link-item_5 {
    background: linear-gradient(136deg, #01b4ff 0%, #04c2f4 44.5%, #19fbda 100%);
}
.link-item:hover .link-item__btn {
    background: #fff;
    transition: .4s;
}
.link-item__btn svg path {
    fill: #fff;
}
.link-item:hover .link-item__btn  svg path {
    fill: #000;
}
.front-links {
    padding: 40px 0;
}
.link-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    top: 0;
    transition: .4s;
}
.link-item:hover {
    top: -5px;
    transition: .4s;
}
.link-item__btn {
    position: absolute;
    bottom: 20px;
    left: 30px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.footer__phone-email {
    display: flex;
    gap: 64px;
    align-items: center;
}
.footer__phone a,
.footer__email a {
    font-weight: 500;
    font-size: 16px;
    color: rgba(0, 26, 52, 0.6);
}
.footer__apps {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer__top {
    margin-bottom: 30px;
}
.footer__list-row {
    display: flex;
    justify-content: space-between;
}
.footer__list-col {
    width: 48%;
}
.footer__list li {
    margin-bottom: 14px;
}
.footer__list li a {
    font-weight: 400;
    font-size: 13px;
    color: rgba(0, 26, 52, 0.6);
}
.footer__social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.footer__title {
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 20px;
    color: #000;
}
.subscribe-form .form-group-inline {
    display: flex;
    align-items: center;
}
.subscribe-form .form-group__input {
    flex: 1;
}
.subscribe-form .form-group__input input {
    width: 100%;
    height: 40px;
    border-radius: 7px 0 0 7px;
    border: 1px solid var(--orange);
    padding: 0 14px;
}
.subscribe-form button {
    background: var(--orange);
    text-align: center;
    white-space: nowrap;
    color: #fff;
    width: 125px;
    height: 40px;
    border-radius: 0 7px 7px 0;
}
.subscribe-form {
    max-width: 340px;
}
.subscribe-form__text {
    font-size: 13px;
    color: #7d7d7d;
}
.footer__copy {
    background: #ebeff5;
}
.footer-copy__left {
    display: flex;
    align-items: center;
    gap: 60px;
}
.footer-copy__in {
    display: flex;
    height: 70px;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    font-size: 13px;
    text-align: right;
    color: #9e9e9e;
}
.footer-copy__in a {
    font-weight: 400;
    font-size: 13px;
    text-align: right;
    color: #9e9e9e;
}

h1 {
    margin: 64px 0;
    font-weight: 700;
    font-size: 48px;
}
.profile-nav {
    width: 100%;
    border-radius: 10px;
    padding: 22px 34px 34px 34px;
    background: #fff;
}
.profile-nav li {
    margin-bottom: 22px;
}
.profile-nav li a {
    font-weight: 400;
    font-size: 17px;
}
.profile-nav li a.active {
    font-weight: 700;
    font-size: 17px;
    color: var(--orange);
}
.profile-form {
    padding: 24px;
    background: #fff;
    border-radius: 10px;
}
.profile-form__title {
    font-weight: 700;
    font-size: 28px;
    color: #383838;
    margin-bottom: 45px;
}
.form label {
    display: inline-block;
    font-weight: 400;
    font-size: 17px;
    color: #b0a6bd;
    margin-bottom: 15px;
}
.profile-address__title {
    font-weight: 400;
    font-size: 17px;
    color: #b0a6bd;
    margin-bottom: 15px;
}
.profile-address__item {
    display: flex;
    gap: 25px;
    align-items: center;
}
.profile-address__add {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 13px;
    width: 82px;
    height: 61px;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    background: var(--orange);
}
.profile-address__item .form-group__flex {
    flex: 1;
}
.front-title h2 {
    margin: 0 0 47px;
    font-weight: 700;
    font-size: 28px;
}
.m-60 {
    margin-bottom: 60px;
}
.top-line {
    white-space: nowrap;
    overflow: hidden;
}
.header__catalog .btn {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: bold;
    height: 44px;
    line-height: 44px;
}
.header-nav__content {
    display: flex;
    gap: 100px;
    align-items: center;
}
.hero-slider__nav {
    position: absolute;
    bottom: 0;
    left: calc(50% + 15px);
    z-index: 3;
    display: flex;
    gap: 20px;
    align-items: center;
}
.hero__in {
    padding-bottom: 55px;
}
.promo__circle img {
    width: 100%;
}
.m-100 {
    margin-bottom: 100px;
}
.promo__title {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 10px;
}
.promo__sub {
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 40px;
}
.promo__in {
    margin-bottom: 60px;
}
.promo-result {
    display: flex;
    align-items: stretch;
    height: 210px;
}
.promo-result__title-sub {
    width: 50%;
    height: 100%;
    border-radius: 10px 0 0 10px;
    background: #fff;
    padding: 30px;
}
.promo-result__img-btn {
    width: 50%;
    height: 100%;
    border-radius: 0 10px 10px 0;
    background: var(--orange);
}
.promo-result__title {
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 20px;
}
.promo-result__text {
    font-weight: 400;
    font-size: 17px;
}
.promo-result__img img {
    width: 200px;
}
.promo-result__img {
    position: relative;
    margin-top: -60px;
}
.promo-result__btn a {
    display: inline-block;
    height: 52px;
    line-height: 52px;
    font-weight: 400;
    font-size: 17px;
    color: #fff;
    border: 1px solid #fff;
    text-align: center;
    white-space: nowrap;
    border-radius: 10px;
    padding: 0 20px;
}
.promo-result__img-btn {
    text-align: center;
}
.promocode-slide {
    position: relative;
    height: 480px;
    border-radius: 10px;
}
.promo-slide__in {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 480px;
    padding-bottom: 95px;
    padding-left: calc(60% + 15px);
}
.promocode-slide__title {
    font-weight: 700;
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.promo-slider__nav {
    position: absolute;
    bottom: 40px;
    left: calc(60% + 15px);
    z-index: 3;
    display: flex;
    gap: 20px;
    align-items: center;
}
/* radio */
.checkmark:after, .checkradio:after {
    content: "";
}
.checkmark{
    background-color:#747474;
}
.checkbox, .radio {
    margin-bottom: 25px;
}
.checkbox, .radio {
    display: inline-block;
    margin-right: 20px;
}
.checkbox-label{
    display:inline-block;
    position:relative;
    padding-left:35px!important;
    line-height:25px;
    margin-bottom:12px;
    cursor:pointer;
    font-size:16px;
    -webkit-user-select:none;
       -moz-user-select:none;
        -ms-user-select:none;
            user-select:none
}
.checkbox-label input{
    position:absolute;
    opacity:0
}
.checkmark{
    position:absolute;
    top:0;
    left:0;
    height:25px;
    width:25px;
    border-radius: 5px;
    border: 2px solid #8f949c;
    background-color: transparent;
}
.checkbox-label input:checked~.checkmark{
    background-color: #747474;
    border-color: #747474;
}
.checkmark:after{
    position:absolute;
    display:none
}
.checkbox-label input:checked~.checkmark:after,.radio{
    display:inline-block;
}
.checkbox-label .checkmark:after{
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.checkradio,.ui-button,.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,html .ui-button.ui-state-disabled:active,html .ui-button.ui-state-disabled:hover{
    -webkit-border-radius:50%;
            border-radius:50%
}
.radio {
    position:relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor:pointer;
    font-size: 14px;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none
}
.radiobox {
    margin-bottom: 25px;
}
.radio input{
    position:absolute;
    opacity:0
}
.checkradio {
    position:absolute;
    top:0;
    left:0;
    height:25px;
    width:25px;
    background-color:#fff;
    border: 1px solid #b0a6bd;
}
.radio:hover input~.checkradio{
    background-color:#ccc
}
.radio input:checked~.checkradio{
    background-color: var(--orange);
    border-color: var(--orange);
}
.checkradio:after{
    position:absolute;
    display:none
}
.radio input:checked~.checkradio:after{
    display:block
}
.radio .checkradio:after{
    top: 5px;
    left: 5px;
    width: 13px;
    height: 13px;
    -webkit-border-radius:50%;
            border-radius:50%;
    background:#fff;
}
.radio-list .radio {
    display: block;
}
/* .radio */
.quiz__img img {
    width: 100%;
    border-radius: 10px;
}
.quiz__title {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 40px;
}
.quiz__btn button {
    height: 60px;
    line-height: 60px;
    background: var(--orange);
    color: #fff;
    border-radius: 10px;
    padding: 0 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}
.quiz__btn .btn .quiz-btn__numb span {
    color: #000;
}
.blog-item {
    position: relative;
    background: #fff;
    border-radius: 10px;
}
.blog-item__in {
    height: 180px;
    overflow: hidden;
}
.blog-item__in {
    padding: 20px;
}
.blog-item__title {
    margin-bottom: 10px;
}
.blog-item__title a {
    font-weight: 700;
    font-size: 20px;
}
.blog-item__sub {
    font-size: 17px;
}
.blog-item__btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.blog-item__btn a {
    display: block;
    width: 100%;
    background: var(--orange);
    border-radius: 10px;
    padding: 0 20px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    white-space: nowrap;
    color: #fff;
    font-size: 17px;
}
.blog-item__img img {
    width: 100%;
    height: 202px;
    object-fit: cover;
    border-radius: 0 0 10px 10px;
}
.blog-slider__nav {
    display: flex;
    gap: 20px;
}
.gift-item {
    background: #fff;
    border-radius: 10px;
    display: flex;
    gap: 0;
    align-items: stretch;
    height: 200px;
}
.gift-item__img {
    height: auto
}
.gift-item__img img {
    height: 200px;
    width: 500px;
    border-radius: 10px;
}
.gift-item__conditions {
    padding: 20px 50px;
}
.gift__title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}
.gift-conditions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.gift-go {
    gap: 40px;
    display: flex;
}
.gift__btn .btn {
    display: flex;
    align-items: center;
    gap: 10px;
}
.gift__btn .btn svg {
    flex-shrink: 0;
}
.gift__progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}
.gift-progress__img img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
}
.gift-line {
    position: relative;
    min-width: 320px;
    width: 100%;
    border: 3px solid #ababab;
    border-radius: 10px;
    margin-bottom: 10px;
}
.gift-line:before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 66%;
    background: var(--orange);
    height: 8px;
    border-radius: 10px;
}
.gift-progress__text {
    font-weight: 400;
    font-size: 17px;
    color: #747474;
}
.spec-item {
    background: #fff;
    display: flex;
    border-radius: 10px;
}
.spec-item__in {
    padding: 20px 30px;
}
.spec-item__title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}
.spec-item__sub {
    margin-bottom: 10px;
}
.products-more {
    text-align: center;
}
.cart-totals {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}
.cart-item {
    border-top: 1px solid #e7e7e7;
    padding: 20px 0;
    display: flex;
    gap: 20px;
}
.cart-item__in {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}
.cart-title h1 {
    margin: 0;
    line-height: 1;
}
.cart-title {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin: 60px 0;
}
.cart-title__count {
    color: #8A8784;
    font-size: 28px;
}
.cart-item__title-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cart-item__title a {
    font-weight: 400;
    font-size: 28px;
}
.cart-item__fav button {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--grey-text-color);
}
.cart-item__fav-count {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-list__top {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}
.cart__delete-btn button {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart__delete-all .checkbox-label {
    margin-bottom: 0;
}
.cart-totals {
    margin-bottom: 10px;
}
.cart-totals__title {
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 20px;
}
.cart-totals__count {
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--grey-text-color);
}
.cart-totals__sum {
    margin-bottom: 22px;
}
.cart-totals__sum span {
    font-size: 32px;
}
.cart-totals__promo input {
    width: 100%;
    border-radius: 10px;
    padding: 0 17px;
    height: 46px;
    border: 1px solid #c2d5e3;
}
.cart-totals__sub {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: var(--grey-text-color);
}
.cart-totals__btn {
    margin-bottom: 10px;
}
.cart-totals__btn .btn {
    display: block;
    width: 100%;
}
.cats__banner {
    margin-bottom: 40px;
}
.cats__list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.cats__list {
    margin-bottom: 26px;
}
.cats__list a {
    display: inline-block;
    font-weight: 400;
    font-size: 17px;
    color: #fff;
    white-space: nowrap;
    height: 32px;
    line-height: 32px;
    background: #fff;
    color: var(--grey-text-color);
    border-radius: 10px;
    padding: 0 10px;
    transition: .4s;
}
.cats__list a.active {
    color: #fff;
    background: var(--orange);
}
.cats__list a:hover {
    color: #fff;
    background: var(--orange);
    transition: .4s;
}
.cats__banner img {
    width: 100%;
}
.filter-rait .checkbox-label {
    display: flex;
}
.filter-rait__count {
    display: inline-block;
    margin-left: 10px;
    color: #747474;
}
.filter-options__more button {
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 32px;
    padding: 0 10px;
    border-radius: 10px;
    color: var(--grey-text-color);
    background: #fff;
}
.filters__btn-all button {
    font-size: 17px;
    width: 100%;
    display: block;
    height: 52px;
    line-height: 52px;
    padding: 0 20px;
    text-align: center;
    color: var(--orange);
    border: 1px solid var(--orange);
    background: transparent;
    outline: none;
    box-shadow: none;
    border-radius: 10px;
}
.shop-item {
    background: #fff;
    padding: 35px;
    position: relative;
    border-radius: 10px;
}
.shop-item__title {
    margin-bottom: 15px;
}
.shop-item__title a {
    font-weight: 400;
    font-size: 28px;
    color: var(--text-color);
}
.shop-item__sub {
    margin-bottom: 30px;
    font-size: 17px;
}
.shop-item__rait {
    font-weight: 700;
    font-size: 76px;
    color: var(--text-color);
}
.shop-item__rait-sub {
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
    color: var(--grey-text-color);
}
.shop-item__logo {
    border-radius: 10px;
    width: 163px;
    height: 100%;
    background: #f2f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-item__logo img {
    flex-shrink: 0;
    max-height: 140px;
}
.shop-item {
    display: flex;
    gap: 25px;
    align-items: stretch;
    justify-content: space-between;
}
.contacts h2 {
    font-weight: 700;
    font-size: 48px;
    color: var(--text-color);
    margin: 0 0 40px;
}
.contacts {
    padding-top: 60px;
}
.delivery-item {
    cursor: pointer;
    height: 100%;
    border: 2px solid #cfcfcf;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}
.delivery-item.active {
    border: 2px solid var(--orange);
}
.delivery-item__title {
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
    color: var(--grey-text-color);
    margin-bottom: 20px;
}
.delivery-slider .swiper-slide {
    height: auto;
}
.delivery-block {
    overflow: hidden;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
}
.delivery-slider__nav {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.delivery-slider__nav .swiper-arrow.swiper-button-disabled circle {
    fill: #f2f6f9;
}
.delivery-slider__nav .swiper-arrow circle {
    fill: #CDD1D3;
}
.delivery-slider {
    overflow: visible;
}
.delivery-block {
    margin-bottom: 15px;
}
.order-details {
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}
.order-details__title {
    font-weight: 400;
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 40px;
}
.delivery-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.delivery-list .del-item {
    border: 1px solid #cfcfcf;
    height: auto;
    width: 48%;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}
.delivery-list__sub {
    font-weight: 400;
    font-size: 12px;
    line-height: 125%;
    color: var(--grey-text-color);
}
.order-param {
    padding-bottom: 10px;
    border-bottom: 1px solid #cfcfcf;
    margin-bottom: 10px;
}
.order-param__title {
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
    color: var(--grey-text-color);
    margin-bottom: 10px;
}
.cart-totals__promo-btn .btn {
    width: 100%;
    margin: 8px 0;
    display: inline-block;
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
}
.btn-svg {
    display: flex;
    gap: 5px;
    white-space: nowrap;
}
.btn-svg svg {
    flex-shrink: 0;
}
.del-item .delivery-item__title {
    margin-bottom: 0;
}
.faq-nav li {
    margin-bottom: 10px;
}
.faq-nav li a {
    font-weight: 400;
    font-size: 17px;
    width: 100%;
    display: block;
    color: #c2d5e3;
    height: 52px;
    line-height: 52px;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #c2d5e3;
    border-radius: 10px;
}
.faq-nav li a.active {
    color: var(--orange);
    border-color: var(--orange);
}
.faq-search.header__search {
    margin: 0 0 11px;
}
.faq-search.header__search input {
    background: transparent;
    border-color: #a0a0a0;
}
.faq-search .search button {
    background: #a0a0a0;
}
.article-banner {
    position: relative;
    width: 100%;
    height: 530px;
}
.article-banner h1 {
    color: #fff;
    margin: 0;
}
.article-banner {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 50px;
}
.article-banner__in {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.article-page__date {
    font-weight: 400;
    font-size: 17px;
    color: #fff;
}
.article-social .footer__social {
    margin-bottom: 16px;
}
.article-authors {
    padding: 20px 0;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}
.article-author {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}
.article-author__avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.author-name {
    font-weight: 500;
    font-size: 17px;
    color: var(--text-color);
    margin-bottom: 5px;
}
.author-post {
    font-weight: 400;
    font-size: 12px;
    color: var(--grey-text-color);
}
.btn.btn_ghost {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
}
.profile-pay.form input[type="text"] {
    background: #fff;
}
.profile-pays__btns {
    display: flex;
    gap: 20px;
}
.profile-pays__btns button.btn {
    width: fit-content;
    align-items: center;
}
.profile-cats__save {
    margin-top: 25px;
}
.profile-cats {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}
.profile-cats a {
    background: #f2f6f9;
    white-space: nowrap;
    display: inline-block;
    font-weight: 400;
    font-size: 17px;
    line-height: 39px;
    height: 39px;
    color: var(--grey-text-color);
    border-radius: 73px;
    padding: 0 35px;
}
.profile-cats a:hover,
.profile-cats a.active {
    background: var(--orange);
    color: #fff;
}
.customer__nav  {
    display: flex;
    gap: 19px;
    justify-content: space-between;
}
.customer__dashboard {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
}
.customer__nav li a {
    display: block;
    text-align: center;
    white-space: nowrap;
    height: 39px;
    line-height: 39px;
    padding: 0 45px;
    font-weight: 400;
    font-size: 17px;
    color: var(--grey-text-color);
    border-radius: 10px;
    background: #fff;
}
.customer__nav li a.active {
    background: var(--orange);
    color: #fff;
}
.customer-badge {
    display: block;
    text-align: center;
    white-space: nowrap;
    height: 39px;
    line-height: 39px;
    padding: 0 15px;
    font-weight: 400;
    font-size: 17px;
    color: var(--grey-text-color);
    border-radius: 10px;
    background: #fff;
    background: var(--orange);
    color: #fff;
}
.customer__nav {
    margin-bottom: 46px;
}
.customer__stat img {
    width: 100%;
}
.customer-dashboard__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.dash__period {
    display: flex;
    gap: 8px;
}
.dash__period li a {
    border-radius: 10px;
    padding: 0 10px;
    display: inline-block;
    height: 28px;
    line-height: 28px;
    white-space: nowrap;
    color: gray;
}
.dash__period li a.active {
    background: var(--orange);
    color: #fff;
}
.dash__arrows {
    display: flex;
    gap: 4px;
}
.dash__arrows .dash-arrow {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1.06px solid #e8e8e8;
}
.dash__arrows .dash-arrow {
    flex-shrink: 0;
}
.customer__stat {
    margin-bottom: 37px;
}
.dash-item__label {
    margin-bottom: 20px;
}
.dash-item__count-sum {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}
.dash-item__sum {
    font-weight: 700;
    font-size: 28px;
    color: var(--text-color);
}
.customer-item__title {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 26px;
}
.customer-item__title.orange {
    color: var(--orange);
}
.customer-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}
.customer-numb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 40px;
    margin-bottom: 10px;
}
.customer-numb__value {
    width: 30px;
    height: 30px;
    background: #f2f6f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.customer-item__bottom {
    margin-top: 20px;
}
.orange {
    color: var(--orange);
}
.orange-bg {
    background: var(--orange);
    color: #fff;
}
.customer-item__sub {
    font-weight: 700;
    font-size: 17px;
    color: var(--text-color);
    margin-bottom: 25px;
}
.customer-item__numbs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.customer-detail__value {
    display: flex;
    gap: 5px;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: var(--text-color);
}
.customer-detail__total {
    font-weight: 700;
    font-size: 27px;
    line-height: 100%;
    margin-bottom: 9px;
}
.customer-detail__sub {
    font-weight: 400;
    font-size: 11px;
    line-height: 150%;
    color: var(--text-color);
}
.customer-more {
    margin-top: 25px;
    font-weight: 300;
    font-size: 17px;
    line-height: 150%;
    color: #04b;
}
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}
.table td, .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
.table th {
    text-align: left;
    font-weight: 500;
    font-size: 17px;
    color: var(--grey-text-color);
    padding-top: 38px;
}
.table td {
    font-size: 25px;
}
.td-order,
.td-price,
.td-order,
.td-actions {
    font-weight: 500;
}
.td-order .success {
    color: var(--orange);
}
.customer-nav__in {
    overflow: auto;
}
.customer__nav {
    min-width: 1400px;
}
.dash__title {
    font-weight: 700;
    font-size: 28px;
    color: var(--text-color);
}
/* 33524 */
.modal {
    display: none; 
    -webkit-box-align: center; 
    -ms-flex-align: center; 
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed; 
    z-index: 999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background: rgba(0, 0, 0, 0.50);
    padding: 20px;
}
.modal-content {
    position: relative;
    width: 100%;
    max-width: 450px;
    max-height: 100%;
    margin: 0 auto;
    overflow-y: auto;
    background-color: #fff;
    padding: 30px;
    -webkit-animation: slideIn .3s;
    animation: slideIn .3s;
    border-radius: 0;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
}
.modal-content h2 {
    color: #007568;
}
.modal-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    margin: 0 0 30px;
    text-align: center;
}
.modal .form label, 
.modal .form__terms, 
.modal .form__terms a {
    color: #222;
}
.modal .form__terms {
    margin-left: 0;
}
.modal .btn-main {
    width: 100%;
}
.content {
    padding-bottom: 100px;
}
.modal .close {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
}
.modal .close::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    width: 22px;
    height: 2px;
    background: #222;
}
.modal .close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 22px;
    height: 2px;
    background: #222;
}
.form input[type="text"], 
.form input[type="email"] {
    width: 100%;
    border: 1px solid #c2d5e3;
    border-radius: 10px;
    height: 46px;
    line-height: 46px;
    padding: 0 20px;
}
.form textarea {
    background: transparent;
    width: 100%;
    border: 1px solid #c2d5e3;
    padding: 20px;
    border-radius: 10px;
}
.cons .form input[type="text"],
.cons .form input[type="email"] {
    border: none;
}
.form-group {
    margin-bottom: 24px;
}
.modal .form input[type="text"],
.modal .form input[type="email"],
.modal .form .btn_red {
    width: 100%;
}

.panel-adaptive {
    position: fixed;
    top: 66px;
    right: 0;
    left: 100%;
    bottom: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    padding-bottom: 55px;
    overflow-y: auto;
    background: #222;
    display: none;
    -webkit-transition: -webkit-transform .35s cubic-bezier(.55,.085,.68,.53);
    transition: -webkit-transform .35s cubic-bezier(.55,.085,.68,.53);
    -o-transition: transform .35s cubic-bezier(.55,.085,.68,.53);
    transition: transform .35s cubic-bezier(.55,.085,.68,.53);
    transition: transform .35s cubic-bezier(.55,.085,.68,.53), -webkit-transform .35s cubic-bezier(.55,.085,.68,.53);
    transition: transform .35s cubic-bezier(.55,.085,.68,.53),-webkit-transform .35s cubic-bezier(.55,.085,.68,.53);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateZ(0);
    border-top: 2px solid #1a1a1a;
}
.panel-adaptive.panel-right {
    -webkit-transform: translateX(-100%) translateZ(0);
    transform: translateX(-100%) translateZ(0);
    -webkit-transition-duration: .63s;
         -o-transition-duration: .63s;
            transition-duration: .63s;
    -webkit-transition-timing-function: cubic-bezier(.23,1,.32,1);
         -o-transition-timing-function: cubic-bezier(.23,1,.32,1);
            transition-timing-function: cubic-bezier(.23,1,.32,1); 
}
.panel-adaptive ul li {
    list-style: none;
    padding: 0 20px;
}
.panel-adaptive ul {
    padding-top: 40px;
}
.panel-adaptive ul li a {
    display: block;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
}

@-webkit-keyframes slideIn {
  0% {
    opacity: .7;
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes slideIn {
  0% {
    opacity: .7;
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.top-btn {
    position: fixed;
    font-size: 1.5em;
    width: 50px;
    height: 50px;
    padding-top: 7px;
    background-color: var(--e60002);
    color: #fff;
    border-radius: 50%;
    margin-left: 0.4em;
    cursor: pointer;
    right: 3.8%;
    bottom: 3.8%;
    z-index: 99;
    text-align: center;
    display: none;
}
.top-btn svg {
    display: inline-block;
    color: var(--black);
}

.swiper-pagination-bullet {
    opacity: .12;
    background: var(--e60002);
    width: 13px;
    height: 13px;
    vertical-align: middle;
    margin: 0 5px;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    width: 13px;
    height: 13px;
    vertical-align: middle;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: fit-content;
    margin: 0;
    top: 0;
    left: 0;
    bottom: inherit;
}
.swiper-pagination {
    margin-top: 40px;
    display: block;
    position: relative;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
    vertical-align: baseline;
}
.header__menu {
    margin-right: 20px;
    display: none;
}
.mobile-menu__right {
    margin-left: auto;
    display: none;
}
.header__menu button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--e60002);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.hamburger {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--purple);
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible; 
}
.hamburger-box {
    width: 30px;
    height: 27px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px; 
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; 
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; 
}
.hamburger-inner::before {
    top: -10px; 
}
.hamburger-inner::after {
    bottom: -10px; 
}

/* Elastic Reverse */
.hamburger--elastic-r .hamburger-inner {
    top: 5px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); 
}
.hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; 
}
  .hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
}

.hamburger--elastic-r.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(-135deg);
    transition-delay: 0.075s; 
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; 
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s; 
}
.header__mobile-panel {
    display: none;
    margin-left: auto;
    gap: 10px;
}
.filter-mobile__header,
.filter-mobile__apply,
.filter-btn {
    display: none;
}
.header__search {
    position: relative;
}
.search__block {
    left: 0;
    top: 42px;
    right: 0;
    width: 100%;
    position: absolute;
    background: #fff;
    z-index: 80;
}
#search-input {
    font-size: 14px;
}

@media (max-width: 1300px) {
    .products .col-3 {
        width: calc(100% / 3);
    }
}
@media (max-width: 1200px) {
    body {
        padding-left: 0;
    }
    .sidebar {
        display: none;
    }
    .header__menu {
        display: block;
        margin-right: 20px;
    }
    .header__logo img {
        width: 50px;
    }
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        right: 0;
        background: #fff;
        z-index: 99;
        border: none;
    }
    .header__in {
        height: 66px;

    }
}
@media (max-width: 1150px) {
    .top-header__item {
        font-size: 13px;
        margin-right: 15px;
    }
    .header__slogan {
        display: none;
    }
}

@media (max-width: 991px) {
    .filter-btn {
        display: block;
        margin-bottom: 40px;
    }
    .filter-btn .btn {
        width: 100%;
    }
    .h1__in h1 {
        margin-bottom: 0;
    }
    .filter-mobile__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }
    .filter-mobile__title {
        font-weight: bold;
        font-size: 20px;
    }
    .filter.active {
        display: block;
    }
    .filter {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: auto;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 99;
        padding: 20px 20px 100px;
    }
    .footer__brand img {
        width: 71px;
    }
    .filter-mobile__apply {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: auto;
        background: #fff;
        z-index: 2;
        padding: 20px;
        width: 100%;
        z-index: 10;
        border-top: 1px solid #eee;
    }
    .filter-mobile__apply .btn {
        width: 100%;
    }
    .moblie-header__phone {
        white-space: nowrap;
    }
    .search-block.active {
        height: 100px;
    }
    .cart-total__content {
        order: -1;
        text-align: right;
        width: 100%;
    }
    .cart-total {
        display: flex;
        flex-wrap: wrap;
    }
    .header__address-email,
    .header__phone-schedule,
    .header__callback,
    .header__social {
        display: none;
    }
    .footer__top {
        flex-wrap: wrap;
    }
    .footer__social {
        flex-wrap: wrap;
    }
    body {
        padding-top: 70px;
        font-size: 14px;
        line-height: 20px;
    }
    .top-header,
    .header__nav {
        display: none;
    }
    .header__fav svg path {
        fill: #fff;
    }
    .main-header__in {
        height: 70px;
    }
    .header__logo img {
        width: 50px;
    }
    .header__menu {
        display: block;
    }
    .hero__h1 {
        font-size: 24px;
        text-align: center;
        line-height: 32px;
    }
    .hero__h1 br {
        display: none;
    }
    .hero__bens {
        overflow: hidden;
    }
    .hero__bens .row {
        width: 100%;
        overflow-x: auto;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .hero-item {
        width: 320px;
        padding-bottom: 10px;
    }
    h2 {
        font-size: 26px;
        line-height: 32px;
    }
    .cat-item__title {
        font-size: 15px;
    }
    .front-catalog .cats {
        margin-bottom: 40px;
    }
    .product-card__title a {
        font-size: 14px;
        line-height: 20px;
    }
    .footer__in {
        display: block;
    }
    .footer__col.footer__middle {
        padding: 0;
        margin: 0;
        border: none;
    }
    .footer__col:last-child {
        display: none;
    }
    .footer-bottom__in {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .footer-bottom__copy {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .hero-item__text {
        font-size: 14px;
        line-height: 20px;
    }
    .hero__sub {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }
    .hero__sub br {
        display: none;
    }
    .hero__main {
        padding: 40px 0;
    }
    .tab-nav li a {
        font-size: 14px;
        line-height: 30px;
    }
    .footer__slogan {
        display: none;
    }
    .footer__social {
        text-align: center;
        margin-bottom: 40px;
    }
    .footer__bottom {
        margin-top: 50px;
    }
    .footer__top {
        border: none;
    }
    .products.row {
        margin: 0 -10px;
    }
    .products .col-3 {
        padding: 0 10px;
        width: calc(100% / 2);
    }
    .partners-list.row {
        margin: 0 -10px;
    }
    .partners-list .col-4 {
        padding: 0 10px;
        width: calc(100% / 2);
    }
    .partner-item {
        padding: 0 15px;
    }
    .partner-item img {
        max-width: 100%;
        height: auto;
        max-height: 50px;
    }
    .cons .form-group {
        margin-bottom: 20px;
    }
    .form-row {
        display: block;
    }
    .cons .form__terms br {
        display: none;
    }
    .form input[type="text"],
    .form input[type="email"] {
        width: 100%;
    }
    .cons .form-group .btn_red {
        width: 100%;
    }
    .partners__img {
        margin-top: 40px;
    }
    .partners__img img {
        width: 120px;
    }
    .partners__text {
        font-size: 15px;
    }
    .front-about__sert {
        padding-bottom: 0;
    }
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 77;
        background: #222;
    }
    .panel-adaptive {
        display: block;
    }
    .mobile-header {
        display: block;
        background: var(--1d2022);
    }
    .mobile-header .header__btns {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .cart-btn__val {
        display: none;
    }
    .header__btn {
        width: 46px;
        height: 46px;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex: none;
        flex: none;
    }
    .header__btn .svg svg {
        width: 20px;
        height: 20px;
    }
    .header__btns a {
        margin-left: 10px;
    }
    .header__btns a:first-child {
        margin: 0 auto 0 0;
    }
    .mobile-header .btn_red {
        padding: 0 20px;
        font-size: 12px;
        height: 46px;
        line-height: 46px;
    }
    .mobile-header__top {
        padding: 20px 0;
    }
    .text-block {
        font-size: 14px;
        line-height: 20px;
    }
    .blue-bold {
        font-size: 18px;
        line-height: 24px;
    }
    .mobile-social-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .mobile-phone {
        font-size: 16px;
        font-weight: bold;
    }
    .mobile-schedule {
        font-size: 14px;
    }
    .mobile__social {
        margin-left: auto;
    }
    .mobile__social a {
        margin-left: 6px;
        color: var(--dark-blue);
    }
    .mobile__social a:first-child {
        margin-left: 0;
    }
    .mobile-header__middle {
        padding-bottom: 20px;
    }
    .tab-nav {
        overflow-y: auto;
        width: 100%;
        padding-bottom: 10px;
    }
    .cat-panel__per-page {
        display: none;
    }
    h1 {
        font-size: 26px;
        line-height: 34px;
        font-weight: 800;
        margin-bottom: 28px;
    }
    .category-page .cats {
        margin-bottom: 28px;
    }
    .notification {
        top: 90px;
    }
    .form__terms br {
        display: none;
    }
    .form__terms {
        margin-top: 20px;
    }
    .breadcrumb {
        margin: 0;
        width: 100%;
        overflow-x: auto;
        padding: 30px 0;
    }
    .cart-item {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        border-bottom: 1px solid rgba(0, 119, 182, .2);
    }
    .cart-item__remove {
        position: absolute;
        top: 0;
        right: 0;
    }
    .cart-item__remove span {
        display: none;
    }
    .cart-item td {
        border: none;
    }
    .cart-item__img {
        width: 50px;
    }
    .cart-item__title {
        font-size: 13px;
        line-height: 18px;
    }
    .cart-item__price {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .cart-item .cart-item__title {
        width: calc(100% - 50px);
    }
    .cart-item__qty .product-card__qty {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin: 0;
    }
    .cart-item__price {
        width: auto;
        margin-left: auto;
    }
    .panel-adaptive {
        display: block;
    }
    .faq-item__helper {
        display: none;
    }
    .product__tabs {
        padding: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 0;
        background: #fff;
    }
    .product__tabs .tab-nav {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .tab-nav {
        margin-bottom: 20px;
    }
    .product__compare {
        display: none;
    }
    .product-card__qty {
        margin-left: auto;
    }
    .product__btns {
        gap: 10px;
    }
    .product__btns .btn {
        padding: 0 10px;
        font-size: 12px;
    }
    .product-page__main h1 {
        font-size: 24px;
        line-height: 30px;
    }
    .product-attributes {
        display: block;
    }
    .product-attributes-column {
        width: 100%;
    }
    .contact__btn {
        margin-bottom: 20px;
    }
    .modal-content {
        padding: 15px;
    }
    .modal-title {
        padding: 0 30px;
        font-size: 24px;
        line-height: 1.2;
    }
    .hero__btns {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .hero__btns a {
        width: fit-content;
    }
    .m-block {
        margin-bottom: 60px;
    }
    .cons__in {
        padding: 20px;
    }
    .reviews__in {
        padding: 20px;
    }
    .front-partners {
        overflow: hidden;
    }
    .review-item__text {
        font-size: 18px;
    }
    .reviews__decor {
        display: none;
    }
    .review-item__author {
        font-size: 17px;
    }
    .reviews .swiper-nav {
        justify-content: center;
    }
    .mobile-menu__right {
        display: flex;
        gap: 12px;
    }
    .moblie-header__phone .mobile-schedule {
        font-weight: 400;
        font-size: 14px;
        line-height: 136%;
        text-align: right;
        color: var(--ffffff);
        opacity: .6;
        margin-bottom: 4px;
    }
    .moblie-header__phone .header__phone {
        font-weight: 600;
        font-size: 18px;
        line-height: 133%;
        text-align: right;
        color: #fff;
    }
    .hero__btns a:last-child {
        display: none;
    }
    .hero__h1 {
        text-align: center;
    }
    .hero__sub {
        text-align: center;
    }
    .cat-thumb__img {
        height: 225px;
    }
    .cat-thumb__title {
        font-size: 19px;
    }
    .front-about__btn {
        margin-bottom: 30px;
    }
    .h2__sub {
        margin-bottom: 40px;
    }
    .docs__title {
        font-weight: 600;
        font-size: 20px;
        line-height: 125%;
        text-transform: uppercase;
        color: var(--e60002);
    }
    .docs-nav.swiper-nav {
        justify-content: center;
        margin-bottom: 20px;
    }
    .cons__title {
        font-size: 32px;
        text-align: center;
    }
    .cons__sub {
        display: none;
    }
    .cons__text {
        text-align: center;
        margin-bottom: 30px;
    }
    .cons__text br {
        display: none;
    }
    .footer-copy__content {
        flex-direction: column;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer__decor {
        display: none;
    }
    footer {
        padding: 40px 0;
    }
    .footer__top {
        padding: 0;
        margin: 0 0 40px;
        border: none;
    }
    .footer__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .swiper__in {
        margin: 0;
    }
    .footer__nav {
        gap: 0;
        margin-bottom: 40px;
    }
    .footer__list {
        width: 48%;
    }
    .footer__list li {
        margin-bottom: 4px;
    }
    .footer__list li a {
        font-size: 13px;
    }
    .compare__chars {
        width: 100px;
        padding-top: 360px;
        font-size: 12px;
    }
    .char-item {
        font-size: 12px;
    }
    .compare__in {
        padding-left: 120px;
    }
    .page-compare .product-card {
        height: 300px;
    }
    .product-card__compare-buy .btn {
        width: 100%;
        font-size: 10px;
    }
    .is-scroll header {
        top: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 20;
    }
    .is-scroll header .main-header {
        display: block;
    }
    .is-scroll {
        padding-top: 70px;
    }
    .hero-slider__in .swiper-nav {
        margin: 0 auto;
    }
    .hero__main {
        height: 500px;
    }
    body {
        padding-top: 66px;
    }
    .top-menu {
        display: none;
    }
    .header__search {
        display: none;
    }
    .header-item__title {
        display: none;
    }
    .header__btns {
        margin-left: auto;
    }
    footer {
        padding: 20px 0;
    }
    .footer__brand {
        margin-bottom: 20px;
    }
    .footer__brand img {
        width: 120px;
    }
    .footer__contact {
        margin-bottom: 15px;
    }
    .footer__callback {
        margin-bottom: 40px;
    }
    .footer__email {
        margin-bottom: 20px;
    }
    .footer__pay {
        margin-bottom: 40px;
    }
    .footer-copy__in {
        padding: 20px 0;
        font-size: 11px;
        display: block;
    }
    .hero {
        padding: 40px 0;
    }
    h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .title-block {
        display: block;
    }
    .about__team img {
        max-width: 100%;
    }
    .news-block__img {
        width: 100%;
    }
    .news-block {
        padding: 20px;
    }
    .title-block h2 {
        min-width: auto;
    }
    .feature-item__title {
        font-size: 14px;
    }
    .feature-item__text {
        font-size: 12px;
    }
    .gray-block {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    .title-block h2 {
        margin-bottom: 20px;
    }
    .cat-item__title {
        font-size: 20px;
    }
    .cat-item__child a {
        font-size: 14px;
    }
    .news-block__img {
        margin-bottom: 20px;
    }
    .news-block__title a {
        font-size: 16px;
    }
    .news-block__price .price-current {
        font-size: 16px;
    }
    .news-block__price .price-old {
        font-size: 14px;
    }
    .front-hits {
        padding: 50px 0;
    }
    
    .review-item__title {
        display: block;
    }
    .review-item__text {
        margin-top: 20px;
    }
    .show-more {
        margin-top: 20px;
    }
    .front-reviews,
    .front-about {
        padding-bottom: 50px;
    }
    .front-seo {
        padding: 50px 0;
    }
    .panel-adaptive {
        display: block;
    }
    .gallery-lead__btn {
        text-align: left;
        margin-top: 20px;
    }
    .gallery-lead {
        padding: 20px;
    }
    .gallery-lead br {
        display: none;
    }
    .bread-line {
        padding: 20px 0;
    }
    .breadcrumb {
        padding: 0;
        margin-bottom: 10px;
    }
    h1 {
        font-size: 28px;
        margin: 20px 0;
    }
    .hero .swiper-slide img {
        height: 450px;
        width: 100%;
        object-fit: cover;
    }
    .profile-nav {
        margin-bottom: 20px;
    }
    .products-grid.row {
        margin: 0 -10px;
    }
    .products-grid .col-3 {
        padding: 0 10px;
        width: 50%;
    }
    .product-item__img img {
        height: 180px;
    }
    .product-item__in {
        padding: 10px;
    }
    .product-item__price .price-current {
        font-size: 20px;
    }
    .product-item__title a {
        font-size: 16px;
    }
    .header__catalog {
        display: none;
    }
    .header-item__icon {
        margin-bottom: 0;
    }
    .profile-form__title {
        font-size: 20px;
    }
    .footer__apps {
        margin: 20px 0;
    }
    .footer__list-row {
        margin-bottom: 40px;
    }
    .footer__title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .footer-copy__in {
        text-align: left;
    }
    .gift-item {
        display: block;
        height: auto;
    }
    .gift-item__img img {
        width: 100%;
        height: 200px;
    }
    .gift-item__conditions {
        padding: 10px;
    }
    .gift-conditions {
        flex-wrap: wrap;
    }
    .gift-line {
        min-width: 100%;
    }
    .gift-go {
        display: flex;
        flex-wrap: wrap;
    }
    .gift__btn {
        width: 100%;
    }
    .gift__progress {
        width: 100%;
    }
    .spec-item {
        display: block;
    }
    .spec-item__img img {
        width: 100%;
    }
    .quiz__title {
        font-size: 28px;
        line-height: 1.2;
    }
    .quiz__btn {
        margin-bottom: 20px;
    }
    .m-100 {
        margin-bottom: 50px;
    }
    .promo-slide__in {
        padding: 20px;
    }
    .promocode-slide__title {
        font-size: 28px;
        line-height: 1.2;
    }
    .promo-slider__nav {
        left: 20px;
    }
    .promo-slide__in {
        height: 340px;
    }
    .promo__title {
        font-size: 28px;
        line-height: 1.2;
    }
    .promo__sub {
        font-size: 16px;
    }
    .promo__circle {
        margin-bottom: 20px;
    }
    .link-item {
        margin-bottom: 20px;
    }
    .hero__title {
        font-size: 34px;
        line-height: 1.1;
    }
    .hero__sub {
        font-size: 18px;
        text-align: left;
    }
    .hero-item {
        width: 100%;
    }
    .hero-item__img {
        margin-bottom: 20px;
    }
    .hero-slider__nav {
        left: 0;
    }
    .table__in {
        overflow: auto;
    }
    .table__in table {
        width: 1000px;
    }
    .customer-dashboard__head {
        display: block;
    }
    .dash__title {
        margin-bottom: 10px;
    }
    .dash__title {
        font-size: 20px;
    }
    .dash__period {
        overflow: auto;
    }
    .table td {
        font-size: 16px;
    }
    .panel-adaptive ul li {
        margin-bottom: 10px;
    }
    .cart-list__top {
        gap: 10px;
    }
    .cart-item__img img {
        width: 50px;
        height: 50px;
    }
    .cart-item__title a {
        font-size: 20px;
    }
    .filters__btn-all {
        margin-bottom: 20px;
    }
    .products-grid.row .col-4 {
        width: 50%;
        padding: 0 10px;
    }
    .shop-item__rait {
        line-height: 1;
    }
    .cart-title {
        display: block;
    }
    .cart-title h1 {
        margin-bottom: 10px;
    }
    .cart-title {
        gap: 10px;
    }
    .cart-title__count {
        font-size: 16px;
    }
    .contacts .form-terms {
        margin-bottom: 20px;
    }
    .form-terms {
        display: block;
    }
    .contacts .form .btn {
        margin-bottom: 10px;
    }
    .text-block h3 {
        line-height: 1.2;
    }
    .article-banner {
        height: 300px;
        padding: 20px;
    }
    .article-banner__in {
        display: block;
    }
    .article-banner h1 {
        margin-bottom: 10px;
    }
    .profile-pays__btns {
        flex-wrap: wrap;
    }
    .customer__dashboard {
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .products.row {
        margin: 0;
    }
    .products .col-3 {
        padding: 0;
        width: 100%;
    }
    .cart-totals__in {
        display: block;
    }
}
/* 267 */
@media (max-width: 340px) {
    .hero__h1 {
        font-size: 20px;
        line-height: 28px;
    }
    .mobile-header .btn_red {
        padding: 0 6px;
    }
}