/* Fonts setting for css */
@font-face {
    font-family: "CenturyGothic";
    font-display: swap;
    src: url("../fonts/gothic/CenturyGothic.eot");
    src: local("CenturyGothic"), local("../fonts/gothic/CenturyGothic"), url("../fonts/gothic/CenturyGothic.eot?#iefix") format("embedded-opentype"), url("../fonts/gothic/CenturyGothic.woff") format("woff"), url("../fonts/gothic/CenturyGothic.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "CenturyGothic";
    font-display: swap;
    src: url("../fonts/gothic/CenturyGothic-Bold.eot");
    src: local("CenturyGothic Bold"), local("../fonts/gothic/CenturyGothic-Bold"), url("../fonts/gothic/CenturyGothic-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/gothic/CenturyGothic-Bold.woff") format("woff"), url("../fonts/gothic/CenturyGothic-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

/* Basic setting for css file */
:root {
    --accent: #000;
    --secondary: #51555e;
    --gaccent: #8a909b;
    --glaccent: #f7f7f7;
    --menu-color: #52565f;
    --some-fonts: #000;
    --fcolor: #4e4e4e;
    --sale-color: #2bba4d;
    --bg-color: #fff;
    --filter-title: #f7f7f7;
    --filter-bg: #f7f7f7;
    --font: "Inter", sans-serif;
    --current-fontsize: 16px;
    --current-grid: 1746px;
    --current-mingrid: 95%;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
}

*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .container {
        max-width: var(--current-grid);
        padding-left: 90px;
        padding-right: 90px;
    }
}

body {
    min-width: 320px;
    overflow-x: hidden;
    font-size: var(--current-fontsize);
    font-family: var(--font);
    font-weight: 400;
    background-color: var(--bg-color);
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    outline: none;
    color: var(--secondary);
}

a:hover {
    text-decoration: none;
    color: var(--accent);
}

img {
    max-width: 100%;
    display: block;
}

ol,
ul {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

.d-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.df-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.d-none {
    display: none !important;
}

.p0 {
    padding: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.m0 {
    margin: 0 !important;
}

.m-auto {
    margin: auto;
}

.mr-0 {
    margin-right: 0 !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

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

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

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

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

textarea:focus::placeholder {
    opacity: 0;
}

body.fix {
    position: fixed;
    overflow: hidden;
    width: 100%;
}

.iti {
    width: 100%;
}

.center__table {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 10px auto;
}

/* Actives */
/* Block with phone in header */
.drop-top {
    top: -24px !important;
}

.drop-top p {
    color: #121313 !important;
}

.drop-top .fa-chevron-down {
    color: #121313 !important;
}

.incompare {
    top: 75px !important;
    visibility: visible !important;
}

.form-control:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.05);
}

/* UI nulled style */
.ui-tabs .ui-tabs-panel {
    padding: 0;
}

.hide__after::after {
    display: none;
}

/* Breadcrumbs */
ul.breadcrumb {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: 20px 0 0;
    padding: 0;
    background-color: transparent;
}

ul.breadcrumb li {
    display: flex;
    align-items: center;
}

ul.breadcrumb li a {
    color: #9a9a9a;
    font-family: var(--font);
    font-size: 13px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

ul.breadcrumb li a:hover {
    color: var(--secondary);
}

ul.breadcrumb li span {
    margin: 0 5px;
    color: #9a9a9a;
}

ul.breadcrumb li.active {
    color: #707890;
    font-size: 13px;
    font-weight: bold;
}

.center__pagination {
    margin: 0 auto;
}

.block__center {
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin-bottom: 0;
}

.slick-track {
    margin-left: initial;
    margin-right: initial;
}

input::-webkit-input-placeholder {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

input::-moz-placeholder {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

input:-moz-placeholder {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

input:-ms-input-placeholder {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

input:focus::-webkit-input-placeholder {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

input:focus::-moz-placeholder {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

input:focus:-moz-placeholder {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

input:focus:-ms-input-placeholder {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

/* Header setting for css */
/* Index header */
/* --Top header block */
.top-header {
    width: 100%;
    min-height: 81px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
}

.top-header__logo {
    padding-right: 15px;
}

.top-header__logo #logo {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
}

.top-header__logo #logo img {
    height: auto;
}

/* Top header menu */
.top-header__menu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.top-header__menu ul li {
    margin-right: 30px;
    display: flex;
}

.top-header__menu ul li:last-child {
    margin-right: 20px;
}

.top-header__menu ul li a {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 13px;
    -webkit-transition: color 0.25s ease-in-out;
    -o-transition: color 0.25s ease-in-out;
    transition: color 0.25s ease-in-out;
}

.top-header__menu ul li a:hover {
    color: var(--accent);
    text-decoration: none;
}

/* Top header info block */
.top-header__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative;
}

.top-header__info > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 205px;
    height: 26px;
    position: relative;
    border-right: 2px solid #b7bbc7;
    -webkit-transition: border-right 0.5s ease-in-out;
    -o-transition: border-right 0.5s ease-in-out;
    transition: border-right 0.5s ease-in-out;
}

.top-header__info > div:first-child {
    padding-right: 20px;
    padding-left: 20px;
    border-left: 2px solid #b7bbc7;
}

.top-header__info > div p {
    padding: 0 7px;
    font-weight: bold;
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 13px;
    -webkit-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

/* Top header info block with phone */
.top-header__info-phone {
    position: relative;
}

.top-header__info-phone .phone-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 26px;
    height: 26px;
    background-color: transparent;
    border-radius: 100%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.top-header__info-phone .phone-block .fa-phone {
    color: var(--gaccent);
    width: 12px;
    height: 12px;
}

.top-header__info .fa-chevron-down {
    width: 11px;
    height: 12px;
    color: var(--gaccent);
    margin-bottom: 2px;
}

.top-header__info-phone p {
    font-weight: bold;
}

.top-header__info-phone:hover p {
    cursor: pointer;
    color: var(--secondary);
}

.top-header__info-phone:hover .fa-chevron-down {
    cursor: pointer;
    color: var(--secondary);
}

.top-header__info-phone:hover .phone-block {
    background-color: var(--secondary);
}

.top-header__info-phone:hover .phone-block .fa-phone {
    color: #fff;
}

.dropdown-phone__block {
    position: absolute;
    width: 200px;
    top: -1000px;
    right: 0;
    z-index: 300;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    -webkit-transition: top 0.5s ease-in-out;
    -o-transition: top 0.5s ease-in-out;
    transition: top 0.5s ease-in-out;
}

.dropdown-inner__phone {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 31px;
    margin-bottom: 17px;
}

.dropdown-inner__phone .fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dropdown-inner__info .fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dropdown-phone__block .phone-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 26px;
    height: 26px;
    background-color: var(--secondary);
    border-radius: 100%;
}

.dropdown-phone__block .phone-block .fa-phone {
    color: #fff;
    width: 12px;
    height: 12px;
}

.dropdown-phone__block-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 11px;
    margin-left: 19px;
    margin-right: 19px;
}
/*
.dropdown-phone__block-link:last-child {
    margin-bottom: 0;
}
*/
.dropdown-phone__block-link .fa-phone {
    width: 12px;
    height: 12px;
    color: var(--secondary);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-left: 12px;
    margin-right: 16px;
    -webkit-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

.dropdown-phone__block-link a {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    -webkit-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

.dropdown-phone__block-link a:hover {
    color: var(--secondary);
}

.dropdown-phone__block-call {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    outline: none;
    height: 52px;
    background-color: var(--secondary);
    color: #ffffff;
    font-family: var(--font);
    font-size: 13px;
    border: 1px solid transparent;
    margin-top: 21px;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.dropdown-phone__block-call:hover {
    background-color: var(--accent);
    color: #fff;
}

.dropdown-phone__block-call:focus {
    background-color: var(--secondary);
    color: #fff;
}

/* Top header info block with user */
.top-header__info-user {
    padding: 0 10px;
    line-height: 1.3;
}

.top-header__info-user .fa-user {
    width: 11px;
    min-width: 11px;
    height: 12px;
    color: var(--gaccent);
}

.top-header__info-user .user__block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 26px;
    min-width: 26px;
    height: 26px;
    background-color: transparent;
    border-radius: 100%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.top-header__info-user:hover .user__block {
    background-color: var(--secondary);
}

.top-header__info-user .user__block .fa-user {
    font-size: 13px;
}

.top-header__info-user:hover .user__block .fa-user {
    color: #fff;
}

.top-header__info-user:hover p {
    cursor: pointer;
    color: var(--secondary);
}

.top-header__info-user:hover .fa-chevron-down {
    cursor: pointer;
    color: var(--secondary);
}

.dropdown-info__block {
    position: absolute;
    width: 202px;
    top: -1000px;
    right: 0;
    z-index: 300;
    background-color: #fff;
    padding-bottom: 21px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    -webkit-transition: top 0.5s ease-in-out;
    -o-transition: top 0.5s ease-in-out;
    transition: top 0.5s ease-in-out;
}

.dropdown-inner__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 31px;
    margin-bottom: 17px;
}

.dropdown-info__block-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 11px;
    margin-left: 19px;
    margin-right: 19px;
}

.dropdown-info__block-link:last-child {
    margin-bottom: 0;
}

.dropdown-info__block-link .fa-pencil-alt,
.dropdown-info__block-link .fa-unlock {
    width: 12px;
    height: 12px;
    color: var(--secondary);
    margin-left: 8px;
    margin-right: 16px;
    -webkit-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

.dropdown-info__block-link .header__icons {
    width: 12px;
    height: 12px;
    color: var(--secondary);
    margin-left: 8px;
    margin-right: 16px;
    -webkit-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

.dropdown-info__block-link a {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    -webkit-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

.dropdown-info__block-link a:hover {
    color: var(--secondary);
}

.dropdown-inner__info .user__block {
    background-color: var(--secondary);
}

.dropdown-inner__info .user__block .fa-user {
    color: #fff;
}

/* Bottom header block */
.bottom-header {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    margin: 0 15px;
    transition: all 0.4s ease;
}

.bottom-header.sticky__header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    animation: sticky_head 0.25s ease-in;
}

.header.sticky__header {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: #f2f3f4;
    animation: sticky_head 0.25s ease-in;
}

@keyframes sticky_head {
    from {
        top: -25%;
    }
    to {
        top: 0;
    }
}

/* Header index menu */
.bottom-header__menu {
    display: flex;
    width: 75%;
    height: 100%;
    border-right: 2px solid #ffffff;
}

.bottom-header__menu nav {
    display: flex;
    width: 100%;
}

/* Dropdown header menu */
.dropdown__menu {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.nav__menu li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    height: 100%;
    padding: 0;
}

.nav__menu li:last-child {
    border-bottom: none;
}

.nav__menu li a {
    position: relative;
    white-space: nowrap;
    z-index: 200;
    padding: 0 23px;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    color: var(--menu-color);
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 1.21;
    width: 100%;
    height: 100%;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
}

.nav__menu li a:hover {
    color: var(--secondary);
}

.nav__menu li a svg path {
    -webkit-transition: fill 0.5s ease;
    -o-transition: fill 0.5s ease;
    transition: fill 0.5s ease;
}

.nav__menu li a:hover svg path {
    fill: var(--secondary);
}

.nav__menu li a.bold {
    font-weight: bold;
}

.nav__menu > li:first-child > a {
    padding-left: 50px;
}

.nav__menu > li > a:before {
    content: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background: #fff;
    z-index: -1;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.nav__menu > li:hover > a:before {
    content: "";
}

.category__image {
    width: 27px;
    margin-right: 31px;
    text-align: center;
}

.category__image img {
    display: block;
    margin: 0 auto;
}

.category__banner {
    display: flex;
    background-color: #ba2527;
    color: #ffffff;
    justify-content: center;
    padding: 40px 20px;
    margin-top: 20px;
    text-align: center;
}

.category__banner p {
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
}

.dropdown__inner {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 300;
    width: 100%;
    background: #fff;
    height: auto;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.inner__menu li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 24px 31px;
    border-bottom: 1px solid #ededed !important;
}

.inner__menu li:last-child {
    border-bottom: none !important;
}

.inner__menu li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #000;
    font-family: var(--font);
    font-size: 15px;
    cursor: pointer;
    line-height: 50px;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
}

.header__menu-button {
    background-color: var(--accent);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    cursor: pointer;
    height: 75px;
    -webkit-transition: background-color 0.5s ease-in-out;
    -o-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out;
}

.header__menu-button .title__menu {
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    text-transform: uppercase;
}

.header__menu-button .menu__burger {
    width: 31px;
}

.header__menu-button .menu__burger span {
    background-color: #fff;
    display: block;
    height: 3px;
    margin-bottom: 5px;
    float: right;
}

.header__menu-button .menu__burger span:last-child {
    margin-bottom: 0;
}

.header__menu-button .menu__burger span:nth-child(1) {
    width: 20px;
    -webkit-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}

.header__menu-button .menu__burger span:nth-child(2) {
    width: 26px;
    -webkit-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}

.header__menu-button .menu__burger span:nth-child(3) {
    width: 31px;
    -webkit-transition: width 0.5s ease-in-out;
    -o-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
}

.header__menu-button:hover {
    background-color: var(--accent);
}

.header__menu-button:focus {
    background-color: var(--accent);
}

.header__menu-button:hover .menu__burger span:nth-child(1) {
    width: 31px;
}

.header__menu-button:hover .menu__burger span:nth-child(2) {
    width: 26px;
}

.header__menu-button:hover .menu__burger span:nth-child(3) {
    width: 20px;
}

/* Active burder */
.drop-burger span:nth-child(1) {
    width: 31px !important;
}

.drop-burger span:nth-child(2) {
    width: 26px !important;
}

.drop-burger span:nth-child(3) {
    width: 20px !important;
}

/* Header search */
.bottom-header__search {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    max-width: 798px;
    -webkit-flex-basis: 798px;
    -ms-flex-preferred-size: 798px;
    flex-basis: 798px;
    z-index: 300;
}

.bottom-header__search.open {
    display: flex;
}

.bottom-header__search .iSearchBoxWrapper {
    width: 100%;
}
.bottom-header__tools {
    width: 25%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

/* --Sphinx search */
.sphinxsearch a {
    font-size: 13px;
}

/* Button header compare */
.bottom-header__tools-compare {
    height: 75px;
    position: relative;
    border-right: 2px solid #f8f9fb;
    background-color: var(--glaccent);
    -webkit-transition: background-color 0.5s ease-in-out;
    -o-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out;
}

.bottom-header__tools-compare a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.bottom-header__tools-compare .fa-exchange-alt {
    width: 22px;
    height: 20px;
    color: var(--gaccent);
    -webkit-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

.bottom-header__tools-compare:hover .fa-exchange-alt {
    color: var(--secondary);
}

.bottom-header__tools-search {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    min-width: 25%;
    max-width: 75px;
    border-right: 2px solid #ffffff;
    cursor: pointer;
}

.bottom-header__tools-search:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.bottom-header__tools-search svg {
    -webkit-transition: fill 0.5s ease-in-out;
    -o-transition: fill 0.5s ease-in-out;
    transition: fill 0.5s ease-in-out;
}

.bottom-header__tools-search:hover svg {}

.bottom-header__tools-search svg {
    width: 19px;
    height: 19px;
}

/* Button header wishlist */
.bottom-header__tools-wishlist {
    height: 75px;
    min-width: 25%;
    border-right: 2px solid #fff;
    background-color: var(--glaccent);
    position: relative;
}

.bottom-header__tools-wishlist:hover {
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.bottom-header__tools-wishlist a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.bottom-header__tools-wishlist .fa-heart {
    width: 22px;
    height: 20px;
    color: var(--gaccent);
    -webkit-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

.bottom-header__tools-wishlist:hover .fa-heart {
    color: var(--secondary);
}

/* Header button cart */
.bottom-header__toolscart {
    min-width: 50%;
    height: 75px;
    background-color: var(--glaccent);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.bottom-header__toolscart:hover {
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.header__cart {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header__cart-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

#cart-total {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__cart-title svg {
    width: 25px;
    height: 22px;
    fill: var(--gaccent);
    -webkit-transition: fill 0.5s ease-in-out;
    -o-transition: fill 0.5s ease-in-out;
    transition: fill 0.5s ease-in-out;
    margin-right: 8px;
}

.bottom-header__toolscart:hover .header__cart-title svg {
    fill: var(--accent);
}

.header__cart-title .header__cart-title__text {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    font-weight: bold;
    margin-right: 17px;
    -webkit-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

.header__cart-title .header__cart-title__quantity {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    background-color: #fff;
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 16px;
    font-weight: bold;
    -webkit-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

.bottom-header__toolscart:hover .header__cart-title .header__cart-title__quantity {
    background: var(--glaccent);
}

/* Compare hover block */
.compare__hover {
    position: absolute;
    top: -1px;
    visibility: hidden;
    right: 0;
    z-index: 55;
    background-color: #fff;
    width: 600px;
    min-height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    -webkit-transition: visibility 0.5s ease-in-out, top 0.5s ease-in-out;
    -o-transition: visibility 0.5s ease-in-out, top 0.5s ease-in-out;
    transition: visibility 0.5s ease-in-out, top 0.5s ease-in-out;
}

.compare__hover h3 {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 16px;
}

/* Dropdown cart */
.dropdown__cart {
    display: none;
    position: absolute;
    top: 75px;
    right: 0;
    z-index: 1250;
    background: #fff;
    width: 798px;
    height: auto;
    cursor: default;
    -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
}

.cart__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.875rem;
    border-bottom: 2px solid #e0e1e7;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cart__top h2 {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 18px;
    line-height: 11px;
}

.cart__top-back {
    color: var(--secondary);
    cursor: pointer;
}

.cart__top-back span {
    font-family: var(--font);
    font-size: 14px;
    line-height: 11px;
    padding-right: 9px;
}

.cart__top-back .fa-arrow-right {
    font-size: 20px;
}

.cart__bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 1.875rem;
}

.cart__bottom-total span {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 13px;
    line-height: 31px;
}

.cart__bottom-total span b {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 18px;
    line-height: 11px;
    margin-right: 4px;
}

.cart__bottom-total span small {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 11px;
    line-height: 11px;
}

.cart__bottom-button a {
    background-color: #000;
    padding: 23px 84px;
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    line-height: 37px;
    font-weight: bold;
    border: 2px solid #000;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.cart__bottom-button a:hover {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}

.cart__bottom-button a:focus:hover {
    background-color: #292929;
    border: 2px solid #292929;
    color: #fff;
}

.cart__body {
    margin: 1.5625rem 1.875rem;
    border-bottom: 1px solid #e0e1e7;
    height: 352px;
    overflow-y: scroll;
}

.cart__table {
    width: 100%;
}

.cart__empty {
    padding: 1.6rem;
}

.cart__empty p {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
}

.cart__product {
    border-top: 1px solid var(--glaccent);
    border-bottom: 1px solid var(--glaccent);
    height: 110px;
    margin-bottom: 10px;
}

.cart__body-title {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 13px;
    line-height: 31px;
    padding-bottom: 10px;
}

.cart-image {
    width: 112px;
}

.cart-image img {
    margin-bottom: -3px;
}

.cart-title {
    width: 250px;
}

.cart-count {
    width: 130px;
}

.cart-price {
    width: 130px;
}

.cart-delete {
    width: 70px;
}

.cart__table td {
    vertical-align: middle;
}

.cart__body-title {
    padding: 0 19px;
}

.cart__body-title .cart__model {
    color: #9a9a9a;
    font-size: 13px;
    font-weight: 400;
}

.cart__body-title .cart__name a {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    display: block;
    line-height: 20px;
    font-weight: 700;
}

.cart_qty {
    width: 130px;
    height: 50px;
    border-radius: 25px;
    background-color: var(--glaccent);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.cart__input-qty {
    background-color: var(--glaccent);
    border: none;
    width: 30px;
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 13px;
    line-height: 31px;
    text-align: center;
    outline: none;
}

.cart_qty .fa-minus,
.cart_qty .fa-plus {
    color: var(--gaccent);
    cursor: pointer;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
}

.cart_qty .fa-minus:focus,
.cart_qty .fa-minus:hover {
    color: var(--secondary);
}

.cart_qty .fa-plus:focus,
.cart_qty .fa-plus:hover {
    color: var(--secondary);
}

.cart_qty .qtyplus.quantity-edge {
    opacity: 0.5;
}

.cart_qty .qtyplus.quantity-edge .fa-minus:focus,
.cart_qty .qtyplus.quantity-edge .fa-minus:hover,
.cart_qty .qtyplus.quantity-edge .fa-plus:focus,
.cart_qty .qtyplus.quantity-edge .fa-plus:hover {
    color: var(--gaccent);
}

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

.cart__item-price span {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 20px;
}

.cart__item-price span small {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 11px;
    line-height: 11px;
}

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

.cart__item-delete a {
    color: #9a9a9a;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
}

.cart__item-delete a:focus,
.cart__item-delete a:hover {
    color: var(--secondary);
}

.cart__item-delete span {
    color: #9a9a9a;
    font-family: var(--font);
    font-size: 11px;
    line-height: 11px;
}

.empty__td {
    padding: 10px 0;
}

.count__incompare,
.count__inwishlist {
    position: absolute;
    top: 8px;
    right: 20px;
    background-color: #fff;
    width: 20px;
    border-radius: 100%;
    font-size: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 20px;
}

.inwish {
    color: var(--secondary) !important;
}

.incomp {
    color: var(--secondary) !important;
}

.hover__block {
    width: 100%;
}

.compare__hover-block {
    background-color: #fff;
    padding: 15px;
    width: 100%;
}

.thead__compare tr td {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 13px;
    line-height: 31px;
}

.tbody__compare {
    overflow-y: hidden;
    width: 100%;
}

.tbody__compare tr {
    border-top: 1px solid var(--glaccent);
}

.tblock__td-img {
    width: 18%;
    vertical-align: middle;
}

.tblock__td-name {
    width: 45%;
    vertical-align: middle;
    padding: 0 10px;
}

.tblock__td-price {
    width: 21%;
    vertical-align: middle;
}

.tblock__td-remove {
    width: 15%;
    vertical-align: middle;
}

.tbody__compare .hover__block-img {
    width: 100px;
}

.tbody__compare .hover__block-img img {
    width: 100%;
    margin-bottom: -3px;
}

.tbody__compare .hover__block-name {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tbody__compare .hover__block-name h3 {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
}

.tbody__compare .hover__block-name h3:hover {
    color: var(--secondary);
}

.tbody__compare .hover__block-name span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
    color: var(--menu-color);
    font-size: 13px;
    font-weight: 400;
}

.tbody__compare .hover__block-price {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 16px;
}

.hover__block-remove a {
    display: block;
    text-align: center;
}

.hover__block-remove a {
    color: var(--menu-color);
    font-family: var(--font);
    font-size: 11px;
    line-height: 11px;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
}

.hover__block-remove a:hover {
    color: var(--secondary);
}

.hover__block-remove a .fa-times {
    font-size: 22px;
}

.hover__title {
    width: 100%;
    margin: 12px 0;
}

.hover__title h2 {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 18px;
    line-height: 11px;
}

.compare__body {
    height: 300px;
    overflow-y: scroll;
}

.mobile__header {
    display: none;
}

.mobile__menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 116px);
    overflow-y: auto;
    z-index: 400;
    background: #fff;
    -webkit-box-shadow: 0 4px 11px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 11px rgba(0, 0, 0, 0.1);
}

.mobile__menu .mobile__pages {
    padding: 20px;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

.mobile__menu .mobile__pages li {
    padding: 0;
    margin-bottom: 20px;
}

.mobile__header-col .wishlist__tool {
    display: none;
}

.mobile__menu .mobile__pages li:last-child {
    margin-bottom: 0;
}

.mobile__menu .mobile__pages li a {
    color: #51555e;
    font-family: var(--font);
    font-size: 17px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.mobile__menu .mobile__pages li a:hover {
    color: var(--secondary);
}

.mobile__menu .mobile__phone {
    padding: 20px;
    border-top: 1px solid #ebebeb;
}

.mobile__menu .mobile__phone .phones {
    padding: 0;
    margin-bottom: 15px;
}

.mobile__menu .mobile__phone .phones:last-child {
    margin-bottom: 0;
}

.mobile__menu .mobile__phone .phones .fa-phone {
    color: #8a909b;
    margin-right: 10px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 12px;
}

.mobile__menu .mobile__phone .phones a {
    color: #8a909b;
    font-family: var(--font);
    font-size: 16px;
    font-weight: bold;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.mobile__menu .mobile__phone .phones a:hover {
    color: var(--secondary);
}

.mobile__header {
    padding: 16px 0;
}

.mobile__tools {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.mobile__tools img {
    height: auto;
}

.mobile__tools div {
    margin-left: 12px;
    cursor: pointer;
}

.mobile__language {
    margin-left: 0 !important;
    position: relative;
}

.mobile__language .drop-top {
    top: 0 !important;
    width: 54px;
}

.mobile__language .language-item {
    margin-left: 0 !important;
}

.mobile__language .current-language {
    margin-bottom: 10px;
    margin-top: 10px;
}

.mobile__language .current-language p {
    font-size: 17px;
    font-weight: 600;
    color: #51555e;
}

.mobile__language .dropdown-inner__language p {
    font-size: 15px;
    font-weight: 600;
    color: #51555e;
}

.mobile__language .current-language span {
    margin-left: 5px;
}

.mobile__language .dropdown-inner__language span {
    margin-left: 5px;
}

.mobile__language .dropdown-inner__language .fa-chevron-up {
    width: 9px;
    height: 11px;
}

.mobile__language .dropdown-inner__language .fa-chevron-up {
    color: #51555e;
}

.mobile__language #show-language .svg-inline--fa {
    width: 9px;
    height: 11px;
}

.mobile__language .language-select {
    color: var(--secondary);
    font-size: 14px;
    padding: 3px 12px;
    text-align: left;
    color: #51555e;
}

.mobile__wishlist {
    padding: 20px;
    position: relative;
}

.mobile__wishlist .count__incompare,
.mobile__wishlist .count__inwishlist {
    top: 51%;
    right: initial;
    left: 42px;
    border: 1px solid #51555e;
    transform: translateY(-50%);
}

.wishlist__tool-img {
    width: 17px;
    height: 18px;
}

.cart__tool a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.cart__tool .mobile__count {
    width: 19px;
    height: 19px;
    background: var(--secondary);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
    font-size: 12px;
}

.adaptive__button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.adaptive__button .menu__burger {
    width: 23px;
    height: 14px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    cursor: pointer;
}

.adaptive__button .menu__burger span {
    height: 2px;
    background-color: transparent;
    display: flex;
    border-bottom: 2px solid var(--secondary);
}

.adaptive__button .menu__burger span:nth-child(1) {
    width: 50%;
    -webkit-transition: width 0.5s ease;
    -o-transition: width 0.5s ease;
    transition: width 0.5s ease;
}

.adaptive__button .menu__burger span:nth-child(2) {
    width: 75%;
    -webkit-transition: width 0.5s ease;
    -o-transition: width 0.5s ease;
    transition: width 0.5s ease;
}

.adaptive__button .menu__burger span:nth-child(3) {
    width: 100%;
    -webkit-transition: width 0.5s ease;
    -o-transition: width 0.5s ease;
    transition: width 0.5s ease;
}

.menu__burger.active span:nth-child(1) {
    width: 100%;
}

.menu__burger.active span:nth-child(2) {
    width: 75%;
}

.menu__burger.active span:nth-child(3) {
    width: 55%;
}

.mobile__header-cols {
    align-items: center;
}

.mobile__header-col-logo {
    margin-left: 20px;
}

.mobile__header-col-logo img {
    height: auto;
}

.mobile__header-col-right {
    margin-left: auto;
}

.mobile__header #logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    width: 88px;
}

.mobile__header #logo img {
    margin: auto 0;
}

.mobile__search {
    display: none;
    position: absolute;
    top: 51px;
    z-index: 9999;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

/* Main setting for css */
/* Revolution Slider */
.slider__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #f7f7f7;
    font-size: 15px !important;
}

.tp-caption.accent2.tp-fade.tp-resizeme {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.tp-caption.accent2.tp-fade.tp-resizeme.start {
    border-width: 2px !important;
    border-color: #f7f7f7 !important;
}

.tp-caption.accent2.tp-fade.tp-resizeme.start:hover {
    background: #f7f7f7;
}

.tp-caption.accent2.tp-fade.tp-resizeme a:hover {
    color: var(--accent) !important;
}

.tp-caption.accent2.tp-fade.tp-resizeme.start:hover {
    border: 3px solid var(--accent);
    cursor: pointer;
}

.tp-caption.button {
    background-color: #9b9798;
    color: #000000;
    padding: 12px 24px !important;
}

.tp-caption.button a {
    font-size: 17px !important;
}

.slide__main-1 .title {
    color: #393939;
    font-size: 47px !important;
    line-height: 1.4 !important;
    font-weight: bold;
}

.slide__main-2 .title {
    font-size: 102px;
    font-weight: bold;
}

.slide__main-2 .subtitle {
    font-size: 50px;
    font-weight: bold;
}

.slide__main-3 .title {
    font-size: 50px !important;
    font-weight: bold;
    color: #46494e;
}

.slide__main-3 .subtitle {
    font-size: 80px !important;
    font-weight: bold;
    color: #46494e;
    display: flex;
}

.slide__main-3 .subtitle span {
    font-size: 40px !important;
    width: 440px;
    display: flex;
    white-space: normal;
    text-align: left;
    margin-left: 10px !important;
    font-weight: normal;
}

.slide__main-3 .subtitle-2 {
    font-size: 17px !important;
    color: #46494e;
}

.slide__main-4 .title {
    font-size: 65px !important;
    font-weight: normal;
    color: #393939;
}

.slide__main-4 .subtitle {
    font-size: 50px !important;
    font-weight: bold;
    color: #393939;
}

.slide__main-5 .title,
.slide__main-5 .title span {
    font-size: 80px !important;
    line-height: 1.2 !important;
}

.slide__main-5 .title {
    font-weight: bold;
    color: #46494e;
    display: flex;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.slide__main-5 .subtitle {
    font-size: 50px !important;
    color: #46494e;
    display: flex;
    left: 50% !important;
    transform: translateX(-50%) !important;
    line-height: 1.2 !important;
}

.slide__main-5 .subtitle-2 {
    font-size: 14px !important;
    color: #46494e;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.slide__main-solid-1 .title {
    font-size: 70px !important;
    font-weight: bold;
    color: #46494e;
}

.slide__main-solid-1 .subtitle,
.slide__main-solid-1 .subtitle span {
    font-size: 100px !important;
    font-weight: bold;
    color: #46494e;
    display: flex;
}

.slide__main-solid-2 .title {
    font-size: 60px !important;
    font-weight: bold;
    color: #46494e;
    display: flex;
}

.slide__main-solid-2 .subtitle,
.slide__main-solid-2 .subtitle-2 {
    font-size: 50px !important;
    color: #46494e;
}

.slide__main-solid-1 .button,
.slide__main-solid-2 .button {
    background-color: #9b9798;
}

.slide__main-center .button,
.slide__main-center .subtitle,
.slide__main-center .subtitle-2,
.slide__main-center .title {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* Module category block */
.categoty__block {
    margin: 60px auto 50px;
}

.categoty__block-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    min-height: 52px;
    position: relative;
}

.categoty__block-top__title h2,
.custom__banner-top__title h2 {
    color: #1f2024;
    font-family: var(--font);
    font-size: 24px;
    text-transform: uppercase;
    font-weight: normal;
}

.custom__banner-top__title h2 {
    margin-bottom: 30px;
}

.categoty__block-top__arrows {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -1px;
    margin-left: auto;
}

.categoty__block-top__arrows button {
    outline: none;
    border: 0;
}

.categoty__block-top__arrows .arrow__left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    background-color: var(--glaccent);
    margin-right: 1px;
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
}

.categoty__block-top__arrows .arrow__right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    background-color: var(--glaccent);
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
}

.categoty__block-top__arrows .arrow__left:hover,
.categoty__block-top__arrows .arrow__right:hover {
    background-color: var(--gaccent);
}

.categoty__block-top__arrows .arrow__left:hover path,
.categoty__block-top__arrows .arrow__right:hover path {
    fill: #ffffff;
}

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

.category__block-bottom.slick-initialized {
    display: flex;
}

.category__block-bottom .slick-list {
    margin: 0;
    width: 100%;
}

.category__block-bottom .slick-track {
    margin-left: 0;
}

.category__block-bottom__body {
    display: flex !important;
    flex-wrap: wrap;
    outline: none;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
}

.category__block-bottom__body .category-item {
    position: relative;
}

.category__block-bottom__body .wrap {
    width: 100%;
    height: auto;
    padding-bottom: 35%;
    display: flex;
    position: relative;
}

.category__block-bottom__body .wrap-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.category__block-bottom__body .first {
    width: 49%;
    margin-right: 2%;
    height: 100%;
}

.category__block-bottom__body .other-cats {
    width: 49%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.category__block-bottom__body .other-cat {
    width: 48%;
    height: 48%;
}

.category__block-bottom__body .other-cat:nth-child(1),
.category__block-bottom__body .other-cat:nth-child(2) {
    margin-bottom: 4%;
}

.category__block-bottom__body .inner__category-block {
    padding-right: 0;
}

.category__block-bottom__body h3 {
    color: #fff;
    font-family: var(--font);
    font-size: 26px;
    text-align: left;
}

#category-next,
#category-prev {
    display: none;
}

.category__block-bottom__body a {
    display: flex;
    margin-top: auto;
    align-items: flex-end;
    background-color: transparent;
    font-family: var(--font);
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    transition: all 0.4s ease;
}

.category-item:hover a {
    visibility: visible;
    opacity: 1;
}

.category__block-bottom__body a {
    background: rgba(0, 0, 0, 0.4);
}

.category__block-bottom__body img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Module product tabs */
.categoty__block-top__menu {
    margin-left: auto;
    margin-right: 10%;
}

.categoty__block-top__menu ul {
    display: flex;
    align-items: center;
}

.categoty__block-top__menu li a {
    color: var(--accent);
    font-family: var(--font);
    font-size: 13px;
    position: relative;
    line-height: 34px;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    padding: 10px 0;
    text-transform: uppercase;
}

.categoty__block-top__menu li {
    margin-right: 30px;
}

.categoty__block-top__menu li:last-child {
    margin-right: 0;
}

.categoty__block-top__menu .ui-state-active a {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
}

.categoty__block-top__menu li a.active,
.categoty__block-top__menu li a:hover {
    font-weight: bold;
}

.categoty__block-top__menu .ui-state-active a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary);
    transition: width 0.5s ease, background-color 0.5s ease;
    -webkit-transition: width 0.5s ease, background-color 0.5s ease;
    -moz-transition: width 0.5s ease, background-color 0.5s ease;
    -ms-transition: width 0.5s ease, background-color 0.5s ease;
    -o-transition: width 0.5s ease, background-color 0.5s ease;
}

.categoty__block-top__menu li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--secondary);
    transition: width 0.5s ease, background-color 0.5s ease;
    -webkit-transition: width 0.5s ease, background-color 0.5s ease;
    -moz-transition: width 0.5s ease, background-color 0.5s ease;
    -ms-transition: width 0.5s ease, background-color 0.5s ease;
    -o-transition: width 0.5s ease, background-color 0.5s ease;
}

.categoty__block-top__menu li a:hover {
    color: var(--secondary);
}

.categoty__block-top__menu li a.active:after,
.categoty__block-top__menu li a:hover:after {
    width: 100%;
}

.arrows__block {
    display: none;
    align-items: center;
}

.arrows__block button:hover path,
.arrows__block button:hover use {
    fill: #fff;
}

.latest__arrow {
    display: flex;
}

.products__tabs-bottom .slick-list {
    margin: 0 -15px;
}

.products__tabs-bottom .slick-track {
    margin-left: 0;
}

.product__block {
    display: none;
}

.product__block.slick-initialized {
    display: block;
}

.product__block > .slick-list:hover {
    overflow: initial;
}

.product__body {
    width: 317px;
    margin: 0 15px;
    position: relative;
}

.product__body:hover .product__body-footer {
    position: absolute;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 300;
}

.product__body-block {
    padding: 18px 29px;
    border-left: 2px solid #f5f5f5;
    border-right: 2px solid #f5f5f5;
    border-bottom: 2px solid #f5f5f5;
    position: relative;
}

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

.product__body-img {
    height: 520px;
    overflow: hidden;
    background: #efeff1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__body-img a {
    display: block;
    height: 100%;
    width: 100%;
}

.product__body-img {
    background-size: cover;
    background-position: center;
}

.product__body-img img {
    display: flex;
    object-fit: cover;
    object-position: top center;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -ms-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    display: none;
    height: 100%;
    width: 100%;
}

.product__body-img img[src*="placeholder"] {
    object-position: center center;
}

.product-list .product__body-img img {
    display: flex;
    height: 100%;
    object-fit: cover;
}

.product__body-title {
    margin-bottom: 25px;
}

.product__body:hover .product__body-title {
    margin-bottom: 15px;
}

.product__body-title h2 {
    height: 65px;
    overflow: hidden;
    line-height: 15px;
    display: flex;
}

.bottom-header__menu ul {
    padding: 0;
    background: var(--glaccent);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.dropdown__inner ul {
    flex-wrap: wrap;
    padding: 40px 25px 20px;
    background: #ffffff;
}

.dropdown__inner li {
    width: 20%;
    margin-bottom: 20px;
}

.dropdown__inner li a {
    font-size: 17px;
    text-transform: none;
    font-weight: normal;
    justify-content: flex-start;
    color: #51555e;
}

.dropdown__inner li a.bold {
    font-weight: bold;
}

.dropdown__inner li a:hover {
    color: var(--accent);
    font-weight: bold;
}

#block-load h4 {
    font-size: 15px;
}

.product__body-title h2 a {
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.46;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
}

.product__body-title h2 a:hover {
    color: var(--secondary);
}

.product__body:hover .product__body-title h2 a {
    color: var(--secondary);
}

.product__body-reviews {
    display: none;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 13px;
}

.product__body-options {
    display: none;
    margin-bottom: 13px;
    flex-direction: column;
}

.product__body:hover .product__body-options {
    display: flex;
}

.product__body-reviews__rating .fa-star {
    width: 17px;
    height: 17px;
    color: #e1e1e3;
}

.product__body-reviews__rating {
    margin-right: 10px;
}

.product__body-reviews__title a {
    color: #969696;
    font-size: 13px;
    font-weight: 400;
    line-height: 31px;
    text-decoration: underline;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
}

.product__body-reviews__title a:hover {
    color: var(--secondary);
}

.body__options-block {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    position: relative;
    z-index: 5;
    padding: 0;
    margin-bottom: 6px;
    line-height: 1.23;
    transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -ms-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
}

.body__options-block:last-child {
    margin-bottom: 0;
}

.body__options-block:hover {
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    -o-transform: scale(1.04);
}

.body__options-block .body__options-block__title {
    font-size: 13px;
    font-weight: 400;
    color: #9a9a9a;
    margin-right: 5px;
}

.body__options-block .body__options-block__name {
    font-size: 13px;
    font-weight: 400;
    color: #494949;
}

.product__body-pds {
    display: none;
    margin-bottom: 20px;
}

.product__body:hover .product__body-pds {
    display: block;
}

.body-pds__title {
    display: flex;
    color: var(--gaccent);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.body-pds__items {
    display: flex;
    align-items: center;
}

.product__body-pds .slick-list {
    margin: 0 -3px;
}

.product__body-pds .arrow__left,
.product__body-pds .arrow__right {
    min-width: 7px;
    height: 13px;
    display: flex;
}

.product__body-pds .arrow__left {
    margin-right: 13px;
}

.product__body-pds .arrow__right {
    margin-left: 13px;
}

.product__body-pds .slick-slide {
    margin: 0 3px;
}

.body-pds__img {
    display: flex;
    align-items: center;
}

.body-pds__img img {
    border: 1px solid transparent;
    width: 40px;
    min-width: 40px;
    height: 40px;
    object-fit: cover;
}

.body-pds__img.current img,
.body-pds__img:hover img {
    border: 1px solid #000;
    cursor: pointer;
}

.product__body-sizes {
    display: none;
    margin-bottom: 10px;
}

.product__body:hover .product__body-sizes {
    display: flex;
}

.body-sizes__title {
    display: flex;
    color: var(--gaccent);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.body-sizes__items {
    display: flex;
    flex-wrap: wrap;
}

.body-sizes__item.disabled label {
    /* border: 1px solid #EBEBEB;
    opacity: 0.3; */
    position: absolute;
}

.body-sizes__item.disabled label:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-top: 2px solid #8a909b;
    height: 2px;
    width: calc(100% - 15px);
    display: flex;
}

.body-sizes__message {
    color: #ff3c21;
    font-size: 14px;
}

.custom-radio {
    display: none;
}

.custom-radio + label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 66px;
    height: 30px;
    background: #f7f7f7;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    color: var(--gaccent);
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.body-sizes__item.disabled label {
    color: #f7f7f7 !important;
}

.custom-radio + label:hover,
.custom-radio:checked + label {
    background: #000000;
    color: #ffffff;
}

.product__body-price__price {
    color: var(--accent);
    font-family: var(--font);
    font-size: 25px;
    line-height: 1.36;
    font-weight: bold;
}

@media screen and (max-width: 552px) {
    .product__body-price__price .price-new,
    .product__body-price__price .price-old {
        display: block;
        width: 100%;
        max-width: max-content;
    }
}

.product__body-price__price .price-new {
    color: var(--accent);
    font-family: var(--font);
    font-size: 25px;
    line-height: 1.36;
    margin-right: 11px;
}

.currency__symbol {
    font-size: 13px;
}

.product__outprice {
    display: none;
    align-items: center;
    margin-top: 15px;
}

.astrafit-wdgt {
    overflow: hidden;
}

.astrafit__wrap {
    max-width: 250px !important;
    width: 100% !important;
    margin-bottom: 10px;
}

.product__outprice .price__outstock {
    color: #8a909b;
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
}

.outstock__more {
    width: 100%;
    height: 64px;
    border: none;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
    line-height: 37px;
    transition: background-color 0.5s ease;
}

.outstock__more .fa-exclamation {
    width: 15px;
    height: 14px;
    color: #fff;
}

.outstock__more:hover {
    background-color: var(--secondary);
    color: #fff;
}

.product__body-price__price .price-old {
    color: #afafaf;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.23;
    position: relative;
    font-weight: bold;
}

.product__body-price__price .price-old:before {
    content: "";
    position: absolute;
    border-bottom: 1px solid #afafaf;
    width: 100%;
    height: 1px;
    left: 0;
    top: 9px;
}

.product__body-button {
    display: none;
}

.product__body:hover {
    padding-bottom: 145px;
}

.product__body:hover .product__body-button {
    display: flex;
}

.product__body:hover .product__outprice {
    display: flex;
}

.product__body-button button {
    width: 100%;
    height: 64px;
    border: 2px solid var(--accent);
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 15px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.product__body-button img {
    width: 15px;
    height: 14px;
    margin-right: 14px;
}

.product__body-button button:hover {
    background-color: #fff;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.product__body-button button:focus:hover {
    background-color: #292929;
    border: 2px solid #292929;
}

.product__body-button button .fa-shopping-cart,
.product__body-button button svg {
    width: 15px;
    height: 14px;
    color: #fff;
    margin-right: 14px;
    fill: #fff;
}

.product__body-button button .fa-check {
    width: 15px;
    height: 14px;
    color: #fff;
    margin-right: 14px;
}

.product__body-button button .fa-times {
    width: 15px;
    height: 14px;
    color: #fff;
    margin-right: 14px;
}

.product__body-button button span {
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
}

.product__body-button button:hover span {
    color: #000;
}

.product__body-button button:focus:hover span {
    color: #fff;
}

.product__body-skidka {
    min-width: 70px;
    height: 36px;
    background-color: #2bba4d;
    font-family: var(--font);
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

/* Product button wishlist on product cart */
.product__body-wishlist button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    border: none;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    cursor: pointer;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
}

.product__body-wishlist button .fa-heart {
    width: 21px;
    height: 19px;
    color: #535353;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
}

.product__inwishlist button {
    background-color: var(--secondary);
}

.product__inwishlist button .fa-heart {
    color: #fff;
}

.product__body-wishlist button:hover {
    background-color: var(--accent);
}

.product__body-wishlist button:focus {
    background-color: var(--accent);
}

.product__body-wishlist button:hover .fa-heart {
    color: #fff;
}

.product__body-wishlist button:focus .fa-heart {
    color: #fff;
}

/* Product button compare on product cart */
.product__body-compare {
    display: none;
}

.product__body-compare button {
    position: absolute;
    top: 80px;
    right: 20px;
    z-index: 10;
    border: none;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    cursor: pointer;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
}

.product__body-compare button .fa-exchange-alt {
    width: 21px;
    height: 22px;
    color: #535353;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
}

.product__incompare button {
    background-color: var(--secondary);
}

.product__incompare button .fa-exchange-alt {
    color: #fff;
}

.product__body-compare button:hover {
    background-color: var(--accent);
}

.product__body-compare button:focus {
    background-color: var(--accent);
}

.product__body-compare button:hover .fa-exchange-alt {
    color: #fff;
}

.product__body-compare button:focus .fa-exchange-alt {
    color: #fff;
}

.option__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.option__block {
    margin-right: 30px;
}

.option__block label {
    font-family: var(--font);
    font-weight: 600;
    font-size: 13px;
    color: var(--gaccent);
    margin-right: 12px;
    margin-bottom: auto;
    margin-top: 14px;
}

.option__wrap .option__block {
    max-width: 250px;
    width: 100%;
    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;
}

.option__block .option__select {
    max-width: 200px;
    min-width: 200px;
    width: 100%;
    height: 40px;
    position: relative;
}

.option__block .option__select.has-error {
    margin-bottom: 20px;
}

.option__block select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid transparent;
    width: 100%;
    height: 100%;
    border-radius: 21px;
    padding: 0 18px;
    background-color: var(--glaccent);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: var(--gaccent);
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.option__block .option__select::after {
    content: url("/image/catalog/icons/icon_selected_down.svg");
    position: absolute;
    top: 50%;
    right: 22px;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.option__block select:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid var(--secondary);
    background-color: var(--glaccent);
}

.option__block select:hover {
    border: 2px solid var(--secondary);
    background-color: var(--glaccent);
}

.product__options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}

.product__options .form-group {
    margin-bottom: 0;
}

.product__options .control-label {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #8a909b;
}

.control-label.account__subscribe-title {
    margin-bottom: 30px;
}

.product__input-option {
    display: flex;
    flex-wrap: wrap;
}

.product__input-option .radio.disabled .custom-radio + label {
    background: #f7f7f7 !important;
    color: var(--gaccent) !important;
}

.product__input-option .radio.disabled .custom-radio + label {
    border: 1px solid #ebebeb;
    opacity: 0.3;
    position: relative;
}

.product__input-option .radio.disabled .custom-radio + label:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-top: 2px solid #8a909b;
    height: 2px;
    width: calc(100% - 15px);
    display: flex;
}

.zsu_sticker {
    width: 107px;
    height: 107px;
    float: right;
    position: absolute;
    top: -10px;
    left: 5px;
    z-index: 200;
    background-image: url("/assets/image/zsu_sticker.svg");
}

.zsu_sticker.sale {
    top: 45px;
}

.product__sale-sticker {
    display: flex;
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 75px;
    z-index: 100;
}

.product__sale-sticker img {
    display: flex;
}

/* Alert to compare and Wishlist */
.brainlab__alert {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0;
    background-color: var(--glaccent);
    padding-left: 10px;
    font-family: var(--font);
    font-size: 15px;
    line-height: 18px;
    color: #1f1f1f;
    position: relative;
    padding-right: 60px;
}

.brainlab__alert a {
    color: var(--secondary);
    margin: 0 5px;
}

.brainlab__alert button {
    margin-left: auto;
    width: 60px;
    height: 49px;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 21px;
    position: absolute;
    top: 0;
    right: 0;
    transition: background-color 0.5s ease-in-out;
}

.brainlab__alert .fa-check {
    color: #2bba4d;
    margin-right: 5px;
}

.brainlab__alert .fa-exclamation-circle {
    color: red;
    margin-right: 5px;
}

.brainlab__alert .alert__check {
    width: 30px;
    height: 30px;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-right: 5px;
}

.brainlab__alert .alert__check .fa-check {
    color: #fff;
    width: 16px;
    height: 16px;
}

.brainlab__alert.alert-success {
    font-family: var(--font);
    color: #202020;
    font-size: 18;
}

.brainlab__alert.alert-success .fa-check-circle {
    margin-right: 5px;
    color: #2bba4d;
}

/* Banner carousel */
.banner__carousel {
    margin: 68px auto;
}

.banner-prev {
    position: absolute;
    top: 29%;
    left: 0;
    z-index: 10;
    cursor: pointer;
}

.banner-next {
    position: absolute;
    top: 29%;
    right: 0;
    z-index: 10;
    cursor: pointer;
}

.banner-next,
.banner-prev {
    width: 51px;
    height: 51px;
    background-color: #e9e9e9;
    border: none;
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
}

.banner-next img,
.banner-prev img {
    margin: 0 auto;
}

.banner-next:hover,
.banner-prev:hover {
    background-color: #e6e7ec;
}

.banner__block {
    opacity: 0.21;
    transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
}

.banner__block:hover {
    opacity: 1;
    cursor: pointer;
}

.banner__block img {
    margin: 0 auto;
}

/* Custom banner module */
.custom-banner__block {
    height: 323px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    background-size: cover;
    padding-left: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.custom-banner__block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    contain: paint;
}

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

.custom-banner__block h2,
.custom-banner__caption h2 {
    color: var(--accent);
    font-family: var(--font);
    font-size: 18px;
    line-height: 1.5;
    z-index: 2;
    margin-bottom: 5px;
}

.custom-banner__block h3,
.custom-banner__caption h3 {
    color: var(--accent);
    font-family: var(--font);
    font-weight: normal;
    z-index: 2;
    min-height: 31px;
    font-size: 15px;
    line-height: 1.5;
}

.custom-banner__block a {
    border: none;
    width: 160px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 49px;
    color: #000000;
    font-family: var(--font);
    font-size: 12px;
    font-weight: bold;
    line-height: 37px;
    z-index: 2;
    text-transform: uppercase;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.custom-banner__block a:hover {
    background-color: #000 !important;
    color: #fff;
}

.custom-banner__block a:focus:hover {
    background-color: #292929 !important;
    color: #fff;
}

/* Subscribes forms */
.subscribes {
    background-color: var(--glaccent);
    padding: 41px 0;
}

.subscribes__block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.subscribes__left {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    color: #fff;
}

.subscribes__left .svg {
    width: 37px;
    height: 26px;
    margin-right: 30px;
}

.subscribes__left .fa-envelope path {
    fill: #51555e;
}

.subscribes__left h3 {
    color: #51555e;
    font-family: var(--font);
    font-size: 22px;
    line-height: 31px;
    font-weight: bold;
}

.subscribes__right {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.subscribes__form {
    width: 100%;
}

.subscribes__filed {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 0;
}

.subscribes__button {
    border: 2px solid var(--accent);
    width: 163px;
    min-width: 163px;
    height: 67px;
    font-weight: bold;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    line-height: 37px;
    cursor: pointer;
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
}

.subscribes__button:hover {
    background-color: #fff;
    color: var(--accent);
}

.subscribes__button:focus {
    background-color: #292929;
    border: 2px solid #292929;
}

.subscribes__input {
    width: 100%;
    height: 67px;
    background-color: #ffffff;
    border: none;
    padding: 0 29px;
    color: #202020;
    font-size: 16px !important;
    font-weight: 400;
    line-height: 31px;
}

.subscribes__input::placeholder {
    color: var(--gaccent);
    font-size: 13px;
}

/* Description text */
.description {
    margin: 60px 0 0;
}

.description__block {
    overflow: hidden;
    position: relative;
}

.description__block p {
    color: #535353;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

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

.many__text,
.more__text {
    display: block;
    font-weight: bold;
    font-family: var(--font);
    font-size: 13px;
    line-height: 31px;
    color: var(--secondary);
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transition: transform 0.5s ease-in-out;
    -webkit-transition: transform 0.5s ease-in-out;
    -moz-transition: transform 0.5s ease-in-out;
    -ms-transition: transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
}

.many__text:hover,
.more__text:hover {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}

/* Modall callback form */
.remodal__callback .modal__callback-form .input__block {
    margin-bottom: 20px;
}

.remodal__callback .modal__callback-form .input__block input {
    height: 50px;
    width: 100%;
    font-family: var(--font);
    transition: border 0.5s ease;
    -webkit-transition: border 0.5s ease;
    -moz-transition: border 0.5s ease;
    -ms-transition: border 0.5s ease;
    -o-transition: border 0.5s ease;
    border: 2px solid #ebebeb;
    padding: 0 20px;
    border-radius: 0;
    color: #42454e;
    font-family: var(--font);
    font-size: 13px;
}

.remodal__callback .modal__callback-form .input__block label {
    display: none;
    text-align: left;
    width: 80%;
    margin: 0 auto 4px;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
}

.remodal__callback .modal__callback-form .input__block .req {
    color: #ff3108;
}

.remodal__callback .modal__callback-form .input__block input:focus,
.remodal__callback .modal__callback-form .input__block input:hover {
    border: 2px solid var(--secondary);
}

.remodal__callback .modal__callback-form .input__button {
    width: 47%;
    height: 64px;
    margin: 50px auto 0;
    font-weight: bold;
    background-color: var(--accent);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
}

.remodal__callback .modal__callback-form .input__button:focus {
    background-color: var(--secondary);
}

.remodal__callback .modal__callback-form .input__button:hover {
    background-color: var(--secondary);
}

.show__answer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 55;
    background-color: rgba(0, 0, 0, 0.3);
}

.callback__answer {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font);
    font-size: 22px;
    line-height: 31px;
}

.require__text {
    text-align: left;
    width: 80%;
    margin: 7px auto;
    color: #e22929;
    color: #e22929;
    font-size: 12px;
    font-weight: 400;
}

.input__block-body .fa-exclamation-circle {
    color: #e22929;
    display: none;
    position: absolute;
    top: 40%;
    right: 5%;
}

/*----------------------Different pages ==============================================*/
.information__page {
    margin-bottom: 60px;
}

.information__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border-bottom: 1px solid #e0e1e7;
    margin-top: 20px;
    margin-bottom: 17px;
}

.information__title h1 {
    color: #000000;
    font-family: var(--font);
    font-size: 24px;
    margin-bottom: 13px;
    line-height: 1.2;
}

.information__description p {
    color: #535353;
    font-size: 14px;
    letter-spacing: 0.13px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.information__description h2 {
    color: #535353;
    font-family: var(--font);
    font-size: 26px;
    margin-bottom: 25px;
}

.information__description h3 {
    color: #535353;
    font-family: var(--font);
    font-size: 22px;
    margin-bottom: 25px;
}

.information__description h4 {
    color: #535353;
    font-family: var(--font);
    font-size: 20px;
    margin-bottom: 15px;
}

.information__description ol {
    list-style: decimal;
    padding-left: 20px;
    margin-bottom: 30px;
}

.information__description ol li {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 23px;
}

.information__description ol li:last-child {
    margin-bottom: 0;
}

.information__description ul {
    list-style: inside;
    margin-bottom: 30px;
}

.information__description ul li {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #535353;
}

.information__description ul li:last-child {
    margin-bottom: 0;
}

.information__description img {
    margin-bottom: 30px;
}

.information__description td img {
    height: auto;
    width: auto;
    max-width: 90%;
}

/*----------------------Contact pages ==============================================*/
.contact__page {
    margin-bottom: 40px;
}

.contact__wrap .contact__block,
.contact__wrap .contact__map {
    flex-basis: 49%;
    max-width: 49%;
    width: 100%;
}

.contact__page .contact__block {
    margin-bottom: 20px;
}

.contact__wrap .contact__block {
    display: flex;
    flex-direction: column;
}

.contact__map .map__block iframe {
    height: 100%;
}

.contact__map,
.map__block {
    height: 100%;
}

.line__page {
    width: 100%;
    height: 10px;
    background-color: var(--glaccent);
    margin: 30px 0;
}

.contact__form form {
    display: flex;
    flex-direction: column;
}

.contact__form form .group__block:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact__form-title {
    color: var(--accent);
    font-family: var(--font);
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 25px;
}

.contact__form form .form__group label {
    display: none;
    color: #9a9a9a;
    font-family: var(--font);
    font-size: 14px;
    margin-bottom: 14px;
}

.contact__form form .form__group label span {
    color: #e22929;
}

.contact__form form .group__block:first-child .form__group {
    width: 50%;
}

.contact__form form .form__group {
    margin-bottom: 20px;
    width: 100%;
}

.contact__form form .form__group input[type="text"],
.contact__form form .form__group input[type="email"] {
    max-width: 100%;
    width: 100%;
    height: 50px;
    border: 2px solid #ebebeb;
    background-color: #ffffff;
    color: #8a909b;
    font-family: var(--font);
    font-size: 13px;
    padding: 0 18px;
    transition: border 0.5s ease;
}

.contact__form form .form__group textarea {
    max-width: 100%;
    width: 100%;
    height: 140px;
    resize: none;
    border: 2px solid #ebebeb;
    background-color: #ffffff;
    color: #8a909b;
    font-family: var(--font);
    font-size: 13px;
    padding: 20px 18px;
    transition: border 0.5s ease;
}

.contact__form form .form__group input[type="text"]:hover,
.contact__form form .form__group input[type="text"]:focus,
.contact__form form .form__group textarea:hover,
.contact__form form .form__group textarea:focus,
.contact__form form .form__group input[type="email"]:focus,
.contact__form form .form__group input[type="email"]:hover {
    border: 2px solid var(--secondary);
}

.button__contact a,
.button__contact input {
    border: none;
    cursor: pointer;
    height: 64px;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 2px solid transparent;
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
    transition: all 0.4s ease;
}

.button__contact input:hover {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}

.button__contact input:focus:hover {
    background-color: #292929;
    border: 2px solid #292929;
    color: #fff;
}

.contact__info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.contact__info .info__item {
    flex-basis: 50%;
    max-width: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.contact__info .info__item.item__full {
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
}

.contact__info .info__item .item__title {
    color: #42454e;
    font-size: 13px;
    margin-bottom: 10px;
}

.contact__info .info__item .item__text {
    color: var(--accent);
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
}

.contact__info .info__item .item__text a {
    color: var(--accent);
    font-size: 15px;
    transition: color 0.5s ease;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
}

.contact__info .info__item .item__text a:not(:last-child) {
    margin-bottom: 5px;
}

.contact__info .info__item .item__text a:hover {
    color: var(--accent);
}

.contact__info .info__tel span {
    flex-direction: column;
    display: flex;
}

.contact__description p {
    color: #535353;
    font-size: 14px;
    letter-spacing: 0.13px;
    line-height: 21px;
    margin-bottom: 15px;
}

.block__wrap {
    margin: 0 -15px;
}

.block__wrap .products__wrap {
    margin: 0 15px;
    width: calc(25% - 30px);
}

.contact__info.width__border {
    padding-top: 31px;
    width: 100%;
    border-top: 1px solid #ebebeb;
}

.info__item-title {
    width: 100%;
    font-size: 24px;
    font-weight: 400;
    color: #1f2024;
    line-height: 24px;
    margin-bottom: 20px;
}

.contact__info .info__item .item__text a.has__sub {
    margin-bottom: 0;
}

.sub__tel {
    font-weight: 300;
    line-height: 21px;
}

.sub__tel:not(:last-child) {
    margin-bottom: 20px;
}

/*---------------------- Search page ==============================================*/
.additional__search {
    background-color: var(--filter-bg);
    padding: 20px;
    margin-bottom: 25px;
}

.additional__search .additional__top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 5px;
}

.additional__top .label__entry-search {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 18px;
    margin-right: 8px;
    margin-bottom: 10px;
}

.additional__top input {
    width: 49%;
    height: 50px;
    background-color: #fff;
    padding: 0 18px;
    border: 1px solid transparent;
    outline: none;
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 14px;
    margin-right: 9px;
    margin-bottom: 10px;
    transition: border 0.5s ease;
}

.select__input {
    width: 45.4%;
    position: relative;
    margin-bottom: 10px;
}

.select__input .fa-chevron-down {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 17px;
    color: #9a9a9a;
    transition: color 0.5s ease;
}

.select__input:hover .fa-chevron-down {
    color: var(--secondary);
}

.additional__top select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 100%;
    height: 50px;
    background-color: #fff;
    padding: 0 18px;
    border: 1px solid transparent;
    outline: none;
    cursor: pointer;
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 14px;
    transition: border 0.5s ease;
    border-radius: 0;
}

.additional__top input:hover,
.additional__top select:hover {
    border: 1px solid #9a9a9a;
}

.additional__top input:focus,
.additional__top select:focus {
    border: 1px solid var(--secondary);
}

.additional__search .additional__bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.additional__search .additional__bottom .button__search {
    margin-left: auto;
    width: 178px;
    height: 45px;
    background-color: var(--accent);
    display: flex;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.additional__search .additional__bottom .button__search:hover {
    background-color: var(--secondary);
}

.additional__search .additional__bottom .button__search:focus {
    background-color: var(--secondary);
}

.additional__search .additional__bottom input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    background-color: #ffffff;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.5s ease;
}

.additional__search .additional__bottom input[type="checkbox"]:checked {
    background-color: var(--secondary);
}

.additional__search .additional__bottom input[type="checkbox"]:hover {
    background-color: #9a9a9a;
}

.additional__search .additional__bottom input[type="checkbox"]:hover:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: 900;
    color: #fff;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    background: url("/catalog/view/theme/brainlab/image/icon/check-solid.svg") no-repeat center;
    width: 17px;
    height: 17px;
}

.additional__search .additional__bottom input[type="checkbox"]:checked:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: "";
    font-weight: 900;
    color: #fff;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    background: url("/catalog/view/theme/brainlab/image/icon/check-solid.svg") no-repeat center;
    width: 17px;
    height: 17px;
}

.additional__search .additional__bottom label {
    display: flex;
    align-items: center;
    margin-right: 15px;
    color: #9a9a9a;
    font-family: var(--font);
    font-size: 14px;
    margin-bottom: 14px;
}

.additional__search .additional__bottom label:last-child {
    margin-right: 0;
}

.text__tohome {
    margin-bottom: 20px;
    font-family: var(--font);
    font-size: 16px;
    color: #535353;
}

.button__home {
    width: 178px;
    height: 60px;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    margin: 0 0 20px auto;
    transition: all 0.5s ease;
}

.button__home:hover {
    background-color: var(--secondary);
    color: #fff;
}

.button__home:focus {
    background-color: var(--secondary);
    color: #fff;
}

/*---------------------- Compare page ==============================================*/
.compare__table {
    margin: 20px 0;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.compare__table::-webkit-scrollbar {
    width: 8px;
    height: 6px;
}

.compare__table::-webkit-scrollbar-track {
    background-color: var(--secondary);
}

.compare__table::-webkit-scrollbar-track-piece {
    background-color: var(--glaccent);
}

.compare__table::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
}

.compare__table::-webkit-scrollbar-corner {
    background-color: var(--secondary);
}

.compare__table::-webkit-resizer {
    background-color: var(--secondary);
}

.table__compare thead .table__title {
    border-top: 0;
    white-space: nowrap;
}

.compare__table .table__compare .compare__title {
    width: 175px;
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 16px;
    padding: 7px 0;
}

.compare__table .table__compare .table__title {
    vertical-align: middle;
    padding-right: 5px;
    border-right: 2px solid #f5f5f5;
    width: 175px;
}

.compare__table .table__compare .table__title.no-border {
    border-right: none;
}

.compare__table .table__compare .compare__product {
    margin-left: 10px;
    margin-right: 10px;
    font-family: var(--font);
    font-size: 15px;
    color: #202020;
    width: 300px;
}

.compare__table .table__compare .table__product {
    vertical-align: middle;
    width: 300px;
    text-align: center;
    padding: 6px 0;
    border-bottom: 1px solid #dee2e6;
}

.compare__table .table__compare .table__product img {
    margin: 0 auto;
}

.compare__table .table__compare .product__title a {
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 15px;
}

.compare__table .table__compare .table__button input[type="button"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 44px;
    background-color: var(--accent);
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.compare__table .table__compare .table__button input[type="button"]:hover {
    background-color: var(--accent);
}

.compare__table .table__compare .table__button input[type="button"]:focus {
    background-color: var(--accent);
}

.compare__table .table__compare .table__button a {
    display: block;
    font-family: var(--font);
    font-size: 16px;
    color: var(--secondary);
    transition: color 0.5s ease;
}

.compare__table .table__compare .table__button a:hover {
    color: var(--secondary);
}

.compare__table .table__compare .compare__product .current__price {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 18px;
    margin-right: 11px;
}

.compare__table .table__compare .compare__product .sale__price {
    color: #afafaf;
    font-family: var(--font);
    font-size: 15px;
    text-decoration: line-through;
}

.compare__product.product__star .star__empty {
    color: #e1e1e3;
}

.compare__product.product__star .star__full {
    color: #ffb508;
}

.compare__table .table__compare .compare__product.stock {
    color: #2bba4d;
}

.compare__table .table__compare .compare__product.instock {
    color: #e74c3c;
}

/*---------------------- affiliate page ==============================================*/
.hide {
    display: none !important;
}

/*---------------------- Live search ==============================================*/
.iSearchBox {
    margin-top: 0 !important;
}

.iSearchBox li .iSearchPrice {
    display: flex;
    flex-direction: column-reverse;
}

.iSearchBox li .iSearchItem h3 {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
}

.iSearchBox li .iSearchPrice .iSearchSpecial {
    color: #000;
    font-family: var(--font);
    font-size: 15px;
    padding-bottom: 5px;
}

.isearch__model {
    padding: 5px 0;
    color: #9a9a9a;
    font-size: 13px;
}

.isearch__stock {
    padding: 5px 0;
    font-size: 13px;
}

.isearch__stock.out {
    color: #8a909b;
}

.isearch__stock.in {
    color: #2bba4d;
}

.isearch__model span:first-child {
    margin-right: 5px;
}

.iSearchBox li img {
    min-width: 100px;
    max-height: 133px;

    width: 100%;
    max-width: 100px;
}

.iSearchBoxWrapper .iSearchBox ul > li.iSearchHeading {
    font-family: var(--font);
    font-size: 18px;
    border-bottom: 1px solid var(--glaccent) !important;
    color: var(--menu-color);
    margin: 0 0 20px;
    padding: 0 0 20px !important;
    border-bottom: 1px solid var(--glaccent);
}

.iSearchHeading {
    font-size: 18px;
    border-bottom: 1px solid #e0e1e7 !important;
    padding-bottom: 10px !important;
}

.iSearchBox {
    margin-top: 0 !important;
}

.iSearchBox ul li {
    padding: 15px;
    display: flex;
    align-items: center;
}

.iSearchBox li .iSearchPrice {
    display: flex;
    flex-direction: column-reverse;
}

.iSearchBox ul li .iSearchPrice {
    padding: 0;
    font-size: 25px;
}

.iSearchBox li .iSearchPrice .specialPrice {
    color: var(--gaccent) !important;
    text-decoration: line-through;
    text-align: right;
    font-size: 15px;
}

.iSearchBox .iSearchViewAllResults {
    border: 2px solid var(--accent);
    font-size: 16px !important;
}

.iSearchBox .iSearchViewAllResults:hover {
    border: 2px solid var(--accent);
    color: #ffffff;
    background: var(--accent);
}

.iSearchBox li .iSearchItem {
    display: flex;
    flex-direction: row !important;
    margin-left: 10px;
}

.iSearchBox li .iSearchItem h3 {
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
    padding: 0;
}

.iSearchBox li .iSearchItem h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
}

.iSearchLeft,
.iSearchRight {
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.iSearchLeft {
    width: 50%;
}

.iSearchRight {
    margin-left: auto;
}

.iSearchBox li:hover .iSearchModel,
.iSearchBox li:hover .iSearchPrice,
.iSearchBox li:hover h3 {
    color: var(--accent) !important;
}

.iSearchBox li .iSearchPrice .iSearchSpecial {
    color: var(--accent);
    font-size: 25px;
    margin-bottom: 10px;
}

.iSearchBox ul {
    margin: 0 !important;
}

.iSearchBox ul li img {
    padding: 0;
}

.isearch__model {
    padding: 0;
    color: var(--menu-color);
    font-size: 13px;
}

.isearch__model span:first-child {
    margin-right: 5px;
}

/*---------------------- Page sitemap ==============================================*/
.page__sitemap ul li {
    list-style: disc;
    margin-left: 15px;
    margin-bottom: 6px;
}

.page__sitemap .list__title {
    display: block;
    margin: 10px 0;
}

.rev__cont {
    display: none;
    padding-top: 10px;
}

.blog__title {
    min-height: 56px;
    border-top: 1px solid var(--glaccent);
    border-bottom: 1px solid var(--glaccent);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 18px;
    margin-bottom: 30px;
}

.blog__title h1 {
    color: #000000;
    font-family: var(--font);
    font-size: 22px;
}

.blog__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.article__block {
    margin-bottom: 30px;
}

.article__block .article__info {
    border-left: 2px solid var(--glaccent);
    border-right: 2px solid var(--glaccent);
    border-bottom: 2px solid var(--glaccent);
}

.article__block .article__image {
    overflow: hidden;
}

.article__block .article__image img {
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

#description strong {
    font-weight: bold;
}

#description li,
#description ul {
    list-style-type: disc !important;
    list-style-position: inside;
    margin-bottom: 10px;
}

#description li > ul,
#description li > ul > li {
    list-style-type: circle !important;
}

#description li > ul {
    padding-top: 10px;
    padding-left: 40px;
}

.description-style li > ul,
.description-style li > ul > li {
    list-style-type: circle !important;
}

.description-style li > ul {
    padding-top: 10px;
    padding-left: 40px;
}

.information__description li > ul,
.information__description li > ul > li {
    list-style-type: circle !important;
}

.information__description li > ul {
    padding-top: 10px;
    padding-left: 40px;
}

.article__block .article__info {
    padding: 15px 20px;
}

.article__block .article__info h3 {
    overflow: hidden;
    line-height: 1.4;
}

.article__block .article__info h3 a {
    color: #363636;
    font-family: var(--font);
    font-size: 16px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.article__block .article__info p {
    color: #9a9a9a;
    font-size: 15px;
    line-height: 21px;
}

.article__block:hover .article__image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.article__block:hover .article__info h3 a {
    color: var(--secondary);
}

.image__article {
    width: 100%;
    margin-bottom: 30px;
}

.image__article img {
    margin: 0 auto;
}

.article__description {
    color: #000;
    line-height: 1.5;
    font-size: 18px;
}

.article__description p {
    margin-bottom: 20px;
    color: #000;
}

.article__description table {
    margin-bottom: 30px;
}

.article__description thead td {
    background: var(--glaccent);
    color: var(--gaccent);
    font-weight: bold;
}

.article__description td {
    padding: 20px;
    border: 1px solid rgba(0, 130, 193, 0.1);
    vertical-align: middle;
    font-size: 14px;
}

.article__description h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
    text-shadow: none;
}

.article__description ol,
.article__description ul {
    margin-bottom: 30px;
}

.article__description li {
    position: relative;
    padding-left: 30px;
    color: #000;
    margin-bottom: 25px;
}

.article__description li:before {
    content: "";
    width: 9px;
    height: 9px;
    background: #000;
    opacity: 0.5;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 0;
}

.article__description a {
    text-decoration: underline;
}

.account__subscribe .form__group {
    margin-bottom: 0 !important;
}

.account__subscribe-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    width: 100%;
    max-width: 434px;
    color: #fff;
    padding-top: 18px;
    padding-bottom: 19px;
    background: #121313;
    border: 1px solid #121313;
    transition: 0.3s linear;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    border-radius: 3px;
    cursor: pointer;
}

.page__article .block__artilce .block__title {
    min-height: 56px;
    border-top: 1px solid var(--glaccent);
    border-bottom: 1px solid var(--glaccent);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 18px;
    margin-bottom: 30px;
}

.page__article .block__artilce .block__title h1 {
    color: #000000;
    font-family: var(--font);
    font-size: 22px;
}

.article__video {
    display: flex;
    justify-content: center;
}

.article__description {
    margin: 40px 0;
}

.article__description p {
    margin-bottom: 10px !important;
}

.article__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    margin-bottom: 40px;
}

.article__gallery .full {
    grid-column-start: 1;
    grid-column-end: 3;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
}

.article__gallery .full img {
    margin: 0 auto;
}

.blog-latest .pagination__block {
    margin-bottom: 50px;
}

/*---------------------Module popular__artilce =======================================================*/
.popular__article {
    margin: 30px 0;
}

.slider__title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #ededed;
}

.slider__title h2,
.slider__title h3,
.slider__title h4,
.slider__title h5 {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 22px;
}

.slider__button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: center;
    margin-bottom: -1px;
    width: 100%;
}

.slider__button .arrow__left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    background-color: var(--glaccent);
    margin-right: 1px;
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
}

.slider__button .arrow__right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    background-color: var(--glaccent);
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
}

.slider__button .arrow__left:hover,
.slider__button .arrow__right:hover {
    background-color: #e6e7ec;
}

.popular__block {
    margin: 0 -15px;
}

.popular__article {
    padding: 0 15px;
}

.popular__article .article-item .popular__image {
    overflow: hidden;
}

.popular__article .article-item .popular__image img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.popular__article .popular__info {
    border-left: 2px solid var(--glaccent);
    border-right: 2px solid var(--glaccent);
    border-bottom: 2px solid var(--glaccent);
    padding: 30px;
}

.popular__article .popular__info h3 {
    margin-bottom: 18px;
    height: 46px;
    overflow: hidden;
    line-height: 1.4;
}

.popular__article .popular__info h3 a {
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 16px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.popular__article .popular__info p {
    color: #9a9a9a;
    font-size: 15px;
    line-height: 21px;
}

.popular__article .article-item:hover .popular__image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.popular__article:hover .popular__info h3 a {
    color: var(--secondary);
}

/*--------------Featured article slider =============================================================*/
.arfeatured__block {
    margin: 30px -15px 50px;
}

.arfeatured__block .arfeatured__article {
    padding: 0 15px;
}

.arfeatured__block .arfeatured__article .arfeatured__image {
    overflow: hidden;
}

.arfeatured__block .arfeatured__article .arfeatured__image img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.arfeatured__block .arfeatured__article .arfeatured__info {
    border-left: 2px solid var(--glaccent);
    border-right: 2px solid var(--glaccent);
    border-bottom: 2px solid var(--glaccent);
    padding: 30px;
}

.arfeatured__block .arfeatured__article .arfeatured__info h3 {
    margin-bottom: 30px;
    height: 32px;
    overflow: hidden;
}

.arfeatured__block .arfeatured__article .arfeatured__info h3 a {
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 16px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.arfeatured__block .arfeatured__article .arfeatured__info p {
    color: #9a9a9a;
    font-size: 15px;
    line-height: 21px;
}

.arfeatured__block .arfeatured__article:hover .arfeatured__image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.arfeatured__block .arfeatured__article:hover .arfeatured__info h3 a {
    color: var(--secondary);
}

.featured__articles,
.popular__article {
    overflow: hidden;
}

/* =============Category block */
.category__title {
    width: 100%;
    border-bottom: 1px solid #e0e1e7;
    margin-bottom: 17px;
    margin-top: 20px;
}

.category__title h1 {
    color: #000000;
    font-family: var(--font);
    font-size: 24px;
    margin-bottom: 13px;
    line-height: 1.2;
}

.category {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.category__left {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 369px;
    margin-right: 30px;
}

.category__body {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
}

.category__panel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.category__products {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.category__products .product-list {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    padding: 0 15px;
    margin-bottom: 33px;
}

.category__products .product-list .products {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.category__products .product-list .products .outstock__more {
    width: 192px;
}

.category__products.category__wrap .product__grid {
    max-width: calc(33.33% - 30px);
    margin: 0 15px 33px;
}

.category__sorting {
    margin-right: 30px;
    margin-bottom: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.label__title {
    color: #8a909b;
    font-family: var(--font);
    font-weight: bold;
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 0;
    line-height: 31px;
}

.category__sorting .sorting__list {
    width: 248px;
    height: 40px;
    border-radius: 21px;
    background-color: var(--glaccent);
    border: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    padding: 0 20px;
}

.category__sorting .sorting__list .sorting__title {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
    -webkit-transition: color 0.1s ease;
    -o-transition: color 0.1s ease;
    transition: color 0.1s ease;
}

.turn {
    -webkit-transform: rotate(180deg) !important;
    -ms-transform: rotate(180deg) !important;
    transform: rotate(180deg) !important;
}

.category__sorting .sorting__list .sort__arrow {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.category__sorting .sorting__list .fa-chevron-down {
    color: var(--accent);
    font-size: 14px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.category__sorting .sorting__list .sorting__block {
    display: none;
    position: absolute;
    top: 44px;
    left: 0;
    z-index: 6000;
    width: 100%;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 21px;
    background-color: var(--glaccent);
    padding: 20px 18px;
}

.category__sorting .sorting__list .sorting__block a {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
    -webkit-transition: color 0.1s ease;
    -o-transition: color 0.1s ease;
    transition: color 0.1s ease;
}

.category__sorting .sorting__list .sorting__block a:hover {
    color: var(--secondary);
}

.category__sorting .sorting__list .sorting__block a:last-child {
    margin-bottom: 0;
}

.category__limit {
    display: none;
    margin-bottom: 16px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.category__limit .sorting__limit {
    width: 98px;
    height: 40px;
    padding: 0 20px;
    border-radius: 21px;
    background-color: var(--glaccent);
    border: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
}

.category__limit .limit__block {
    display: none;
    position: absolute;
    top: 44px;
    left: 0;
    z-index: 6000;
    width: 100%;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 21px;
    background-color: var(--glaccent);
    padding: 20px 18px;
}

.category__limit .limit__block a {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
    -webkit-transition: color 0.1s ease;
    -o-transition: color 0.1s ease;
    transition: color 0.1s ease;
}

.category__limit .limit__block a:hover {
    color: var(--secondary);
}

.category__limit .limit__block a:last-child {
    margin-bottom: 0;
}

.category__limit .sort__arrow {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.category__limit .fa-chevron-down {
    color: var(--accent);
    font-size: 14px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.sorting__limit .sorting__title {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
    -webkit-transition: color 0.1s ease;
    -o-transition: color 0.1s ease;
    transition: color 0.1s ease;
}

.category__grid {
    margin-left: auto;
}

.category__grid {
    margin-bottom: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.button__grid {
    width: 120px;
    height: 40px;
    color: #8a909b;
    border-radius: 21px;
    background-color: var(--glaccent);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    border: none;
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    margin-right: 12px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.button__grid svg path {
    fill: #8a909b;
    transition: fill 0.4s ease;
}

.button__grid:active,
.button__grid:focus,
.button__grid:hover {
    color: #000;
}

.button__grid:active svg path,
.button__grid:focus svg path,
.button__grid:hover svg path {
    fill: #000;
}

.button__grid.active {
    color: #000;
}

.button__grid.active svg path {
    fill: #000;
}

.button__grid:last-child {
    margin-right: 0;
}

#column-left {
    margin-bottom: 20px;
}

.content__category {
    padding-bottom: 80px;
}

/* --Products block ===================== */
.products:hover .product__body-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.products:hover .product__body-title h2 a {
    color: var(--secondary);
}

.product-layout {
    margin-bottom: 30px;
}

.product-layout .product__body {
    margin: 0;
    width: auto;
}

.product-layout.product-list.product__list .products {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: 1px solid #f5f5f5;
}

.product-layout.product-list.product__list .products .product__body-block {
    border: none;
    padding: 18px 31px 0;
}

.product-layout.product-list.product__list .products .product__body-button {
    display: none;
}

.list-button {
    display: none;
}

.product-layout.product-list .product__body-block {
    display: flex;
    flex-wrap: wrap;
    border: 0;
}

.product-layout.product-list.product__list .products .list-button {
    display: block;
}

.product-layout.product-list .product__body {
    width: 100%;
    height: auto !important;
}

.product-layout.product-list .product__body-inner {
    display: flex;
}

.product-layout.product-list .product__body .product__body-footer {
    position: relative;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 300;
}

.product-layout.product-list .product__body-button,
.product-layout.product-list .product__body-options,
.product-layout.product-list .product__body-pds,
.product-layout.product-list .product__body-sizes {
    display: flex;
}

.product-layout.product-list .product__body-pds,
.product-layout.product-list .product__body-sizes {
    width: 50%;
}

.product-layout.product-list .product__body .product__body-options,
.product-layout.product-list .product__body .product__body-title,
.product-layout.product-list .product__body-button,
.product-layout.product-list .product__body-price {
    width: 100%;
}

.product-layout.product-list .product__body .product__body-title {
    margin-bottom: 15px;
}

.product-layout.product-list .product__body-inner {
    height: auto;
}

@media screen and (max-width: 576px) {
    .product-layout {
        padding: 10px;
    }

    .product__body-block,
    .product__body-footer,
    .product__body-inner {
        display: flex;
        flex-direction: column;
    }

    .product__body-inner {
        height: 100%;
    }

    .product__body-footer {
        flex: auto;
    }

    .product__body-block {
        flex: 1 0 auto;
    }

    .product__body-price {
        margin-top: auto;
    }
}

.product-layout.product-list .product__body-img {
    width: 30%;
    min-width: 30%;
}

.product-layout.product-list .product__body-footer {
    width: 70%;
    min-width: 70%;
    border: 2px solid #f5f5f5;
    border-bottom: 0;
    display: flex;
    flex-direction: column;
}

.product-layout.product-list .product__body-title h2 {
    height: auto;
}

.product-layout.product-list .product__body-button {
    margin-top: auto;
}

.product-layout.product-list .product__body-sizes {
    z-index: 100;
}

.product-layout.product-list .product__body .body-pds__wrap {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* --Pagination ===================== */
.pagination__block {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
}

.pagination__block .pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pagination__block a {
    font-weight: bold;
}

.pagination__block .pagination li {
    margin-bottom: 0;
}

.pagination__block .pagination li.prev__page {
    width: 162px;
    height: 45px;
    border-radius: 31px;
    border: 2px solid var(--glaccent);
    background-color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 17px;
    -webkit-transition: background-color 0.5s ease, border 0.5s ease;
    -o-transition: background-color 0.5s ease, border 0.5s ease;
    transition: background-color 0.5s ease, border 0.5s ease;
}

.pagination__block .pagination li.next__page {
    width: 162px;
    height: 45px;
    border-radius: 31px;
    border: 2px solid var(--glaccent);
    background-color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 17px;
    -webkit-transition: background-color 0.5s ease, border 0.5s ease;
    -o-transition: background-color 0.5s ease, border 0.5s ease;
    transition: background-color 0.5s ease, border 0.5s ease;
}

.pagination__block .pagination li.next__page:hover,
.pagination__block .pagination li.prev__page:hover {
    background-color: #000;
    color: #fff;
}

.pagination__block .pagination li.next__page:active,
.pagination__block .pagination li.next__page:focus,
.pagination__block .pagination li.prev__page:active,
.pagination__block .pagination li.prev__page:focus {
    background-color: var(--secondary);
    border: 2px solid var(--secondary);
}

.pagination__block .pagination li.next__page a,
.pagination__block .pagination li.prev__page a {
    color: #51555e;
    font-family: var(--font);
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.pagination__block .pagination li.pagination__link {
    width: 45px;
    height: 45px;
    border-radius: 31px;
    border: 2px solid var(--glaccent);
    margin-right: 8px;
    -webkit-transition: background-color 0.5s ease, border 0.5s ease, width 0.5s ease, height 0.5s ease;
    -o-transition: background-color 0.5s ease, border 0.5s ease, width 0.5s ease, height 0.5s ease;
    transition: background-color 0.5s ease, border 0.5s ease, width 0.5s ease, height 0.5s ease;
}

.pagination__block .pagination li.pagination__link a {
    color: #51555e;
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
    height: 100%;
    width: 100%;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.pagination__block .pagination li.next__page:active a,
.pagination__block .pagination li.next__page:focus a,
.pagination__block .pagination li.prev__page:active a,
.pagination__block .pagination li.prev__page:focus a {
    color: #fff;
}

.pagination__block .pagination li.pagination__link.active a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
}

.pagination__block .pagination li.pagination__link.active {
    width: 61px;
    height: 61px;
    border-radius: 31px;
    border: 2px solid #000;
    background-color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 8px;
    -webkit-transition: background-color 0.5s ease, border 0.5s ease, width 0.5s ease, height 0.5s ease;
    -o-transition: background-color 0.5s ease, border 0.5s ease, width 0.5s ease, height 0.5s ease;
    transition: background-color 0.5s ease, border 0.5s ease, width 0.5s ease, height 0.5s ease;
}

.pagination__block .pagination li.pagination__link.active span {
    color: #000;
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.pagination__block .pagination li.pagination__link.active:hover {
    background-color: #fff;
}

.pagination__block .pagination li.pagination__link a:last-child {
    margin-right: 0;
}

.pagination__block .pagination li.pagination__link:hover {
    background-color: #000;
}

.pagination__block .pagination li.pagination__link:hover a {
    color: #ffffff;
}

.pagination__block .pagination li.pagination__link:active {
    border: 2px solid var(--secondary);
    background-color: #fff;
}

.pagination__block .pagination li.next__page:hover a,
.pagination__block .pagination li.prev__page:hover a {
    color: #ffffff;
}

/* --Category description ============================== */
.category__description {
    width: 100%;
    background-color: var(--glaccent);
    padding: 50px 0;
}

.description__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.description__body .description__thumb {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 334px;
}

.description__body .description__text {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
    padding-left: 35px;
}

.description__full {
    max-height: 336px;
    overflow: hidden;
}

.description__full p {
    color: #535353;
    font-family: var(--font);
    font-size: 14px;
    letter-spacing: 0.13px;
    line-height: 21px;
    margin-bottom: 15px;
}

.description__full h2,
.description__full h3 {
    color: #535353;
    font-family: var(--font);
    font-size: 22px;
    margin-bottom: 20px;
}

.product-layout .products {
    margin-bottom: 30px;
}

.button__continue a {
    width: 178px;
    height: 60px;
    background-color: var(--accent);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    margin: 20px 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.button__continue a:hover {
    background-color: var(--secondary);
}

.button__continue a:focus {
    background-color: var(--secondary);
}

/* -- Load more button ============================== */
.load__more {
    background-color: var(--accent);
    border: 1px solid var(--accent);
    color: #fff;
    font-family: var(--font);
    font-size: 16px;
    padding: 10px;
    max-width: 250px;
    width: 100%;
    height: 60px;
    margin: 20px auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: background-color 0.5s ease, -webkit-transform 0.5s ease;
    transition: background-color 0.5s ease, -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease, background-color 0.5s ease;
    transition: transform 0.5s ease, background-color 0.5s ease;
    transition: transform 0.5s ease, background-color 0.5s ease, -webkit-transform 0.5s ease;
}

.load__more:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    background-color: #fff;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.ajax__loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background: rgba(255, 255, 255, 0.7);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*----------------Ocfilter =============================*/
.list-group-item {
    margin-bottom: 10px;
}

.ocf-option-name {
    width: 100%;
    height: 64px;
    /* background-color: #EBEBEB; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #1f2024;
    font-family: var(--font);
    font-weight: normal !important;
    font-size: 18px !important;
    margin-bottom: 2px !important;
    padding: 0 32px;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.ocf-option-name:hover {
    color: var(--secondary);
}

.ocf-option-name .fa-sort-up {
    margin-top: 10px;
}

.ocf-option-values {
    background-color: #f2f3f4;
    padding: 30px 32px 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ocf-option-values .scale {
    width: 100%;
    height: 5px;
    margin: 0 0 0 15px;
}

.ocf-option-values .scale .noUi-origin {
    border-radius: 0;
}

.ocf-option-values .scale .noUi-origin {
    border-radius: 0;
}

.ocf-option-values .scale .noUi-background {
    background-color: #ebebeb;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ocf-option-values .scale .noUi-pips {
    display: none;
}

.ocf-option-values .noUi-horizontal .noUi-handle {
    width: 17px;
    height: 17px;
    border-radius: 100%;
    background-color: #ffd6d0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ocf-option-values .noUi-horizontal .noUi-handle::after,
.ocf-option-values .noUi-horizontal .noUi-handle::before {
    display: none;
}

.ocf-option-values .noUi-connect {
    background-color: #ffd6d0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ocf-option-values .noUi-target {
    border-radius: 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ocf-option-values.option__price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.ocf-option-values .price__form {
    margin-top: 26px;
    width: 100%;
}

.ocf-option-values .price__form .form-inline {
    margin: 0 -15px;
}

.ocf-option-values .price__form .form-inline .form-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ocf-option-values .price__form .form-inline input {
    width: 95px;
    height: 42px;
    border-radius: 21px;
    background-color: #ffffff;
    padding: 11px 15px;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    border: none;
    font-weight: bold;
}

.ocf-option-values .price__form .form-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.ocf-option-values .price__form .form-group .filter__fromto {
    margin-right: 10px;
    color: #585858;
    font-size: 14px;
}

.ocf-option-values label {
    color: var(--secondary) !important;
    font-size: 14px !important;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
    margin-bottom: 0;
    padding: 0 !important;
}

.ocf-option-values label a {
    color: #51555e;
    font-size: 14px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.ocf-option-values label a:hover {
    color: var(--secondary);
}

.ocf-option-values label a:focus {
    color: var(--secondary);
}

.ocf-option-values input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    -webkit-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
}

.ocf-option-values input[type="checkbox"]:checked:before {
    content: "";
    background: url("/catalog/view/theme/brainlab/image/icon/check-solid.svg") no-repeat center;
    width: 17px;
    height: 17px;
    font-weight: 900;
    font-size: 18px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.ocf-option-values .ocf-selected input[type="checkbox"] {
    background-color: var(--secondary);
}

.ocf-option-values .ocf-selected {
    color: var(--accent) !important;
}

.ocf-option-values .ocf-selected a {
    color: var(--accent);
}

.ocf-option-values .badge {
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 400;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.ocf-option__value {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
    justify-content: space-between;
}

.ocf-option__value:last-child {
    margin-bottom: 0;
}

.ocf-option-values label:hover label {
    color: var(--secondary) !important;
}

.ocf-option-values label:hover .badge {
    color: var(--secondary);
}

.ocf-option-values label:hover input[type="checkbox"] {
    background-color: #9a9a9a;
}

.ocf-option-values label:hover input[type="checkbox"]:before {
    font-weight: 900;
    content: "";
    background: url("/catalog/view/theme/brainlab/image/icon/check-solid.svg") no-repeat center;
    width: 17px;
    height: 17px;
    font-size: 18px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.ocfilter .selected-options {
    background-color: var(--filter-bg);
    padding: 21px 32px;
}

.ocfilter .selected-options .selected__title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 22px;
}

.ocfilter .selected-options .selected__title button {
    border: none;
    background-color: transparent;
    color: #000;
    font-family: var(--font);
    outline: none;
    font-size: 13px;
    font-weight: bold;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}

.ocfilter .selected-options .selected__title button svg {
    margin-left: 5px;
}

.ocfilter-option {
    margin-bottom: 0;
}

.ocfilter .selected-options .ocfilter-option {
    border-radius: 21px;
    background-color: var(--gaccent);
    padding: 8px 12px;
    color: #fff;
    display: flex;
}

.ocfilter .selected-options .ocfilter-option span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
}

.ocfilter .selected-options .ocfilter-option button {
    border: none;
    background-color: transparent;
    color: #ffffff;
    font-family: var(--font);
    font-size: 13px;
    font-weight: bold;
    outline: none;
    display: flex;
    align-items: center;
}

.ocfilter .selected-options .ocfilter-option button svg {
    fill: #fff;
    margin-left: 5px;
}

.ocfilter .selected-options .filter__blockselected {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ocfilter .selected-options .filter__blockselected .ocfilter-option {
    margin-bottom: 5px;
    cursor: pointer;
}

.ocfilter-option .dropdown__values {
    display: none;
}

.ocfilter-option .ocf-option__block {
    max-height: 180px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price__ocfilter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

.price__namedropdown .filter__ocarrow {
    display: flex;
    transform-origin: center;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.filter__arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.rotate__filter {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.rotate__pricefilter {
    -webkit-transform: rotate(180deg) !important;
    -ms-transform: rotate(180deg) !important;
    transform: rotate(180deg) !important;
}

#ocfilter .form-inline {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mobile__filter {
    width: 100%;
    height: 40px;

    border: none;
    display: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    -webkit-box-pack: justify;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    padding: 0;
    -webkit-transition: color 0.1s ease;
    -o-transition: color 0.1s ease;
    transition: color 0.1s ease;
}

.mobile__filter span {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.mobile__filter span img {
    width: 12px;
}

.mobile__filter:focus,
.mobile__filter:hover {
    color: var(--secondary);
}

.mobile__filter span.active {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.button__filter {
    max-width: 178px;
    width: 100%;
    height: 60px;
    background-color: var(--secondary);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    border: none;
    margin: 25px auto 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.button__filter:hover {
    background-color: var(--secondary);
}

.button__filter:focus {
    background-color: var(--secondary);
}

/*================= Popover =============================================*/
#ocfilter .popover {
    min-width: 210px;

    padding: 10px 18px;

    align-items: center;

    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    background-color: #121313;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0;
    left: 15% !important;
    /* right: 0!important;
    */

    cursor: pointer;

    -webkit-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
}

#ocfilter .popover {
    white-space: nowrap;
}

#ocfilter .popover:hover {
    background-color: #121313;
}

.popover .popover-body {
    display: flex;

    padding: 0;

    width: 100%;
    height: 100%;
}

#ocfilter .popover .arrow {
    display: none;
}

#ocfilter .bs-popover-auto[x-placement^="right"] > #ocfilter .arrow::after,
#ocfilter .bs-popover-right > .arrow::after {
    left: -21px;
    border-width: 18px 18px 28px 12px;
    border-right-color: var(--secondary);
    top: -14px;
    -webkit-transition: border-right-color 0.5s ease;
    -o-transition: border-right-color 0.5s ease;
    transition: border-right-color 0.5s ease;
}

#ocfilter .bs-popover-auto[x-placement^="left"] > #ocfilter .arrow::after,
#ocfilter .bs-popover-left > .arrow::after {
    right: -21px;
    border-width: 18px 18px 28px 12px;
    border-left-color: var(--secondary);
    top: -14px;
    -webkit-transition: border-left-color 0.5s ease;
    -o-transition: border-left-color 0.5s ease;
    transition: border-left-color 0.5s ease;
}

#ocfilter .button__popup {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    max-width: unset;
    width: 100%;
    -webkit-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
}

#ocfilter .popover:focus .button__popup,
#ocfilter .popover:hover .button__popup {
    background-color: var(--secondary);
}

#ocfilter .popover:focus,
#ocfilter .popover:hover {
    background-color: var(--secondary);
}

#ocfilter .popover:hover .arrow::after {
    border-right-color: var(--secondary);
}

#ocfilter .list-group-item {
    border: 0;
}

#ocfilter .list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#ocfilter .selected__name {
    font-size: 18px;
}

.filter__loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 999999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* -----Account__page ==============================*/
.top__title {
    margin-top: 20px;
    margin-bottom: 32px;
    width: 100%;
    height: 56px;
    border-top: 1px solid var(--glaccent);
    border-bottom: 1px solid var(--glaccent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.top__title a {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 30px;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    transition: all 0.4s ease;
}

.top__title a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary);
    transition: width 0.4s ease;
}

.top__title a:hover {
    color: var(--secondary);
}

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

.top__title a.active {
    color: var(--secondary);
}

.top__title a.active:after {
    width: 100%;
}

.top__title a:last-child {
    margin-right: 0;
}

.form__account {
    max-width: 769px;
    width: 100%;
    margin: 0 auto 41px;
    background-color: var(--glaccent);
}

.form__title {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e0e1e7;
}

.form__title h1 {
    color: #000000;
    font-family: var(--font);
    font-size: 22px;
}

.form__body {
    max-width: 419px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 15px 20px;
}

.form__body .form__group {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.form__body .form__group label {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    margin-bottom: 14px;
}

.form__body .form__group input[type="email"],
.form__body .form__group input[type="password"] {
    width: 100%;
    height: 50px;
    border: 2px solid transparent;
    padding: 0 20px;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    transition: border 0.4s ease;
}

.form__body .form__group input[type="email"]:focus,
.form__body .form__group input[type="email"]:hover,
.form__body .form__group input[type="password"]:focus,
.form__body .form__group input[type="password"]:hover {
    border: 2px solid var(--secondary);
}

.form__body .form__group input[type="submit"] {
    width: 100%;
    height: 64px;
    margin-top: 40px;
    background-color: var(--accent);
    font-weight: bold;
    border: 2px solid transparent;
    cursor: pointer;
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    transition: all 0.4s ease;
}

.form__body .form__group input[type="submit"]:hover {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}

.form__body .form__group input[type="submit"]:focus:hover {
    background-color: #292929;
    border: 2px solid #292929;
    color: #fff;
}

.form__social {
    padding-bottom: 26px;
    border-bottom: 1px solid #e0e1e7;
}

.form__social .social__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.form__forgotten a {
    display: block;
    padding: 20px 0;
    width: 178px;
    text-align: center;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 15px;
    margin: 0 auto;
    transition: color 0.4s ease;
}

.form__forgotten a:hover {
    color: var(--accent);
}

.account_socnetauth2__header {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
}

.account_socnetauth2_lline_links .socnetauth2_buttons img {
    margin-bottom: -11px;
}

.account__pagination {
    margin-top: 30px;
    text-align: right;
}

.account {}

.button__account.link__button {
    margin-top: 30px;
}

/*------------Register__page ==================================*/
.form__register {
    max-width: 1094px;
    width: 100%;
    background-color: var(--glaccent);
    margin: 0 auto 50px;
}

.register__body {
    max-width: 892px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.register__body form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.register__body form .form__group {
    flex-basis: 47%;
    max-width: 47%;
}

.register__body .register__block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.register__body .form__group {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.register__body .form__group label {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    margin-bottom: 10px;
}

.register__body .form__group label .require__field {
    margin-left: 3px;
    color: #ff3108;
}

.form__group .form__control {
    width: 100%;
    height: 50px;
    border: 1px solid transparent;
    padding: 0 16px;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    transition: border 0.4s ease;
}

.form__group .form__control:focus,
.form__group .form__control:hover {
    border: 1px solid var(--secondary);
}

.register__body .block__buttons {
    width: 100%;
    padding: 16px 0 10px;
    text-align: center;
}

.register__body .block__buttons input[type="submit"] {
    max-width: 399px;
    width: 100%;
    height: 64px;
    font-weight: bold;
    background-color: var(--accent);
    border: 2px solid transparent;
    cursor: pointer;
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    transition: all 0.4s ease;
}

.register__body .block__buttons input[type="submit"]:hover {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}

.register__body .block__buttons input[type="submit"]:focus:hover {
    background-color: #292929;
    border: 2px solid #292929;
    color: #fff;
}

.button__form {
    width: 100%;
    text-align: center;
}

.button__form input[type="submit"] {
    max-width: 399px;
    width: 100%;
    height: 64px;
    background-color: var(--accent);
    font-weight: bold;
    border: 2px solid transparent;
    cursor: pointer;
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    transition: background-color 0.4s ease;
}

.button__form input[type="submit"]:hover {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}

.button__form input[type="submit"]:focus:hover {
    background-color: #292929;
    border: 2px solid #292929;
    color: #fff;
}

/*--------------Page__logout ===============================*/
.form__success {
    max-width: 769px;
    width: 100%;
    background-color: var(--glaccent);
    margin: 20px auto 50px;
    padding-bottom: 20px;
}

.success__title {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ebebeb;
}

.success__subtitle {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ebebeb;
    color: #8a909b;
}

@media screen and (max-width: 768px) {
    .success__subtitle {
        height: 50px;
    }
}

.success__subtitle span {
    text-decoration: underline;
}

.success__title h1 {
    color: #000000;
    font-family: var(--font);
    font-size: 22px;
    text-align: center;
    padding: 0 20px;
}

.success__body {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0 20px;
    color: #535353;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.13px;
    line-height: 21px;
}

.success__body p {
    color: #535353;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.13px;
    line-height: 21px;
}

.success__buttons {
    width: 100%;
    text-align: center;
}

.input__block {
    position: relative;
}

.input__block .required__symbol {
    display: none;
    position: absolute;
    top: 17px;
    right: -30px;
    color: #e22929;
    font-size: 19px;
}

.required__text {
    color: #e22929;
    font-size: 13px;
    line-height: 1.2;
    margin-top: 10px;
}

.text-danger {
    color: #e22929;
    font-size: 13px;
    line-height: 1.2;
    margin-top: 10px;
}

/*--------------------Account page ==========================================*/

.account__form .form__group label {
    font-size: 35px;
    font-weight: 400;
    line-height: 42.36px;
    text-align: left;
    color: #121313;
}

.account__container {
    padding-left: 0;
    padding-right: 0;
}

.account {}

.account .container {
    padding-left: 40px;
    padding-right: 40px;

    max-width: unset;
}

.account__title h1 {
    border-bottom: 1px solid #121313;
    font-size: 35px;
    font-weight: 400;
    line-height: 42.36px;
    text-align: left;

    padding-bottom: 12px;
}

.account__page {
    margin-bottom: 50px;
}

.account__menu {
    width: 100%;
}

.account__container {
    width: 100%;
}

.account__menu-item.active {
    background-color: #f2f3f4;
}

.account__menu-item:hover a {
    color: #121313;
}

.account__menu ul li a {
    color: #121313;
}

.account__menu ul li {
    background-color: transparent;
    transition: border-bottom 0.4s ease, background-color 0.4s ease;
    position: relative;
}

.account__menu ul li span {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--secondary);
    width: 0;
    height: 100%;
    transition: width 0.25s ease;
}

.account__menu ul li:hover span {
    width: 100%;
}

.account__menu ul li.active span {
    width: 100%;
}

.account__menu ul li:last-child {
    border-bottom: 1px solid transparent;
}

.account__menu ul li a {
    color: var(--accent);
    font-family: var(--font);
    font-size: 15px;
    position: relative;
    z-index: 3;

    width: 100%;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s linear;

    display: flex;
    align-items: center;

    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    text-align: left;

    margin-bottom: 10px;
}

.account__menu-item {}

.account__menu-item-icon {
    margin-right: 10px;
}

.account__block {
    width: 100%;
}

.account__block .block__title {
    padding: 29px 60px;
    background-color: #ebebeb;
}

.account__block .block__title h2 {
    color: var(--accent);
    font-family: var(--font);
    font-size: 22px;
}

/* .account__form {
    padding: 30px 60px 50px;
} */

.account__right {
    width: 100%;
}

.account__form {
    margin-top: 40px;
}

.account__form .form__input {
    display: flex;
    flex-direction: column;
    margin-bottom: 27px;
}

.account__form .form__input label {
    color: #121313;
    margin-bottom: 14px;

    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;
}

.account__data-title {
    margin-bottom: 27px;
}

.percent__block {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    width: 100%;

    border-bottom: 1px solid #121313;

    padding-bottom: 14px;

    margin-top: 60px;
}

.percent__block .percent__title {
    color: #121313;
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;

    margin-right: 5px;
}

.percent__block .percent__value {
    color: #121313;
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
}

.account__form .form__input input {
    width: 100%;
    height: 50px;
    border: 1px solid #f2f3f4;
    padding: 0 25px;
    color: #121313;
    font-family: var(--font);
    font-size: 15px;

    background: #f2f3f4;
}

.button__edit {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    background-color: var(--accent);
    font-weight: bold;
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    border: 2px solid transparent;
    transition: all 0.4s ease;

    width: 100%;
}

.button__edit:hover {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}

.button__edit:focus:hover {
    background-color: #292929;
    border: 2px solid #292929;
    color: #fff;
}

.account__form .form__group {
    display: flex;
    flex-direction: column;
    margin-bottom: 31px;
}

.account__form .form__group input[type="text"],
.account__form .form__group input[type="email"],
.account__form .form__group input[type="password"],
.account__form .form__group input[type="tel"],
.account__form .form__group input[type="search"],
.account__form .form__group input[type="url"],
.account__form .form__group input[type="date"] {
    max-width: 50%;
    width: 100%;
    height: 50px;
    border: 2px solid transparent;
    background-color: #fff;
    padding: 0 25px;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 15px;
    transition: border 0.5s ease;
}

.account__form .form__group select {
    width: 100%;
    height: 50px;
    border: 2px solid transparent;
    background-color: #fff;
    padding: 0 25px;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 15px;
    transition: border 0.5s ease;
}

.input-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input-select {
    width: 50%;
    position: relative;
}

.input-select:after {
    content: "\f078";
    position: absolute;
    top: 37%;
    right: 4%;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    color: var(--gaccent);
}

.account__form .form__group textarea {
    max-width: 50%;
    width: 100%;
    height: 150px;
    border: 2px solid transparent;
    background-color: #fff;
    padding: 7px 25px;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 15px;
    transition: border 0.5s ease;
}

.account__form .form__group .button__date {
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    background-color: #fff;
}

.account__form .form__group .check__radio {
    display: flex;
    flex-direction: column;
}

.account__form .form__group .check__radio .radio__inline {
    display: flex;
    align-items: center;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
}

.account__form .form__group .button__date .fa-calendar {
    font-size: 18px;
    color: var(--secondary);
}

.account__form .form__group input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 25px;
    min-width: 25px;
    height: 25px;
    margin-right: 10px;
    border: 1px solid #cdd2e1;
    background-color: #ffffff;
    border-radius: 100%;
    cursor: pointer;
    transition: border 0.5s ease;
}

.account__form .form__group input[type="radio"]:checked {
    border: 8px solid var(--secondary);
}

.account__form .form__group input[type="radio"]:hover {
    border: 8px solid #9a9a9a;
}

.account__form .form__group input[type="text"]:focus,
.account__form .form__group input[type="text"]:hover,
.account__form .form__group input[type="email"]:focus,
.account__form .form__group input[type="email"]:hover,
.account__form .form__group input[type="password"]:focus,
.account__form .form__group input[type="password"]:hover,
.account__form .form__group input[type="tel"]:focus,
.account__form .form__group input[type="tel"]:hover,
.account__form .form__group input[type="search"]:focus,
.account__form .form__group input[type="search"]:hover,
.account__form .form__group input[type="url"]:focus,
.account__form .form__group input[type="url"]:hover,
.account__form .form__group input[type="date"]:focus,
.account__form .form__group input[type="date"]:hover,
.account__form .form__group select:focus,
.account__form .form__group select:hover {
    border: 2px solid var(--secondary);
}

.account__form .form__group textarea:focus,
.account__form .form__group textarea:hover {
    border: 2px solid var(--secondary);
}

.account__form .button__account input {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 229px;
    width: 100%;
    height: 64px;
    border: 2px solid transparent;
    background-color: var(--accent);
    font-weight: bold;
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.account__form .button__account input:hover {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}

.account__form .button__account input:focus:hover {
    background-color: #292929;
    border: 2px solid #292929;
    color: #fff;
}

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

.account__form .check__form .radio__inline {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.account__form .check__form .radio__inline:last-child {
    margin-right: 20px;
}

.link__button a {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 229px;
    font-weight: bold;
    width: 100%;
    height: 64px;
    border: none;
    background-color: var(--accent);
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.link__button a:hover {
    background-color: var(--secondary);
}

.account__form .empty__text {
    color: #535353;
    font-size: 14px;
    letter-spacing: 0.13px;
}

/*--------------Address page ======================================*/
.address__table {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
    background-color: #fff;
}

.address__info {
    flex-basis: 80%;
    max-width: 80%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.address__info .address__item {
    max-width: 20%;
    width: 100%;
    padding: 5px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 2px solid var(--glaccent);
}

.address__info .address__item .item__title {
    color: var(--gaccent);
    font-size: 13px;
    margin-bottom: 5px;
}

.address__info .address__item .item__text {
    color: var(--secondary);
    font-size: 14px;
    font-family: var(--font);
}

.address__controll {
    display: flex;
    flex-direction: column;
    flex-basis: 20%;
    max-width: 20%;
    width: 100%;
    min-height: 112px;
}

.address__controll a:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65%;
    background-color: var(--secondary);
    color: #ffffff;
    font-family: var(--font);
    font-size: 13px;
    transition: background-color 0.5s ease;
}

.address__controll a:first-child:hover {
    background-color: var(--secondary);
}

.address__controll a:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35%;
    background-color: var(--secondary);
    color: #ffffff;
    font-family: var(--font);
    font-size: 13px;
    transition: background-color 0.5s ease;
}

.address__controll a:last-child:hover {
    background-color: #33353c;
}

/*-------------- Wishlist page =======================================*/
.wishlist__block {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 10px;
    background-color: #fff;
    min-height: 100px;
}

.wishlist__info {
    flex-basis: 85%;
    max-width: 85%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.wishlist__controlls {
    display: flex;
    flex-direction: column;
    flex-basis: 15%;
    max-width: 15%;
    width: 100%;
}

.wishlist__controlls a:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65%;
    background-color: var(--secondary);
    color: #ffffff;
    font-family: var(--font);
    font-size: 13px;
    padding: 0 5px;
    transition: background-color 0.5s ease;
}

.wishlist__controlls a:first-child:hover {
    background-color: var(--secondary);
}

.wishlist__controlls a:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35%;
    background-color: var(--secondary);
    color: #ffffff;
    font-family: var(--font);
    font-size: 13px;
    padding: 0 5px;
    transition: background-color 0.5s ease;
}

.wishlist__controlls a:last-child:hover {
    background-color: #33353c;
}

.wishlist__info .wishlist__item:nth-child(1) {
    flex-basis: 12%;
    max-width: 12%;
    width: 100%;
}

.wishlist__info .wishlist__item:nth-child(2) {
    flex-basis: 30%;
    max-width: 30%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}

.wishlist__info .wishlist__item:nth-child(3) {
    flex-basis: 16%;
    max-width: 16%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}

.wishlist__info .wishlist__item:nth-child(4) {
    flex-basis: 16%;
    max-width: 16%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}

.wishlist__info .wishlist__item:nth-child(5) {
    flex-basis: 26%;
    max-width: 26%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}

.wishlist__info .wishlist__item .item__title {
    color: var(--gaccent);
    font-size: 13px;
    margin-bottom: 5px;
}

.wishlist__info .wishlist__item .item__text {
    color: var(--secondary);
    font-size: 14px;
    font-family: var(--font);
    line-height: 1.2;
}

/*-------------- Newsletter page =======================================*/
.reward__block {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    background-color: #fff;
    margin-top: 15px;
    margin-bottom: 10px;
}

.reward__block .reward__item {
    flex-basis: 33.33%;
    max-width: 33.33%;
    width: 100%;
    border-right: 2px solid var(--glaccent);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.reward__block .reward__item .item__title {
    color: var(--gaccent);
    font-size: 13px;
    margin-bottom: 5px;
}

.reward__block .reward__item .item__text {
    color: var(--secondary);
    font-size: 14px;
    font-family: var(--font);
}

/*-------------- Order page =======================================*/
.order__block {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #fff;
    min-height: 84px;
    margin-bottom: 10px;
}

.order__info {
    flex-basis: 85%;
    max-width: 85%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.order__controlls {
    flex-basis: 15%;
    max-width: 15%;
    width: 100%;
}

.order__controlls a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    border: 2px solid transparent;
    font-weight: bold;
    color: #ffffff;
    font-family: var(--font);
    font-size: 13px;
    transition: background-color 0.5s ease;
}

.order__controlls a:hover {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}

.order__controlls a:focus:hover {
    background-color: #292929;
    border: 2px solid #292929;
    color: #fff;
}

.order__info .order__item {
    flex-basis: 25%;
    max-width: 25%;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-right: 2px solid var(--glaccent);
    padding: 21px 20px;
}

.order__info .order__item:last-child {
    border-right: 0;
}

.order__info .order__item .item__title {
    color: var(--gaccent);
    font-size: 13px;
    margin-bottom: 5px;
}

.order__info .order__item .item__text {
    color: var(--secondary);
    font-size: 14px;
    font-family: var(--font);
}

.order__info .order__item .item__text.order__green {
    color: #2bba4d;
}

.order__info .order__item .item__text.order__red {
    color: #c9315a;
}

.order__top {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    margin-bottom: 10px;
}

.order__top .detail__title {
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 17px;
    border-bottom: 1px solid var(--glaccent);
    padding: 20px 15px 10px;
}

.order__top .block__info {
    display: flex;
    flex-wrap: wrap;
}

.order__top .block__info .block__item {
    flex-basis: 25%;
    max-width: 25%;
    width: 100%;
    border-right: 1px solid var(--glaccent);
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
}

.order__top .block__info .block__item:last-child {
    border-right: 0;
}

.order__top .block__info .block__item .item__title {
    color: var(--gaccent);
    font-size: 13px;
    margin-bottom: 5px;
}

.order__top .block__info .block__item .item__text {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.2;
}

.order__middle {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 10px;
}

.order__middle .detail__title {
    width: 100%;
    padding: 20px 15px 10px;
    background-color: #fff;
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 17px;
    margin-bottom: 1px;
}

.order__middle .left__block,
.order__middle .right__block {
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
    background-color: #fff;
    padding: 20px 15px;
    display: flex;
    flex-wrap: wrap;
}

.order__middle .left__block .payment__title,
.order__middle .right__block .shipping__title {
    width: 100%;
    margin-bottom: 5px;
    color: #1f1f1f;
    font-family: var(--font);
}

.order__middle .left__block {
    border-right: 1px solid var(--glaccent);
}

.order__middle .left__block .item__block,
.order__middle .right__block .item__block {
    flex-basis: 50%;
    max-width: 50%;
    width: 100%;
    padding: 5px 0;
}

.order__middle .left__block .item__title,
.order__middle .right__block .item__title {
    color: var(--gaccent);
    font-size: 13px;
    margin-bottom: 5px;
}

.order__middle .left__block .item__text,
.order__middle .right__block .item__text {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.2;
}

.order__product .product__bodys {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    width: 100%;
    margin-bottom: 10px;
}

.order__product .product__bodys .product__info {
    flex-basis: 85%;
    max-width: 85%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.order__product .product__bodys .product__controlls {
    flex-basis: 15%;
    max-width: 15%;
    width: 100%;
}

.order__product .product__bodys .item__block {
    display: flex;
    flex-direction: column;
}

.order__product .product__bodys .item__block:nth-child(1) {
    flex-basis: 12%;
    max-width: 12%;
    width: 100%;
}

.order__product .product__bodys .item__block:nth-child(2) {
    flex-basis: 25%;
    max-width: 25%;
    width: 100%;
    padding: 25px 10px;
}

.order__product .product__bodys .item__block:nth-child(3) {
    flex-basis: 18%;
    max-width: 18%;
    width: 100%;
    padding: 25px 10px;
}

.order__product .product__bodys .item__block:nth-child(4) {
    flex-basis: 20%;
    max-width: 20%;
    width: 100%;
    padding: 25px 10px;
}

.order__product .product__bodys .item__block:nth-child(5) {
    flex-basis: 25%;
    max-width: 25%;
    width: 100%;
    padding: 25px 10px;
}

.order__product .product__bodys .item__block .item__title {
    color: var(--gaccent);
    font-size: 13px;
    margin-bottom: 5px;
}

.order__product .product__bodys .item__block .item__text {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.2;
}

.order__product .product__bodys .product__controlls {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.order__product .product__bodys .product__controlls a:nth-child(1) {
    height: 100%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: #ffffff;
    font-family: var(--font);
    font-size: 11px;
    transition: background-color 0.5s ease;
    text-align: center;
    padding: 10px;
}

.order__info-image {
    background-color: #efeff1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order__product .product__bodys .product__controlls a:nth-child(1):hover {
    background-color: var(--secondary);
}

.order__product .product__bodys .product__controlls a:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35%;
    background-color: var(--secondary);
    color: #ffffff;
    font-family: var(--font);
    font-size: 13px;
    transition: background-color 0.5s ease;
    text-align: center;
    padding: 5px;
}

.order__product .product__bodys .product__controlls a:nth-child(2):hover {
    background-color: #33353c;
}

.order__product .product__bodys .product__controlls a:nth-child(3) {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25%;
    background-color: var(--glaccent);
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    transition: background-color 0.5s ease;
    text-align: center;
}

.order__product .product__bodys .product__controlls a:nth-child(3):hover {
    background-color: #dcdde1;
}

.product__option .modal__title {
    color: var(--accent);
    font-family: var(--font);
    font-size: 18px;
    text-align: left;
}

.product__option .modal__option {
    margin: 20px 0 30px;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product__option .modal__option span {
    display: block;
    padding: 5px 0;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.2;
}

.product__count {
    margin-bottom: 10px;
}

.product__count .count__title {
    width: 100%;
    padding: 20px 15px 10px;
    background-color: #fff;
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 17px;
    margin-bottom: 1px;
}

.product__count .count__block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.product__count .count__block .count__item {
    flex-basis: 33.33%;
    max-width: 33.33%;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--glaccent);
    padding: 15px;
}

.product__count .count__block .count__item:last-child {
    border-right: 0;
}

.product__count .count__block .count__item .item__title {
    color: var(--gaccent);
    font-size: 13px;
    margin-bottom: 5px;
}

.product__count .count__block .count__item .item__text {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.2;
}

.order__comment {
    margin-bottom: 10px;
    width: 100%;
    background-color: #fff;
}

.order__comment .item__title {
    width: 100%;
    padding: 20px 15px 10px;
    background-color: #fff;
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 17px;
    border-bottom: 1px solid var(--glaccent);
}

.order__comment .item__text {
    padding: 15px;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.2;
}

.order__history {
    background-color: #fff;
    margin-bottom: 30px;
}

.order__history .history__title {
    width: 100%;
    padding: 20px 15px 10px;
    background-color: #fff;
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 17px;
    border-bottom: 1px solid var(--glaccent);
}

.history__block {
    display: flex;
    flex-direction: column;
    height: 243px;
    overflow: auto;
}

.history__block::-webkit-scrollbar {
    width: 8px;
    height: 1px;
}

.history__block::-webkit-scrollbar-track {
    background-color: var(--secondary);
}

.history__block::-webkit-scrollbar-track-piece {
    background-color: var(--glaccent);
}

.history__block::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: var(--secondary);
}

.history__block::-webkit-scrollbar-corner {
    background-color: var(--secondary);
}

.history__block::-webkit-resizer {
    background-color: var(--secondary);
}

.history__block .item__history {
    padding: 15px;
    border-bottom: 1px solid var(--glaccent);
    display: flex;
    justify-content: space-between;
}

.history__block .item__history .item__block {
    display: flex;
    flex-direction: column;
}

.history__block .item__history .item__block .item__title {
    color: var(--gaccent);
    font-size: 13px;
    margin-bottom: 5px;
}

.history__block .item__history .item__block .item__text {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.2;
}

.history__block .item__history:last-child {
    border-bottom: 0;
}

/*----------------Return page ============================================*/
.return__block {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #fff;
    margin-bottom: 10px;
}

.return__block .return__info {
    flex-basis: 85%;
    max-width: 85%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.return__block .return__controlls {
    flex-basis: 15%;
    max-width: 15%;
    width: 100%;
}

.return__block .return__item {
    flex-basis: 20%;
    max-width: 20%;
    width: 100%;
    border-right: 1px solid var(--glaccent);
    display: flex;
    flex-direction: column;
    padding: 21px 20px;
}

.return__block .return__item .item__title {
    color: var(--gaccent);
    font-size: 13px;
    margin-bottom: 5px;
}

.return__block .return__item .item__text {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.2;
}

.return__block .return__controlls a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: var(--secondary);
    color: #ffffff;
    font-family: var(--font);
    font-size: 13px;
    transition: background-color 0.5s ease;
}

.return__block .return__controlls a:hover {
    background-color: var(--secondary);
}

.return__block .return__item .item__text.order__green {
    color: #2bba4d;
}

.return__block .return__item .item__text.order__red {
    color: #c9315a;
}

.return__orders {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 10px;
    background-color: #fff;
}

.return__orders .left__orders,
.return__orders .right__orders {
    flex-basis: 50%;
    max-width: 50%;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.return__orders .left__orders {
    border-right: 1px solid var(--glaccent);
}

.return__orders .left__orders .item__title,
.return__orders .right__orders .item__title {
    color: var(--gaccent);
    font-size: 13px;
    margin-bottom: 5px;
}

.return__orders .left__orders .item__text,
.return__orders .right__orders .item__text {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.2;
}

.return__products {
    width: 100%;
    background-color: #fff;
    margin-bottom: 10px;
}

.return__products .return__title {
    width: 100%;
    border-bottom: 1px solid var(--glaccent);
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 17px;
    border-bottom: 1px solid var(--glaccent);
    padding: 20px 15px 10px;
}

.return__products .items__block {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.return__products .items__block .item__product {
    flex-basis: 33.33%;
    max-width: 33.33%;
    width: 100%;
    border-right: 1px solid var(--glaccent);
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
}

.return__products .items__block .item__product:last-child {
    border-right: 0;
}

.return__products .items__block .item__product .item__title {
    color: var(--gaccent);
    font-size: 13px;
    margin-bottom: 5px;
}

.return__products .items__block .item__product .item__text {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.2;
}

.return__comment {
    background-color: #fff;
    width: 100%;
    margin-bottom: 10px;
}

.return__comment .return__title,
.return__history .return__title {
    width: 100%;
    border-bottom: 1px solid var(--glaccent);
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 17px;
    border-bottom: 1px solid var(--glaccent);
    padding: 20px 15px 10px;
}

.return__comment .return__incomment {
    padding: 15px;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.2;
}

.return__history {
    width: 100%;
    background-color: #fff;
    margin-bottom: 30px;
}

.return__history .inreturn__block {
    height: 243px;
    overflow-y: scroll;
}

.return__history .inreturn__block::-webkit-scrollbar {
    width: 8px;
    height: 1px;
}

.return__history .inreturn__block::-webkit-scrollbar-track {
    background-color: var(--secondary);
}

.return__history .inreturn__block::-webkit-scrollbar-track-piece {
    background-color: var(--glaccent);
}

.return__history .inreturn__block::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: var(--secondary);
}

.return__history .inreturn__block::-webkit-scrollbar-corner {
    background-color: var(--secondary);
}

.return__history .inreturn__block::-webkit-resizer {
    background-color: var(--secondary);
}

.return__history .history__blocks {
    padding: 15px;
    border-bottom: 1px solid var(--glaccent);
    display: flex;
    flex-direction: column;
}

.return__history .history__blocks:last-child {
    border-bottom: 0;
}

.return__history .history__blocks .item__title {
    color: var(--gaccent);
    font-size: 13px;
    margin-bottom: 5px;
}

.return__history .history__blocks .item__text {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.2;
}

/*---------------- Remodal ============================================*/
.remodal {
    max-width: 768px;
    margin-bottom: 0;
    padding: 30px 30px 40px;
}

.remodal-close {
    right: 10px;
    top: 10px;
    left: initial;
}

.remodal-close:before {
    content: "";
    background: url("/catalog/view/theme/brainlab/image/close-remodal.svg") no-repeat center;
    width: 37px;
    height: 37px;
}

.remodal__title {
    font-size: 28px;
    font-weight: bold;
    color: #1f2024;
    margin-bottom: 51px;
    padding: 0;
    border-bottom: 0;
    text-align: center;
}

.remodal__content {
    max-width: 70%;
    margin: 0 auto;
    text-align: left;
}

.remodal.product__option .remodal-close {
    right: 0;
    left: auto;
}

/*---------------- Socauth ============================================*/
.socauth {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 15px 26px;
    border-bottom: 1px solid #e0e1e7;
}

.socauth .socauth__title {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    line-height: 31px;
    margin-right: 13px;
}

.socauth .socauth__block {
    display: flex;
    align-items: center;
}

.socauth .socauth__block button {
    width: 33px;
    height: 32px;
    border: none;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--glaccent);
    transition: color 0.5s ease;
}

.socauth .socauth__block button.button__fb {
    background-color: #3b5998;
    margin-right: 8px;
}

.socauth .socauth__block button.button__g {
    background-color: transparent;
}

.socauth .socauth__block button:focus,
.socauth .socauth__block button:hover {
    color: #fff;
}

.account__container.wishlish-container {
    background-color: transparent;
}

.account__container.wishlish-container .account__form {
    padding: 30px 0 50px;
}

.product__remove {
    width: 100%;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f5f5f5;
    transition: border 0.5s ease;
}

.product__remove:hover {
    border: 2px solid var(--secondary);
}

.product__remove span:first-child {
    margin-right: 15px;
    color: #5c5b5b;
    font-family: var(--font);
    font-size: 13px;
    transition: color 0.5s ease;
}

.product__remove span.remove svg path {
    fill: #5c5b5b;
    transition: fill 0.5s ease;
}

.product__remove:hover span:first-child {
    color: var(--secondary);
}

.product__remove:hover span.remove svg path {
    fill: var(--secondary);
}

.checkout__title {
    border-bottom: 1px solid #ebebeb;
    margin-top: 20px;
    margin-bottom: 17px;
}

.checkout__title h1 {
    color: #000000;
    font-family: var(--font);
    font-size: 24px;
    margin-bottom: 13px;
    line-height: 1.2;
    padding: 0;
}

.page__checkout {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.buy__page {
    margin-bottom: 30px;
}

.buy__page .table__title {
    border: none;
    height: 89px;
    background-color: #ebebeb;
    padding: 40px 60px;
    color: #000;
    font-family: var(--font);
    font-size: 18px;
}

.buy__page .table-bordered td,
.buy__page .table-bordered th {
    border: none;
}

.buy__page .table__title-name {
    padding-left: 30px;
}

.buy__page .tmdcart__head td {
    font-weight: bold;
}

.empty__table {
    height: 30px;
    border-top: 1px solid var(--glaccent);
}

.empty__table:last-child {
    height: auto;
}

#quick-checkout #warning:empty {
    padding: 0;
}

.tmdcart__body td {
    padding: 0;
    vertical-align: middle;
}

.tmdcart__head td {
    padding-top: 25px;
    padding-bottom: 14px;
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 13px;
}

.tmdcart__img {
    width: 103px;
    height: 103px;
}

.tmdcart__img img {
    max-height: 103px;
    margin: 0 auto;
}

.tmdcart__body .column__img {
    max-width: 103px;
    width: 103px;
}

.tmdcart__body .tmdcart__info {
    padding: 10px 30px;
}

.tmdcart__body .tmdcart__info small {
    color: #9a9a9a;
    font-size: 13px;
    margin-top: 10px;
    font-weight: bold;
}

.tmdcart__body .tmdcart__info .tmdcart__model {
    color: #9a9a9a;
    font-size: 13px;
    margin-bottom: 13px;
}

.tmdcart__body .tmdcart__info a {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 16px;
    line-height: 20px;
    display: flex;
    margin-bottom: 10px;
}

.tmdcart__body .tmdcart__info a:hover {
    text-decoration: underline;
}

.tmdcart__body .tdmcart__quantity {
    width: 130px;
    height: 50px;
    border-radius: 25px;
    background-color: var(--glaccent);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.tmdcart__body .tdmcart__quantity .form__quantity {
    background-color: transparent;
    text-align: center;
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 13px;
    border: none;
}

.tmdcart__body .tdmcart__quantity span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
    color: #9a9a9a;
    font-size: 12px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.tmdcart__body .tdmcart__quantity span:focus,
.tmdcart__body .tdmcart__quantity span:hover {
    color: var(--secondary);
}

.tmdcart__body .tdmcart__quantity span.quantity-edge {
    opacity: 0.5;
}

.tmdcart__body .tdmcart__quantity span.quantity-edge:focus,
.tmdcart__body .tdmcart__quantity span.quantity-edge:hover {
    color: #9a9a9a;
}

.tmdcart__body .column__total {
    color: #000;
    font-family: var(--font);
    font-size: 20px;
}

.tmdcart__body .column__total .currency__symbol {
    font-size: 11px;
}

.tmdcart__body .tmdcart__delete {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
}

.tmdcart__body .tmdcart__delete .delete__button svg path {
    fill: #9a9a9a;
    -webkit-transition: fill 0.5s ease;
    -o-transition: fill 0.5s ease;
    transition: fill 0.5s ease;
}

.tmdcart__body .tmdcart__delete .delete__button {
    margin-bottom: 9px;
}

.tmdcart__body .tmdcart__delete:hover .delete__button svg path {
    fill: var(--gaccent);
}

.tmdcart__body .tmdcart__delete .delete__title {
    color: #9a9a9a;
    font-family: var(--font);
    font-size: 11px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.tmdcart__body .tmdcart__delete:hover .delete__title {
    color: var(--gaccent);
}

.coupon__block {
    margin-bottom: 20px;
    background-color: var(--glaccent);
    padding: 30px 60px;
}

.coupon__block .form__coupon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.coupon__block .form__coupon input[type="text"] {
    width: 100%;
    height: 65px;
    background-color: #ffffff;
    border: 2px solid transparent;
    padding: 0 30px;
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 14px;
}

.coupon__block .form__coupon input[type="text"]:focus,
.coupon__block .form__coupon input[type="text"]:hover {
    border: 2px solid var(--secondary);
}

.coupon__block .form__coupon .button__coupon {
    height: 65px;
    width: 250px;
    background-color: var(--accent);
    border: 2px solid var(--accent);
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.coupon__block .form__coupon .button__coupon:hover {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}

.coupon__block .form__coupon .button__coupon:focus:hover {
    background-color: #292929;
    border: 2px solid #292929;
    color: #fff;
}

.buy__page #tmd_cart {
    margin-bottom: 20px;
}

.text-tdmcart-warning {
    color: rgb(220, 53, 69);
    margin-bottom: 15px;
    line-height: 1.5;
}

/*============================ Right block - confirm =========================================================*/
#tmd_confirmation {
    position: -webkit-sticky;
    position: sticky;
    top: 75px;
}

.confirmation__total {
    background-color: var(--glaccent);
    padding: 30px;
}

.confirmation__coupon {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.confirmation__coupon .show__coupon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 214px;
    height: 46px;
    border: 1px solid var(--secondary);
    background-color: transparent;
    color: #000;
    font-family: var(--font);
    font-size: 13px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.confirmation__coupon .show__coupon:hover {
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.confirmation__coupon .show__coupon.active {
    border: 1px solid #000;
    background-color: var(--secondary);
    color: #fff;
}

.confirmation__details .details__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.confirmation__details .details__item:last-child {
    margin-bottom: 0;
}

.confirmation__details .details__item .details__title {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 14px;
    width: 50%;
    line-height: 1.4;
}

.confirmation__details .details__item .details__text {
    color: var(--accent);
    font-family: var(--font);
    font-size: 21px;
    line-height: 1.4;
    width: 50%;
    text-align: right;
}

.button__buy-confirm {
    max-width: 288px;
    width: 100%;
    height: 66px;
    font-weight: bold;
    background-color: #000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    margin-top: 20px;
    border: 2px solid #000;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.button__buy-confirm:hover {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}

.button__buy-confirm:focus {
    background-color: #292929;
    border: 2px solid #292929;
    color: #fff;
}

#typeaccount .account__head {
    background-color: #ebebeb;
    padding: 40px 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#typeaccount .account__head h3 {
    color: var(--accent);
    font-family: var(--font);
    font-size: 18px;
    margin-right: 79px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: normal;
}

.input__radio label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    margin: 0;
    cursor: pointer;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.input__radio input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 27px;
    height: 27px;
    border: 1px solid #cdd2e1;
    background-color: #ffffff;
    border-radius: 100%;
    margin-right: 13px;
    cursor: pointer;
    -webkit-transition: border 0.5s ease;
    -o-transition: border 0.5s ease;
    transition: border 0.5s ease;
}

.input__radio input:checked {
    border: 8px solid var(--secondary);
}

.input__radio input:checked ~ .input__radio label {
    color: var(--secondary);
}

.input__radio:hover label {
    color: var(--secondary);
}

.input__radio:hover input {
    border: 8px solid var(--secondary);
}

.account__head .new__account {
    margin-right: 39px;
}

#accountcontent {}

.order__form .form__group .form__control {
    background: #f2f3f4;
    color: #121313;

    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;
}

.order__form .control-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;
    color: #121313;
}

.order__form .form__group {
    margin-top: 20px;
}

.panel__heading {
    margin-top: 40px;

    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    text-align: left;
}

.buy__page .form__group {
    margin-bottom: 31px;
}

.panel__body {
    margin-top: 33px;
    display: flex;

    flex-direction: column;
}

.panel__body .choose__block {
    display: flex;

    align-items: center;

    margin-top: 20px;
    margin-bottom: 0;
}

.panel__body .choose__block:first-child {
    margin-top: 33px;
}

.buy__page .form__group label {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    margin-bottom: 14px;
}

.choose__block span,
.order__form .ship__popover {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;

    margin-left: 15px;
}

.order__payment-mark {
    opacity: 0.7;
}

.order__payment-mark.active {
    background: #121313;
}

.order__delivery-radio-decor {
    opacity: 0.7;
}

.ship__img .order__delivery-radio-decor svg {
    display: none;
}

.ship__img .order__delivery-radio-decor.active svg {
    display: block;
}

.choose__block input,
.order__delivery-row input {
    width: 24px;
    height: 24px;
}

.ship__input-holder {
    margin-left: 15px;
}

.order__bonuses-label {
    margin-bottom: 0;
}

.order__total-row {
    margin-top: 16px;
}

.order__call-label {
    margin-bottom: 0;
}

span.required {
    color: #ff3108;
    margin-left: 4px;
}

.form__novapochta input {
    background: #f2f3f4;
    color: #121313;
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;
}

.select2-results__option--selectable {
    color: #121313;
    font-family: "Inter", sans-serif !important;
    font-weight: 500;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-family: "Inter", sans-serif !important;
    font-weight: 500;
}

.buy__page #tmd_delivery_address,
.buy__page #tmd_delivery_novapochta,
.buy__page #tmd_shipping_method {
    margin: 10px auto;
}

.order__item-row-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order__item-counter {
    border: 1px solid #121313;

    background: #f2f3f4;

    height: 34px;

    padding-left: 12px;
    padding-right: 12px;

    border-radius: 3px;

    display: flex;
    align-items: center;
}

.fa-minus:before,
.fa-plus:before {
    cursor: pointer;
}

.order__item-counter .form__quantity {
    background: #f2f3f4;

    width: fit-content;

    text-align: center;
}

.order__item-counter .form__quantity:focus {
    border: none;
}

.buy__page .panel__heading {
    background-color: #ebebeb;
    padding: 40px 60px;
    text-transform: uppercase;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: var(--accent);
    font-family: var(--font);
    font-size: 18px;
}

.buy__page .panel__body {
    padding: 39px 60px 30px;
    background-color: var(--glaccent);
}

.buy__page .choose__block {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 16px;
}

.buy__page .choose__block:last-child {
    margin-bottom: 0;
}

.buy__page .choose__block .ship__img {
    min-width: 28px;
    max-width: 28px;
    margin-right: 15px;
}

.buy__page .choose__block span {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    margin-left: 13px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.buy__page .choose__block input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 27px;
    width: 27px;
    height: 27px;
    border: 1px solid #cdd2e1;
    background-color: #ffffff;
    border-radius: 100%;
    margin-right: 13px;
    cursor: pointer;
    -webkit-transition: border 0.5s ease;
    -o-transition: border 0.5s ease;
    transition: border 0.5s ease;
}

.buy__page .choose__block input:checked {
    border: 8px solid var(--secondary);
}

.buy__page .choose__block input:checked + .buy__page .choose__block label {
    color: var(--secondary);
}

.buy__page .choose__block:hover label {
    color: var(--secondary);
}

.buy__page .choose__block:hover input {
    border: 8px solid var(--secondary);
}

#tmd_delivery_address {
    display: none;
}

.not-call__label,
.register__label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    cursor: pointer;
}

.not-call__label span,
.register__label span {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
    margin-left: 10px;
}

.not-call__label input,
.package-checkbox-input,
.register__label input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    border: 1px solid #cdd2e1;
    background-color: #ffffff;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.not-call__label input:checked,
.package-checkbox-input:checked,
.register__label input:checked {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
}

.not-call__label input:checked:before,
.package-checkbox-input:checked:before,
.register__label input:checked:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-weight: 900;
    color: #fff;
    background: url("/catalog/view/theme/brainlab/image/icon/check-solid.svg") no-repeat center;
    width: 17px;
    height: 17px;
}

.not-call__label:hover span,
.register__label:hover span {
    color: var(--secondary);
}

.not-call__label:hover input,
.register__label:hover input {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
}

.not-call__label:hover input:before,
.register__label:hover input:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-weight: 900;
    color: #fff;
    background: url("/catalog/view/theme/brainlab/image/icon/check-solid.svg") no-repeat center;
    width: 17px;
    height: 17px;
}

.detail__not-call {
    max-width: 80%;
}

.tmdqc__login {
    width: 178px;
    height: 60px;
    background-color: var(--secondary);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    border: none;
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.tmdqc__login:hover {
    background-color: var(--accent);
}

.tmdqc__login:focus {
    background-color: var(--accent);
}

.tmdqc__socauth {
    margin-top: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tmdqc__socauth .socauth__title {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    line-height: 31px;
    margin-right: 13px;
}

.tmdqc__socauth .socauth__block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.tmdqc__socauth .socauth__block button {
    width: 33px;
    height: 32px;
    border: none;
    border-radius: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--glaccent);
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.tmdqc__socauth .socauth__block button:hover {
    color: #fff;
}

.tmdqc__socauth .socauth__block button.button__fb {
    background-color: #3b5998;
    margin-right: 8px;
}

.tmdqc__socauth .socauth__block button.button__g {
    background-color: transparent;
}

button.button__g img {
    min-width: 32px;
}

.buy__page .addition__field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.buy__page .addition__field .form__home {
    max-width: 309px;
    width: 100%;
    margin-bottom: 10px;
}

.buy__page .addition__field label {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    margin-bottom: 18px;
}

.buy__page .addition__field input {
    width: 100%;
    height: 50px;
    background-color: #ffffff;
    border: 2px solid transparent;
    padding: 0 30px;
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 14px;
}

.buy__page .addition__field input[type="text"]:focus,
.buy__page .addition__field input[type="text"]:hover {
    border: 2px solid var(--secondary);
}

.buy__page .addition__field .form__flat {
    max-width: 204px;
    width: 100%;
}

#tmd_payment_method {
    margin-bottom: 10px;
}

.buy__page .select__group {
    position: relative;
}

.buy__page .select__group input {
    background-image: url("/catalog/view/theme/brainlab/image/chevron-down-solid.svg");
    background-size: 13px;
    background-position: calc(100% - 15px);
    background-repeat: no-repeat;
}

.buy__page .select__group:after {
    display: none;
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 56px !important;
    right: 15px;
    font-size: 14px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #9a9a9a;
}

.buy__page #payment-existing .select__group:after {
    top: 25px !important;
}

.buy__page .select__group select {
    background-image: url("/catalog/view/theme/brainlab/image/chevron-down-solid.svg");
    background-size: 13px;
    background-position: calc(100% - 15px);
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
}

.buy__page .text-discount {
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--gaccent);
    line-height: 1.4;
}

.buy__page .text-shipping-interval {
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--gaccent);
    line-height: 1.4;
}

.popover__text {
    color: var(--secondary);
    font-size: 14px;
    line-height: 20px;
}

.not-label select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.not-label:after {
    top: 68% !important;
    -webkit-transform: translateY(-53%) !important;
    -ms-transform: translateY(-53%) !important;
    transform: translateY(-53%) !important;
}

.warehouse__info {
    margin: 10px auto 0;
    background-color: var(--glaccent);
}

.warehouse__info > h3 {
    background-color: #ebebeb;
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 15px;
}

.warehouse__title {
    background-color: #ebebeb;
    padding: 10px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 15px;
}

.ware__title {
    padding: 10px 20px;
}

.warehouse__info .tool__body {
    padding: 10px 20px;
}

.warehouse__info .ware__title {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 14px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 20px;
}

.warehouse__info .ware__title strong {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 15px;
}

.warehouse__info .tool__wrap {
    margin: 5px auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.warehouse__info .tool__wrap .tool__title {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 14px;
}

.warehouse__info .tool__wrap .tool__text {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 15px;
    line-height: 20px;
}

.warehouse__info .warehouse__subtitle {
    margin: 15px 0 10px;
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 14px;
}

.warehouse__info .tool__wrap .tool__text.one-tool__text {
    font-size: 14px;
    font-family: var(--font);
    line-height: 15px;
}

.warehouse__info .warehouse__subtool {
    margin-bottom: 15px;
}

.warehouse__info .warehouse__timetable {
    padding: 0 20px;
}

.warehouse__info .timetable__title {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 14px;
    min-height: 28px;
    margin-bottom: 10px;
}

.warehouse__info .timetable__wrap {
    margin-bottom: 10px;
}

.warehouse__info .timetable__item {
    margin: 5px 0;
}

.warehouse__info .timetable__item span:first-child {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 14px;
}

.warehouse__info .timetable__item span:last-child {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 15px;
}

.warehouse__info .warehouse_postscript {
    padding: 20px;
}

.warehouse__info .warehouse_postscript p {
    color: #535353;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.13px;
    line-height: 21px;
}

.warehouse__info .warehouse_postscript p a:hover {
    text-decoration: underline;
}

.collapse__warehouse {
    cursor: pointer;
    color: var(--secondary);
}

.product__line {
    width: 100%;
    height: 1px;
    background-color: #ebebeb;
    margin: 22px 0;
}

.product__wrap {
    margin-bottom: 40px;
}

.product__wrap .product__bodys,
.product__wrap .product__images {
    max-width: 100%;
    width: 100%;
}

.product__wrap .product__images {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-height: 750px;
    max-width: 100%;
    overflow: hidden;
}

.product__wrap .navigation__thumb {
    height: 100%;
    max-width: 70px;
    min-width: 70px;
    margin-right: 30px;
    display: none;
}

.product__wrap .navigation__thumb.slick-initialized {
    display: block;
}

.product__wrap .navigation__thumb .image,
.product__wrap .navigation__thumb .image__additional {
    margin-bottom: 30px;
}

.product__wrap .image__additional {
    overflow: hidden;
}

.product__wrap .image__additional img {
    width: 100%;
}

.product__wrap .navigation__thumb .image__additional video {
    max-width: 100px;
    width: 100%;
    max-height: 98px;
    object-fit: contain;
    position: relative;
    z-index: -1;
}

.product__wrap .image__additional .video-link {
    display: block;
    max-height: 98px;
    width: 100% !important;
    height: 98px;
    position: relative;
    overflow: hidden;
}

.product__wrap .image__additional.additional__video {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100%;
    position: relative;
}

.product__wrap .image__additional .video-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
}

.product__wrap .image__additional .video-link::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    background-image: url("/catalog/view/theme/brainlab/image/icon/icon_play_video.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
}

.product__wrap .media,
.product__wrap .thumbnails {
    height: 100%;
    position: relative;
    display: none;
}

.product__wrap .media.slick-initialized,
.product__wrap .thumbnails.slick-initialized {
    display: block;
}

.product__wrap .media__item,
.product__wrap .thumbnail__block {
    max-width: 500px;
}

.product__wrap .thumbnail__block {
    width: 100%;
    position: relative;
    display: flex;
}

.product__wrap .media__item {
    max-height: 750px;
    height: 750px;
    display: flex;
    width: 100%;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.product__wrap .media__item a {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
}

.product__wrap .media,
.product__wrap .thumbnails {
    width: 100%;
}

.product__wrap .media__item img,
.product__wrap .media__item video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    display: flex;
}

.thumbnail__block .automatic__sticker div,
.thumbnail__block .handle__sticker div {
    font-size: 15px;
    padding: 7px 24px;
}

button.slick-prev.garrow__prev.slick-arrow {
    top: 0;
    left: 0;
    z-index: 25;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(57%, rgba(255, 255, 255, 1)), color-stop(79%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 57%, rgba(255, 255, 255, 0.8) 79%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 57%, rgba(255, 255, 255, 0.8) 79%, rgba(255, 255, 255, 0) 100%);
    height: 90px;
}

button.slick-prev.garrow__prev .fa-chevron-up {
    color: var(--secondary);
    font-size: 30px;
    position: relative;
    top: 15px;
    left: -9px;
}

button.slick-next.garrow__next.slick-arrow {
    bottom: -65px;
    left: 0;
    top: auto;
    z-index: 25;
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(57%, rgba(255, 255, 255, 1)), color-stop(79%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(bottom, rgba(255, 255, 255, 1) 57%, rgba(255, 255, 255, 0.8) 79%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 57%, rgba(255, 255, 255, 0.8) 79%, rgba(255, 255, 255, 0) 100%);
    height: 90px;
}

button.slick-next.garrow__next .fa-chevron-down {
    color: var(--secondary);
    font-size: 30px;
    position: relative;
    bottom: 15px;
    left: -9px;
}

.product__bodys .product__title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 24px;
}

.product__bodys .product__title h1 {
    max-width: 492px;
    width: 100%;
    color: var(--accent);
    font-family: var(--font);
    font-size: 28px;
    letter-spacing: -0.28px;
    margin-bottom: 0;
    line-height: 1.28;
}

.product__bodys .product__title span {
    padding: 14px 20px;
    border-radius: 21px;
    background-color: var(--filter-bg);
    color: #8a909b;
    font-family: var(--font);
    font-size: 13px;
}

.product__bodys .product__stock {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
}

.product__bodys .product__stock.stock {
    color: #2bba4d;
}

.product__bodys .product__stock.no-stock {
    color: #8a909b;
}

.product__bodys .product__rating {
    margin-bottom: 16px;
}

.product__bodys .product__rating .rating {
    display: flex;
}

.product__bodys .product__rating .rating span {
    margin-right: 5px;
}

.product__bodys .rating .star__rating-empty .fa-star {
    font-size: 15px;
    color: #e0e1e7;
}

.product__bodys .rating .star__rating-full .fa-star {
    font-size: 15px;
    color: #ffb508;
}

.product__bodys .rating a {
    color: #8a909b;
    font-size: 14px;
    text-decoration: underline;
    margin-left: 10px;
    -webkit-transition: color 0.4s ease;
    -o-transition: color 0.4s ease;
    transition: color 0.4s ease;
}

.product__bodys .rating a:hover {
    color: var(--secondary);
}

.product__bodys .product__specif {
    margin-bottom: 20px;
}

.product__bodys .product__specif .specif__block {
    margin-bottom: 8px;
}

.product__bodys .product__specif .specif__block:last-child {
    margin-bottom: 0;
}

.product__bodys .product__specif .specif__block .specif__title {
    font-size: 13px;
    color: #9a9a9a;
}

.product__bodys .product__specif .specif__block .specif__name {
    font-size: 13px;
    color: var(--secondary);
}

.product__pds {
    margin-bottom: 7px;
}

.product__pds-title {
    font-size: 14px;
    font-weight: bold;
    color: #8a909b;
    margin-bottom: 15px;
}

.product__pds-items {
    display: flex;
    flex-wrap: wrap;
    max-width: 595px;
}

.product__pds-item {
    margin-right: 8px;
    margin-bottom: 13px;
}

.product__pds-img img {
    width: 58px;
    height: 58px;
    object-fit: cover;
}

.product__price-tables {
    display: flex;
    margin-bottom: 30px;
}

.product__bodys .product__price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 130px;
}

.product__bodys .product__price h2 {
    color: var(--accent);
    font-family: var(--font);
    font-size: 32px;
    margin-right: 13px;
}

.product__bodys .product__price h2 .currency__symbol {
    font-size: 11px;
}

.product__bodys .product__price .discount__price {
    color: #9a9a9a;
    font-family: var(--font);
    font-size: 17px;
    margin-right: 6px;
    text-decoration: line-through;
}

.product__bodys .product__price .discount__price .currency__symbol {
    font-size: 10px;
}

.product__bodys .product__price .discount__block {
    display: none;
    background-color: #9a9a9a;
    padding: 10px 8px;
    color: #fff;
    font-family: var(--font);
    font-size: 12px;
}

.product__price .price-new {
    font-weight: bold;
    font-size: 32px;
    color: #000000;
    margin-right: 15px;
}

.product__price .price-new .currency__symbol {
    font-size: 11px;
    margin-left: 5px;
}

.product__price .price-old {
    font-weight: bold;
    font-size: 17px;
    color: #8a909b;
    position: relative;
}

.product__price .price-old .currency__symbol {
    font-size: 10px;
    margin-left: 5px;
}

.product__price .price-old:before {
    content: "";
    position: absolute;
    border-bottom: 1px solid #8a909b;
    width: 100%;
    height: 1px;
    left: 0;
    top: 9px;
}

.product__tables {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
}

.product__btn-table-sizes,
.product__tables button {
    color: #8a909b;
    border: 0;
    background: transparent;
    text-decoration: underline;
    font-size: 13px;
    margin-bottom: 8px;
    outline: none;
    padding: 0;
}

.product__tables button:last-child {
    margin-bottom: 0;
    white-space: nowrap;
}

.product__btn-table-sizes {
    margin-bottom: 20px;
}

.product__btn-table-sizes:hover,
.product__tables button:hover {
    text-decoration: none;
}

.product__tables .product__btn-table-studio {
    background: #f7f7f7;
    border-radius: 18px;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
}

.product__tables .product__btn-table-studio:hover {
    background: #000000;
    color: #ffffff;
}

.product__bodys .product__tools {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 20px;
}

.product__bodys .product__tools .tools__count {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 85px;
}

.product__bodys .product__tools .tools__count .label__count {
    color: #707890;
    font-family: var(--font);
    font-size: 13px;
    margin-right: 11px;
}

.product__bodys .tools__count .count__block {
    width: 130px;
    height: 50px;
    border-radius: 25px;
    background-color: var(--glaccent);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.product__bodys .tools__count .count__block button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: #9a9a9a;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.product__bodys .tools__count .count__block button:hover {
    color: var(--secondary);
}

.product__bodys .tools__count .count__block button.quantity-edge {
    opacity: 0.5;
    color: #9a9a9a;
}

.product__bodys .tools__count .count__block input {
    background-color: transparent;
    border: none;
    outline: none;
    text-align: center;
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 13px;
}

.product__bodys .count__block svg {
    width: 10px;
}

.product__bodys .product__tools .tools__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product__bodys .product__tools .tools__list .button__tools {
    width: 50px;
    height: 50px;
    background-color: var(--filter-bg);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    border-radius: 100%;
    margin-right: 15px;
    cursor: pointer;
}

.product__bodys .product__tools .tools__list .button__tools:hover {
    background-color: var(--accent);
}

.product__bodys .product__tools .tools__list .button__tools.product__incompare {
    background-color: var(--secondary);
}

.product__bodys .product__tools .tools__list .button__tools.product__inwishlist {
    background-color: var(--secondary);
}

.product__bodys .product__tools .tools__list .button__tools.product__incompare .button__icon {
    color: #fff;
}

.product__bodys .product__tools .tools__list .button__tools.product__inwishlist .button__icon {
    color: #fff;
}

.product__bodys .product__tools .tools__list .button__tools:focus {
    background-color: #000;
}

.product__bodys .product__tools .tools__list .button__tools.button__compare {
    display: none;
}

.product__ctabs .tabs__button .review__icon svg path {
    fill: var(--accent);
    -webkit-transition: border 0.5s ease;
    -o-transition: border 0.5s ease;
    transition: border 0.5s ease;
}

.product__ctabs .tabs__button a:hover .review__icon svg path {
    fill: var(--accent);
}

.product__ctabs .tabs__button a:focus .review__icon svg path {
    fill: var(--accent);
}

.product__bodys .product__tools .tools__list .button__tools:last-child {
    margin-right: 0;
}

.product__bodys .product__tools .tools__list .button__tools .button__icon {
    color: var(--gaccent);
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.product__bodys .product__tools .tools__list .button__tools:hover .button__icon {
    color: #fff;
}

.product__bodys .product__tools .tools__list .button__tools:focus .button__icon {
    color: #fff;
}

.product__message {
    display: none;
}

.product__message-text {
    font-family: var(--font);
    font-weight: 600;
    font-size: 16px;
    color: var(--gaccent);
    margin-bottom: 25px;
}

/*==================================Social share =================================================================================*/
.social__button {
    position: relative;
    z-index: 2;
}

.social__button .button__social,
.social__button .social__share {
    width: 50px;
    height: 50px;
    background-color: var(--filter-bg);
    border: none;
    border-radius: 100%;
    margin-right: 15px;
    cursor: pointer;
}

.social__button .button__social .button__icon,
.social__button .social__share .button__icon {
    color: var(--gaccent);
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.social__button .button__social:hover,
.social__button .social__share:hover {
    background-color: var(--accent);
}

.social__button .button__social:focus,
.social__button .social__share:focus {
    background-color: var(--accent);
}

.social__button .button__social:hover .button__icon,
.social__button .social__share:hover .button__icon {
    color: #fff;
}

.social__button .button__social:focus .button__icon,
.social__button .social__share:focus .button__icon {
    color: #fff;
}

.social__button .social__share {
    position: absolute;
}

.social__button .social__share.facebok__share {
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: top 0.5s ease, left 0.5s ease, z-index 0.4s ease;
    -o-transition: top 0.5s ease, left 0.5s ease, z-index 0.4s ease;
    transition: top 0.5s ease, left 0.5s ease, z-index 0.4s ease;
}

.social__button .social__share.twitter__share {
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: top 0.4s ease, left 0.4s ease, z-index 0.5s ease;
    -o-transition: top 0.4s ease, left 0.4s ease, z-index 0.5s ease;
    transition: top 0.4s ease, left 0.4s ease, z-index 0.5s ease;
}

.social__button .social__share.pinterest__share {
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: top 0.3s ease, left 0.3s ease, z-index 0.6s ease;
    -o-transition: top 0.3s ease, left 0.3s ease, z-index 0.6s ease;
    transition: top 0.3s ease, left 0.3s ease, z-index 0.6s ease;
}

.social__button .social__share.google__share {
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: top 0.2s ease, left 0.2s ease, z-index 0.7s ease;
    -o-transition: top 0.2s ease, left 0.2s ease, z-index 0.7s ease;
    transition: top 0.2s ease, left 0.2s ease, z-index 0.7s ease;
}

.social__button .facebok__share.active-social {
    top: -67px;
    left: -30px;
    z-index: 1;
    -webkit-transition: top 0.2s ease, left 0.2s ease, z-index 0.4s ease;
    -o-transition: top 0.2s ease, left 0.2s ease, z-index 0.4s ease;
    transition: top 0.2s ease, left 0.2s ease, z-index 0.4s ease;
}

.social__button .twitter__share.active-social {
    top: -67px;
    left: 30px;
    z-index: 1;
    -webkit-transition: top 0.3s ease, left 0.3s ease, z-index 0.5s ease;
    -o-transition: top 0.3s ease, left 0.3s ease, z-index 0.5s ease;
    transition: top 0.3s ease, left 0.3s ease, z-index 0.5s ease;
}

.social__button .pinterest__share.active-social {
    top: -67px;
    left: 45px;
    z-index: 1;
    -webkit-transition: top 0.4s ease, left 0.4s ease, z-index 0.6s ease;
    -o-transition: top 0.4s ease, left 0.4s ease, z-index 0.6s ease;
    transition: top 0.4s ease, left 0.4s ease, z-index 0.6s ease;
}

.social__button .google__share.active-social {
    top: -67px;
    left: 105px;
    z-index: 1;
    -webkit-transition: top 0.5s ease, left 0.5s ease, z-index 0.7s ease;
    -o-transition: top 0.5s ease, left 0.5s ease, z-index 0.7s ease;
    transition: top 0.5s ease, left 0.5s ease, z-index 0.7s ease;
}

/*================================== Cart icon =================================================================================*/
.product__bodys .product__button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
    max-width: 595px;
}

.product__bodys .product__button.out {
    margin-top: 25px;
}

.product__bodys .product__button.out .product__tools {
    width: auto;
    margin-bottom: 0;
}

.product__bodys .product__button.out #button__notify-goods {
    margin-right: 103px;
}

.product__bodys .product__button .buy__tocart {
    width: 50%;
    height: 64px;
    font-weight: bold;
    background-color: #000000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid transparent;
    outline: none;
    cursor: pointer;
    margin-right: 20px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.product__bodys .product__button .buy__tocart:hover {
    background-color: #fff;
    border: 2px solid #000000;
}

.product__bodys .product__button .buy__tocart:focus {
    background-color: #292929;
}

.product__bodys .product__button .buy__tocart:focus:hover span {
    color: #fff;
}

.product__bodys .product__button .buy__tocart:focus:hover .icon__click path {
    fill: #fff;
}

.product__bodys .product__button .buy__tocart span {
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    margin-left: 13px;
}

.product__bodys .product__button .buy__tocart span.icon__tocart {
    margin-left: 0;
}

.product__bodys .product__button .buy__tocart:hover span {
    color: #000000;
}

.product__bodys .product__button .buy__tocart:hover .icon__click path {
    fill: #000000;
    -webkit-transition: fill 0.5s ease;
    -o-transition: fill 0.5s ease;
    transition: fill 0.5s ease;
}

.product__bodys .product__button .buy__tocart .fa-check {
    color: #fff;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.product__bodys .product__button .buy__tocart:hover .fa-check {
    color: #fff;
}

.product__bodys .product__button .buy__oneclick {
    width: 50%;
    height: 64px;
    font-weight: bold;
    background-color: #8a909b;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid transparent;
    outline: none;
    cursor: pointer;
    margin-right: 0;
    -webkit-transition: background-color 0.5s ease, border 0.5s ease;
    -o-transition: background-color 0.5s ease, border 0.5s ease;
    transition: background-color 0.5s ease, border 0.5s ease;
}

.product__bodys .product__button .buy__oneclick:hover {
    background-color: #555960;
    border: 2px solid #555960;
}

.product__bodys .product__button .buy__oneclick:focus {
    background-color: #292929;
    border: 2px solid #292929;
}

.product__bodys .product__button .buy__oneclick span {
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    margin-left: 13px;
}

.product__bodys .product__button .buy__oneclick span.icon__buyoneclick {
    margin-left: 0;
}

.product__bodys .product__button .buy__oneclick:hover span {
    color: #fff;
}

.product__bodys .product__button .buy__oneclick:hover .icon__click path {
    fill: #fff;
    -webkit-transition: fill 0.5s ease;
    -o-transition: fill 0.5s ease;
    transition: fill 0.5s ease;
}

.product__bodys .btn__notify-goods {
    color: #fff;
    width: auto;
    height: 64px;
    padding: 0 20px;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    background-color: var(--accent);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid transparent;
    outline: none;
    cursor: pointer;
    margin-right: 20px;
    -webkit-transition: background-color 0.5s ease, border 0.5s ease;
    -o-transition: background-color 0.5s ease, border 0.5s ease;
    transition: background-color 0.5s ease, border 0.5s ease;
}

.product__bodys .btn__notify-goods:hover {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}

.product__bodys .btn__notify-goods:focus:hover {
    background-color: #292929;
    border: 2px solid #292929;
    color: #fff;
}

/*================================== Info block =================================================================================*/
.product__bodys .product__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-left: 0;
}

.product__bodys .product__info .info__block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 139px;
}

.product__bodys .product__info .info-bg {
    background-color: var(--filter-bg);
    -webkit-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
    cursor: pointer;
}

.product__bodys .product__info .info-bg:hover {
    background-color: var(--secondary);
}

.product__bodys .product__info .info-bg.active {
    background-color: var(--secondary);
}

.product__info .info-bg .info__icon svg path {
    fill: var(--secondary);
    -webkit-transition: fill 0.5s ease;
    -o-transition: fill 0.5s ease;
    transition: fill 0.5s ease;
}

.product__bodys .product__info .info-bg:hover .info__icon svg path {
    fill: #fff;
}

.product__bodys .product__info .info-bg.active .info__icon svg path {
    fill: #fff;
}

.product__bodys .product__info .info__block h4 {
    width: 132px;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    margin-left: 15px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.product__bodys .product__info .info-bg:hover h4 {
    color: #fff;
}

.product__bodys .product__info .info-bg.active h4 {
    color: #fff;
}

/*================================== Tabs block =================================================================================*/
.product__ctabs {
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.product__ctabs .tabs__links {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.product__ctabs .tabs__links .tablinks {
    border: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    margin-right: 29px;
    padding: 0;
    color: #8a909b;
    font-family: var(--font);
    font-size: 13px;
    font-weight: bold;
    position: relative;
    line-height: 64px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.product__ctabs .tabs__links .tablinks:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--accent);
    -webkit-transition: width 0.5s ease;
    -o-transition: width 0.5s ease;
    transition: width 0.5s ease;
}

.product__ctabs .tabs__links .tablinks:hover {
    color: var(--accent);
}

.product__ctabs .tabs__links .tablinks:hover:after {
    width: 100%;
    -webkit-transition: width 0.5s ease;
    -o-transition: width 0.5s ease;
    transition: width 0.5s ease;
}

.product__ctabs .tabs__links .tablinks:last-child {
    margin-right: 0;
}

.product__ctabs .tabs__links .tablinks.rev__tab {
    display: none;
}

.product__ctabs .tabs__button a {
    width: 236px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 21px;
    background-color: var(--filter-bg);
    border: 2px solid transparent;
    -webkit-transition: border 0.5s ease;
    -o-transition: border 0.5s ease;
    transition: border 0.5s ease;
}

.product__ctabs .tabs__button .review__icon {
    margin-right: 14px;
}

.product__ctabs .tabs__button h4 {
    color: var(--accent);
    font-family: var(--font);
    font-size: 13px;
    -webkit-transition: border 0.5s ease;
    -o-transition: border 0.5s ease;
    transition: border 0.5s ease;
}

.product__ctabs .tabs__button a:hover h4 {
    color: var(--accent);
}

.product__ctabs .tabs__button a:focus h4 {
    color: var(--accent);
}

.product__ctabs .tabs__button a:hover {
    border: 2px solid var(--accent);
}

.product__ctabs .tabs__button a:focus {
    border: 2px solid var(--accent);
}

.product__ctabs button.tablinks.active {
    color: var(--accent);
}

.product__ctabs .tabs__links .tablinks.active:after {
    width: 100%;
    -webkit-transition: width 0.5s ease;
    -o-transition: width 0.5s ease;
    transition: width 0.5s ease;
}

.product__tabs {
    margin-bottom: 80px;
    position: relative;
    z-index: 100;
}

.tab__block {
    width: 100%;
    padding: 40px 0 0;
    margin: 0 0 90px;
}

.tab__block .tab__content {
    display: none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

.tab__block .tab__content > h2 {
    margin-bottom: 40px;
}

@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.product__ctabs .tab__block #specification h2,
.product__ctabs .tab__block h2 {
    color: #1f2024;
    font-family: var(--font);
    font-size: 24px;
    letter-spacing: -0.24px;
    margin-bottom: 28px;
    max-width: 460px;
    line-height: 1.41;
}

.tab__block .specification__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.tab__block .specification__body .specificaion__section {
    width: 41%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 26px;
    margin-right: 8%;
}

.tab__block .specification__body .specificaion__section h4 {
    color: var(--secondary);
    font-size: 15px;
    white-space: nowrap;
    font-weight: normal;
}

.tab__block .specification__body .specificaion__section .specification__line {
    height: 1px;
    background-color: #ebebeb;
    width: 100%;
    margin: 0 10px;
}

.tab__block .specification__body .specificaion__section span {
    color: #1f2024;
    font-weight: bold;
    font-family: var(--font);
    font-size: 15px;
    text-align: right;
    white-space: nowrap;
}

.tab__block #description .title__description {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 24px;
    letter-spacing: -0.24px;
    margin-bottom: 24px;
}

.tab__block #description .description__textmore {
    overflow: hidden;
    margin-bottom: 0;
}

.tab__block #description .description__textmore p {
    color: #535353;
    font-size: 15px;
    margin-bottom: 20px;
}

.tab__block #description .description__textmore p:last-child {
    margin-bottom: 0;
}

.tab__block #description .description__text-more {
    font-family: var(--font);
    font-size: 13px;
    position: relative;
    -webkit-transition: margin-left 0.5s ease;
    -o-transition: margin-left 0.5s ease;
    transition: margin-left 0.5s ease;
    color: var(--secondary);
    font-weight: bold;
}

.tab__block #description .description__text-more:before {
    content: none;
    position: absolute;
    left: -13px;
    top: 50%;
    width: 9px;
    height: 2px;
    background-color: var(--secondary);
}

.tab__block #description .description__text-more:hover {
    margin-left: 16px;
}

.tab__block #reviews .reviews__title {
    color: #1f2024;
    font-family: var(--font);
    font-size: 24px;
    letter-spacing: -0.24px;
    margin-bottom: 40px;
}

.tab__block #reviews .reviews__form {
    max-width: 1167px;
    width: 80%;
    background-color: var(--glaccent);
    padding: 50px;
}

.tab__block #reviews .reviews__form h3 {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 22px;
    letter-spacing: -0.22px;
    margin-bottom: 28px;
}

.tab__block #reviews .reviews__form .review__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tab__block #reviews .reviews__form .review__group {
    width: 48%;
}

.tab__block #reviews .review__group .review__input {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
}

.tab__block #reviews .review__group .review__textarea {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.tab__block #reviews .review__input label {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    margin-bottom: 14px;
}

.tab__block #reviews .review__input input {
    width: 100%;
    height: 50px;
    border: 1px solid transparent;
    background-color: #ffffff;
    padding: 0 18px;
    font-family: var(--font);
    color: var(--secondary);
    font-size: 12px;
    -webkit-transition: border 0.5s ease;
    -o-transition: border 0.5s ease;
    transition: border 0.5s ease;
}

.tab__block #reviews .review__input input:focus,
.tab__block #reviews .review__input input:hover {
    border: 1px solid var(--secondary);
}

.tab__block #reviews .review__textarea label {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    margin-bottom: 14px;
}

.tab__block #reviews .review__textarea textarea {
    width: 100%;
    height: 160px;
    border: 1px solid transparent;
    background-color: #ffffff;
    padding: 18px;
    font-family: var(--font);
    color: var(--secondary);
    font-size: 12px;
    resize: none;
    -webkit-transition: border 0.5s ease;
    -o-transition: border 0.5s ease;
    transition: border 0.5s ease;
}

.tab__block #reviews .review__textarea textarea:focus,
.tab__block #reviews .review__textarea textarea:hover {
    border: 1px solid var(--secondary);
}

.tab__block #reviews .review__star {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tab__block #reviews .review__star span {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    margin-right: 10px;
}

.tab__block #reviews .button__review {
    width: 178px;
    height: 60px;
    background-color: var(--accent);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
    border: 2px solid transparent;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.tab__block #reviews .button__review:hover {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}

.tab__block #reviews .button__review:focus:hover {
    background-color: #292929;
    border: 2px solid #292929;
    color: #fff;
}

.tab__block #reviews .review__star input[type="radio"] {
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 27px;
    min-width: 27px;
    height: 27px;
    cursor: pointer;
    border-radius: 100%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: relative;
}

.tab__block #reviews .review__star input[type="radio"]:before {
    content: "\f005";
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: "Font Awesome\5 Free";
    font-weight: 900;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #9a9a9a;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.tab__block #reviews .review__star input[type="radio"]:hover:before {
    color: #ffb508;
}

.tab__block #reviews .review__star input[type="radio"].active-star:before {
    color: #ffb508;
}

.tab__block #reviews .review__star input[type="radio"].check-star:before {
    color: #ffb508;
}

.tab__block #reviews .review__star input[type="radio"]:focus:before,
.tab__block #reviews .review__star input[type="radio"]:checked:before,
.tab__block #reviews .review__star input[type="radio"]:active:before {
    color: #ffb508;
}

.articles__panel,
.related__panel,
.viewed__panel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 30px;
}

.articles__panel h3,
.related__panel h3,
.viewed__panel h3 {
    color: #1f2024;
    font-family: var(--font);
    font-size: 24px;
    line-height: 50px;
    font-weight: normal;
    text-transform: uppercase;
}

.articles__panel .articles__control,
.related__panel .related__control,
.viewed__panel .viewed__control {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.articles__panel .articles__control button,
.related__panel .related__control button,
.viewed__panel .viewed__control button {
    width: 51px;
    height: 51px;
    background-color: var(--glaccent);
    border: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.articles__panel .articles__control button svg use,
.related__panel .related__control button svg use,
.viewed__panel .viewed__control button svg use {
    fill: var(--secondary);
    -webkit-transition: fill 0.5s ease;
    -o-transition: fill 0.5s ease;
    transition: fill 0.5s ease;
}

.articles__panel .articles__control button:first-child,
.related__panel .related__control button:first-child,
.viewed__panel .viewed__control button:first-child {
    margin-right: 1px;
}

.articles__panel .articles__control button:hover,
.related__panel .related__control button:hover,
.viewed__panel .viewed__control button:hover {
    background-color: var(--gaccent);
}

.articles__panel .articles__control button:hover svg use,
.related__panel .related__control button:hover svg use,
.viewed__panel .viewed__control button:hover svg use {
    fill: #fff;
}

.articles__panel .articles__control button:focus svg use,
.related__panel .related__control button:focus svg use,
.viewed__panel .viewed__control button:focus svg use {
    fill: #fff;
}

.articles__panel .articles__control button:focus,
.related__panel .related__control button:focus,
.viewed__panel .viewed__control button:focus {
    background-color: var(--gaccent);
}

#cart-article-recommend,
#cart-product-related,
.viewed__product {
    margin: 0 -15px 90px;
    position: relative;
    z-index: 100;
}

.categoty__block-bottom {
    position: relative;
}

#cart-article-recommend::before,
#cart-product-related::before,
.categoty__block-bottom::before,
.viewed__product::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    overflow: hidden;
    z-index: 9999999;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
}

#cart-article-recommend::after,
#cart-product-related::after,
.categoty__block-bottom::after,
.viewed__product::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    overflow: hidden;
    z-index: 9999999;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
}

#cart-article-recommend:hover,
#cart-product-related:hover,
.viewed__product:hover {
    z-index: 200;
}

#cart-article-recommend > .slick-list,
#cart-product-related > .slick-list,
.viewed__product > .slick-list {
    overflow: initial;
}

.product__sticker {
    position: absolute;
}

.automatic__sticker,
.handle__sticker {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 60;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.automatic__sticker.preorder {
    bottom: 0;
    top: auto;
}

.automatic__sticker .sale__sticker,
.handle__sticker .sale__sticker {
    background-color: #000;
    margin-bottom: 11px;
    color: #fff;
    padding: 3px 16px;
    font-weight: bold;
    font-family: var(--font);
    line-height: 1.93;
    font-size: 16px;
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.automatic__sticker .special__sticker,
.handle__sticker .special__sticker {
    display: none;
    background-color: #000;
    margin-bottom: 11px;
    padding: 3px 16px;
    font-weight: bold;
    font-family: var(--font);
    line-height: 1.93;
    font-size: 16px;
    color: #fff;
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.automatic__sticker .preorder__sticker,
.handle__sticker .preorder__sticker,
.preorder__sticker {
    bottom: 10px;
    position: absolute;
    right: 10px;
    z-index: 2;
}

.automatic__sticker .latest__sticker,
.handle__sticker .latest__sticker {
    background-color: #51555e;
    margin-bottom: 11px;
    padding: 3px 16px;
    font-weight: bold;
    font-family: var(--font);
    line-height: 1.93;
    font-size: 16px;
    color: #fff;
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.automatic__sticker .bestseller__sticker,
.automatic__sticker .preorder__sticker,
.handle__sticker .bestseller__sticker,
.handle__sticker .preorder__sticker,
.preorder__sticker {
    background-color: #000;
    margin-bottom: 11px;
    padding: 3px 16px;
    font-weight: bold;
    font-family: var(--font);
    line-height: 1.93;
    font-size: 16px;
    color: #fff;
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    opacity: 0.6;
}

.automatic__sticker .popular__sticker,
.handle__sticker .inner__sticker,
.handle__sticker .popular__sticker {
    background-color: var(--secondary);
    margin-bottom: 11px;
    padding: 3px 16px;
    font-weight: bold;
    font-family: var(--font);
    line-height: 1.93;
    font-size: 16px;
    color: #fff;
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.thumbnail__block .automatic__sticker,
.thumbnail__block .handle__sticker {
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.popular__sticker {
    display: none;
}

.thumbnail__block .sticker-right-bottom {
    align-self: flex-end;
    position: relative;
    right: 40px;
    margin-top: auto;
    margin-bottom: 60px;
    opacity: 0.6;
}
.thumbnail__block .sticker-right-bottom.second {
    margin-bottom: 100px;
}

/*---------------- Buy one click =========================================*/
.buyclick__wrap h3 {
    font-family: var(--font);
    font-size: 28px;
    letter-spacing: -0.28px;
    border-bottom: 1px solid var(--glaccent);
    font-size: 28px;
    font-weight: bold;
    color: #1f2024;
    margin-bottom: 51px;
    padding: 0;
    border-bottom: 0;
}

.buyclick__field {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.buyclick__field > span {
    display: none;
    height: 50px;
    width: 50px;
    background: var(--secondary);
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
}

.buyclick__field input {
    width: 100%;
    height: 50px;
    border: 2px solid #ebebeb;
    padding: 0 20px;
    border-radius: 0;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    -webkit-transition: border 0.4s ease;
    -o-transition: border 0.4s ease;
    transition: border 0.4s ease;
}

.buyclick__field input:focus,
.buyclick__field input:hover {
    border: 2px solid var(--secondary);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.buyclick__field input::placeholder {
    color: #8a909b;
}

.buyclick__button {
    width: 47%;
    height: 64px;
    background-color: var(--accent);
    border: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
    margin: 50px auto 0;
    -webkit-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
}

.buyclick__button:focus,
.buyclick__button:hover {
    background-color: var(--secondary);
}

.remodal-close.product__remodal-close {
    right: 10px;
    left: initial;
}

.remodal-close.product__remodal-close::before {
    font-size: 40px;
}

.buyclick__result {
    display: none;
}

.required_field {
    border: 2px solid #e22929;
    position: relative;
}

.required_field:after {
    content: "!";
    position: absolute;
    top: 27%;
    right: -27px;
    color: #fff;
    font-size: 12px;
    width: 19px;
    height: 19px;
    background-color: #e22929;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
}

#boc_form .error__text {
    color: #e22929;
    display: block;
    margin: 5px 0;
    text-align: left;
    font-size: 12px;
}

.buyclick__result {
    font-family: var(--font);
    padding: 15px 10px;
    color: var(--gaccent);
    font-size: 16px;
}

.alert-danger.review__danger,
.alert-success.review__success {
    padding: 20px;
    font-family: var(--font);
}

.reviews__item {
    margin-left: 49px;
    background-color: var(--glaccent);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.reviews__item:before {
    content: "";
    position: absolute;
    bottom: 18px;
    left: -46px;
    width: 46px;
    height: 43px;
    background-color: var(--glaccent);
    -webkit-clip-path: polygon(56px -5px, 123.04% 103.02%, 10% 100%);
    clip-path: polygon(56px -5px, 123.04% 103.02%, 10% 100%);
}

.reviews__item .review__author {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    align-items: center;

    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.reviews__item .review__author h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
}

.reviews__item .review__author .review__rating .check__star {
    color: #121212;
}

.reviews__item .review__author .review__rating .empty__star {
    color: #9a9a9a;
}

.reviews__item .review__body {}

.reviews__item .review__body .review__text {
    color: #121313;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;

    margin-top: 24px;
}

.reviews__item .review__body .review__data {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    text-align: left;
    color: #121313;
}

.answer__block {
    margin-left: 48px;
    background-color: var(--glaccent);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-top: 48px;
}

.answer__block:before {
    content: "";
    position: absolute;
    top: -43px;
    left: 0;
    width: 46px;
    height: 43px;
    background-color: var(--glaccent);
    -webkit-clip-path: polygon(0px 43px, 35px 43px, 0px 8px);
    clip-path: polygon(0px 43px, 35px 43px, 0px 8px);
}

.answer__block .answer__top {
    padding: 40px 24px 40px 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.answer__block .answer__top span {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 15px;
    margin-bottom: 11px;
}

.answer__block .answer__text {
    padding: 40px 40px 40px 25px;
}

.answer__block .answer__text {
    color: var(--secondary);
    font-size: 14px;
    line-height: 20px;
}

.info__modal {
    text-align: left;
    padding: 0;
}

.info__modal h2 {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 24px;
    letter-spacing: -0.24px;
    padding: 29px 60px 8px;
}

.info__modal .remodal__text {
    color: var(--gaccent);
    font-size: 14px;
    line-height: 24px;
    height: 420px;
    overflow: auto;
    width: 100% !important;
    padding: 29px 60px;
}

.info__modal .remodal__text .jspContainer,
.info__modal .remodal__text .jspPane {
    width: 100% !important;
}

.info__modal .remodal__text .jspTrack {
    background: var(--glaccent);
}

.info__modal .remodal__text .jspDrag {
    background: #e0e1e7;
}

.info__modal .remodal__text p {
    margin-bottom: 25px;
    color: var(--gaccent);
    font-size: 14px;
    line-height: 24px;
}

.info__modal .remodal__text li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 10px;
}

.info__modal .remodal__text li:before {
    content: "";
    position: absolute;
    top: 19%;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: #000;
    display: block;
    border-radius: 100%;
}

.info__modal .remodal-close {
    right: 0;
    left: initial;
    width: 61px;
    height: 61px;
    background-color: var(--secondary);
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
}

.info__modal .remodal-close:hover {
    background-color: var(--secondary);
}

.info__modal .remodal-close:focus {
    background-color: var(--secondary);
}

.info__modal .remodal-close:before {
    display: none;
}

/*=========================Manufacturer_list ==========================================================*/
.brands__title h1 {
    margin-top: 24px;
    border-bottom: 1px solid #e0e1e7;
    width: 100%;
    padding-bottom: 24px;
    margin-bottom: 17px;
    color: #000000;
    font-family: var(--font);
    font-size: 24px;
}

.brands__search,
.brans__sorting {
    padding: 24px 20px;
    background-color: var(--filter-bg);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 17px;
}

.brands__search h4,
.brans__sorting h4 {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 18px;
    margin-right: 11px;
}

.brans__sorting .anchor__block a {
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 18px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.brans__sorting .anchor__block a:hover {
    color: var(--secondary);
}

.brands__search input {
    height: 50px;
    max-width: 470px;
    width: 100%;
    background-color: #ffffff;
    padding: 0 18px;
    border: 1px solid transparent;
    color: var(--gaccent);
    font-family: var(--font);
    font-size: 14px;
    -webkit-transition: border 0.5s ease;
    -o-transition: border 0.5s ease;
    transition: border 0.5s ease;
}

.brands__search input:focus,
.brands__search input:hover {
    border: 1px solid var(--secondary);
}

.brands__body {
    margin-bottom: 15px;
}

.brands__body h2 {
    color: #000000;
    font-family: var(--font);
    font-size: 20px;
    border-bottom: 1px solid #e0e1e7;
    width: 100%;
    padding-bottom: 14px;
    margin-bottom: 17px;
}

.brands__body .brands__block {
    text-align: center;
    border: 2px solid #f5f5f5;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.brands__block .block__image {
    overflow: hidden;
    width: 100%;
    height: 215px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.brands__block .block__image img {
    margin: auto;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: -webkit-transform 0.5s ease, -webkit-filter 0.5s ease;
    transition: -webkit-transform 0.5s ease, -webkit-filter 0.5s ease;
    -o-transition: transform 0.5s ease, filter 0.5s ease;
    transition: transform 0.5s ease, filter 0.5s ease;
    transition: transform 0.5s ease, filter 0.5s ease, -webkit-transform 0.5s ease, -webkit-filter 0.5s ease;
}

.brands__body .brands__block:hover .block__image img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.brands__body .brands__block a {
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 15px;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.brands__body .brands__block:hover a {
    color: var(--secondary);
}

/* Footer setting for css */
/* --Footer top part */
.footer__border {
    border-top: 1px solid var(--filter-bg);
}

.footer-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 58px;
}

/* Footer logotip block */
.footer-top__main .footer-top__main-logotip {
    margin-bottom: 30px;
}

.footer-top__main .footer-top__main-logotip img {
    height: auto;
}

.footer-top__main .footer-top__main-description p {
    color: #535353;
    font-size: 14px;
    letter-spacing: 0.13px;
    line-height: 1.5;
    width: 72%;
    margin-bottom: 10px;
}

.footer-top__main-description img {
    height: auto;
}

.footer-top__main-payment {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.footer-top__main-payment img {
    height: auto;
}

.footer-top__main-payment-item {
    margin-right: 10px;
}

/* Footer menu link block */
.link__block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.info__item .link__block {
    margin-top: 10px;
}

.footer-top__main-link a {
    width: 30px;
    height: 30px;
    background-color: #e1e1e3;
    border-radius: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 18px;
    color: #fff;
    cursor: pointer;
    -webkit-transition: background-color 0.5s ease-in-out;
    -o-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out;
}

.info__item .link__block a {
    width: 30px;
    height: 30px;
    background-color: #e1e1e3;
    border-radius: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 14px;
    color: #fff;
    cursor: pointer;
    -webkit-transition: background-color 0.5s ease-in-out;
    -o-transition: background-color 0.5s ease-in-out;
    transition: background-color 0.5s ease-in-out;
}

.footer-top__main-link a:hover,
.info__item .link__block a:hover {
    background-color: #000;
}

.footer-top__main-link a > .fas,
.info__item .link__block a > .fas {
    width: 18px;
    height: 18px;
}

.footer-top__main-link noindex {
    margin-right: 18px;
}

.footer-top__main-link noindex:last-child {
    margin-right: 0;
}

.footer-top__main-link a:last-child {
    margin-right: 0;
}

.footer-top__menu {
    width: 750px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-top__menu-block h3 {
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 17px;
    margin-bottom: 30px;
}

.footer-top__menu-block ul {
    margin-bottom: 0;
}

.footer-top__menu-block ul li {
    margin-bottom: 14px;
    display: flex;
}

.footer-top__menu-block ul li:last-child {
    margin-bottom: 0;
}

.footer-top__menu-block ul li a {
    color: #4e4e4e;
    font-size: 15px;
    line-height: 1.26;
    font-weight: 400;
    -webkit-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

.footer-top__menu-block ul li a:hover {
    text-decoration: underline;
}

/* Footer contacts block */
.footer-top__contacts {
    width: 274px;
    margin-bottom: 20px;
}

.footer-top__contacts-block h3 {
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 17px;
    margin-bottom: 40px;
}

.footer-top__contacts-block a {
    color: #646464;
    display: block;
    margin-bottom: 10px;
    font-family: var(--font);
    font-size: 15px;
    -webkit-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

.footer-top__contacts-block a:last-child {
    margin-bottom: 0;
}

.footer-top__contacts-block a:hover {
    color: var(--secondary);
}

.footer__adress {
    margin-top: 15px;
}

.footer__adress p {
    color: #646464;
    font-family: var(--font);
    font-size: 15px;
}

/* --Footer bottom part */
/* Footer copyright */
.footer-bottom {
    width: 100%;
    height: 52px;
    background-color: var(--glaccent);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer-bottom a,
.footer-bottom p {
    color: var(--fcolor);
    font-size: 15px;
    font-weight: 400;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* Arrow up */
.page__arrow {
    display: none;
}

.arrow__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 50;
    background-color: rgba(241, 242, 247, 0.8);
    cursor: pointer;
    color: var(--secondary);
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}

.arrow__top:focus,
.arrow__top:hover {
    color: var(--secondary);
}

.footer__mobile-control {
    cursor: pointer;
}

.footer__mobile-control img {
    height: auto;
}

.footer__mobile-control span {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.footer__mobile-control span.active {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.footer-top__contacts-block span,
.footer__mobile-control span {
    display: none;
}

.footer__adress p > span {
    display: block;
}

.top-header__info > .top-header__info-language {
    width: 81px;
}

.top-header__info-language .dropdown-toggle::after {
    content: none;
}

.top-header__info-language .dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dropdown-language__block {
    position: absolute;
    top: -1000px;
    right: 0;
    z-index: 25;
    background-color: #f2f3f4;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    -webkit-transition: top 0.5s ease-in-out;
    -o-transition: top 0.5s ease-in-out;
    transition: top 0.5s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: auto;
    margin: 0;
    border-radius: 0;
    border: 0;
    padding: 0;

    border-radius: 3px;
}

.header .header__right-sector .btn-link {
    color: #828383;
}

.top-header__info-language .current-language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    text-transform: uppercase;
}

.top-header__info-language .dropdown-inner__language span {
    display: flex;
}

.top-header__info-language .dropdown-inner__language {
    margin-top: 31px;
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.top-header__info-language:hover p {
    cursor: pointer;
    color: var(--secondary);
}

.top-header__info-language:hover .fa-chevron-down {
    cursor: pointer;
    color: var(--secondary);
}

.dropdown-inner__language .fa-chevron-up {
    cursor: pointer;
    color: var(--secondary);
    width: 11px;
    height: 12px;
}

.top-header__info-language .language-item .btn {
    font-size: 13px;
    padding: 0;
    color: var(--secondary);
    font-family: var(--font);
    margin-bottom: 11px;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    font-weight: bold;
    text-transform: uppercase;
}

.top-header__info-language .language-item .btn:hover {
    color: var(--secondary);
    text-decoration: none;
}

.article__block .description {
    margin: 0;
    color: #363636;
    opacity: 0.5;
    line-height: 1.4;
}

.article__thumb .description {
    margin-bottom: 20px;
}

.article__thumb {
    background: var(--secondary);
    border: 0;
}

.article__thumb img {
    max-width: 115px;
}

.article__thumb .article__image {
    position: relative;
}

.article__thumb .article__image h3 {
    height: auto;
}

.article__thumb .article__image h3 a {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.article__thumb:hover .article__image h3 a {
    color: #fff;
}

.article__thumb .article__image a.link-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 35px 0 25px;
}

.article__thumb .article__info {
    border: 0;
    text-align: center;
}

.article__thumb p,
.article__thumb span {
    color: #fff;
    opacity: 0.5;
}

.article__thumb .btn-all {
    padding: 12px 33px;
    font-size: 16px;
    font-weight: bold;
    background: #fff;
    border: 1px solid var(--secondary);
    border-radius: 0;
    color: var(--secondary);
    cursor: pointer;
}

.article__thumb .btn-all:hover {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.article__thumb .article__info p {
    color: #fff;
}

.article__thumb .article__image {
    padding-bottom: 44%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.article__thumb .article__image_inner {
    position: absolute;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.article__thumb .article__image img {
    max-width: initial;
    width: 25%;
}

.category-separator {
    border-bottom: 1px solid var(--glaccent);
    height: 1px;
    width: 100%;
    margin: 0 15px 30px;
}

.category-blog-content .row:last-child .category-separator {
    display: none;
}

.page__article .block__title {
    min-height: 56px;
    border-top: 1px solid var(--glaccent);
    border-bottom: 1px solid var(--glaccent);
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    margin-top: 18px;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: bold;
    color: #000;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.page__article .image__article {
    display: none;
}

.popular__article_v .popular__info_v a,
.popular__article_v h2 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 30px;
    color: #363636;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.popular__article_v .popular__info_v a {
    text-decoration: underline;
    line-height: 1.5;
}

.popular__article_v a:hover {
    color: var(--secondary);
}

.popular__image_v {
    margin-bottom: 20px;
}

.col-top-menu {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.categoty__block-top__menu .nav-tabs {
    border-bottom: 0;
}

.module-categories {
    border: 1px solid #f5f5f5;
    margin-bottom: 15px;
}

.module-categories a {
    color: #1f1f1f;
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.4;
}

.module-categories a.active,
.module-categories a:hover {
    color: #fff;
    background-color: var(--secondary);
}

.module-categories .sub-category {
    margin-left: 0;
    padding-left: 35px;
    font-size: 14px;
}

.module-categories .list-group-item:first-child,
.module-categories .list-group-item:last-child {
    border-radius: 0;
}

.module-categories .list-group-item {
    margin-bottom: 0;
    border: 0;
}

.module-categories .separator {
    border-bottom: 1px solid #f5f5f5;
    margin: 0 20px;
}

.module-categories .separator:last-child {
    display: none;
}

.module-categories-title {
    display: none;
}

.article__description b,
.article__description strong,
.information__description b,
.information__description strong {
    font-weight: bold;
}

.cart__bottom-button.not-can-buy a,
.cart__bottom-button.not-can-buy a:hover {
    background-color: #9a9a9a;
    cursor: default;
}

.cart__message {
    display: none;
    width: 100%;
    color: #ff3e3e;
    font-weight: bold;
}

.cart__message.show {
    display: flex;
}

.remodal__error-cart .remodal-close {
    left: initial;
    right: 0;
}

.modal__error-cart-info {
    width: 100%;
    color: #ff3e3e;
    font-weight: bold;
}

.cart__tool .not-can-buy {
    display: none;
}

.cart__content {
    position: relative;
}

.cart__content.cart__content_loading:before {
    content: "";
    background-image: url("/catalog/view/theme/brainlab/image/load.gif");
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
}

.text-low-total {
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}

.swal2-popup button.swal2-styled.swal2-confirm {
    background-color: #000;
}

.swal2-popup button.swal2-styled:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(0, 0, 0, 0.4);
}

.swal2-popup #swal2-content,
.swal2-popup h2.swal2-title {
    color: #535353;
}

.slick-dots {
    display: flex;
    justify-content: center;
    bottom: -30px;
}

.slick-dots li {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-dots li button {
    padding: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    border: 1px solid #51555e;
}

.slick-dots li.slick-active button {
    background: #51555e;
}

.slick-dots li button:before {
    content: none;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.modal-notify-goods .form-control {
    border: 2px solid #ebebeb;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border-radius: 0;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
    -webkit-transition: border 0.4s ease;
    -o-transition: border 0.4s ease;
    transition: border 0.4s ease;
}

.modal-notify-goods .form-control.error {
    border: 2px solid #e22929;
}

.modal-notify-goods label {
    display: flex;
    margin: 0;
}

.modal-notify-goods .form-control:hover {
    border: 2px solid var(--secondary);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.modal-notify-goods button[type="submit"] {
    width: 47%;
    height: 64px;
    background-color: var(--accent);
    border: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
    margin: 50px auto 0;
    outline: none;
    -webkit-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
}

.modal-notify-goods button[type="submit"]:hover {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
}

.modal-notify-goods button[type="submit"]:focus:hover {
    background-color: #292929;
    border: 2px solid #292929;
    color: #fff;
}

.modal-notify-goods .message {
    text-align: center;
}

div.astrafit-wdgt iframe.astrafit-btn {
    height: 60px;
}

.modal-studio .remodal__content {
    max-width: 91%;
}

.product-studios {
    margin-bottom: 12px;
}

.product-studios__item {
    display: flex;
    color: #51555e;
}

.product-studios__sizes {
    display: flex;
    flex-wrap: wrap;
}

.product-studios__contact {
    display: flex;
    align-items: center;
}

.product-studios__left,
.product-studios__right {
    border: 1px solid #ebebeb;
}

.product-studios__left {
    min-width: 70%;
    padding: 12px 20px 0;
}

.product-studios__right {
    min-width: 30%;
    padding: 12px 15px;
}

.product-studios__name {
    font-size: 13px;
    margin-bottom: 10px;
}

.product-studios__contact,
.product-studios__contact p {
    font-size: 13px;
}

.product-studios__contact svg {
    margin-right: 5px;
    transform: rotate(90deg);
}

.product-studios__size {
    position: relative;
    width: 70px;
    min-width: 70px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
    margin-right: 10px;
    margin-bottom: 10px;
    color: #8a909b;
    font-weight: bold;
    font-size: 12px;
    border-radius: 15px;
}

.product-studios__size.in-stock {
    background-color: #000;
    text-decoration: none;
    color: #ffffff;
}

.product-studios__size.no-stock {
    border: 1px solid #ebebeb;
    opacity: 0.3;
}

.product-studios__size.limited {
    background-color: #8a909b;
    color: #fff;
}

.product-studios__size span {
    position: relative;
}

.product-studios__size span:before {
    content: "";
    border-top: 2px solid #8a909b;
    height: 2px;
    width: 100%;
    top: 50%;
    display: flex;
    position: absolute;
}

.product-studios__size.in-stock span:before,
.product-studios__size.limited span:before {
    content: none;
}

.explain-item {
    margin-bottom: 10px;
    display: flex;
}

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

.explain-item__tag {
    width: 46px;
    height: 20px;
    border-radius: 15px;
    font-size: 7px;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.explain-item__tag-instock {
    background: #000000;
}

.explain-item__tag-limit {
    background: #8a909b;
}

.explain-item__tag-nostock {
    background: #f7f7f7;
    color: #8a909b;
}

.explain-item__text {
    font-size: 13px;
    color: #51555e;
    text-transform: lowercase;
}

.explain-item__text-nostock span {
    position: relative;
}

.explain-item__text-nostock span:before {
    content: "";
    border-top: 2px solid #8a909b;
    height: 2px;
    width: 100%;
    top: 50%;
    display: flex;
    position: absolute;
}

.studio-page__title {
    margin-top: 18px;
    margin-bottom: 45px;
}

.studio-page__title h1 {
    font-family: var(--font);
    font-weight: bold;
    font-size: 28px;
    color: #000000;
}

.studion__headline {
    font-family: var(--font);
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e1e7;
}

.studion__space:not(:last-child) {
    margin-bottom: 60px;
}

.studio__item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    border: 1px solid #ebebeb;
}

.studio__img {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.studio__img img {
    display: none;
}

.studio__left {
    display: flex;
    min-width: 40%;
}

.studio__title {
    font-family: var(--font);
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
    color: #1f2024;
    margin-bottom: 15px;
    height: 68px;
    overflow: hidden;
}

.studio__info {
    padding: 30px 20px 0;
}

.studio__address {
    font-family: var(--font);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #535353;
    height: 41px;
    overflow: hidden;
}

.studio__time {
    font-size: 14px;
    color: var(--secondary);
    padding-right: 15px;
}

.studio__contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    padding: 20px 20px 15px;
}

.studio__contact div {
    display: flex;
    align-items: center;
    font-family: var(--font);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #535353;
    margin-bottom: 15px;
}

.studio__contact div img {
    margin-right: 15px;
}

.studio__contact svg {
    margin-right: 5px;
    transform: rotate(90deg);
}

.studio__contact .studio__time {
    min-height: 41px;
    min-width: 50%;
}

.studio__empty {
    opacity: 0;
}

.modal-sizes {
    max-width: 900px;
}

.modal-sizes .remodal__content {
    max-width: 91%;
}

.modal-sizes table {
    width: 100%;
}

.modal-sizes .description-style h3 {
    font-size: 28px;
    color: #1f2024;
    margin-bottom: 30px;
}

.modal-sizes .description-style td {
    font-size: 13px;
    color: #51555e;
    padding: 12px 14px;
    text-align: center;
    white-space: nowrap;
}

.modal-sizes .description-style tr:first-child td {
    color: #8a909b;
}

.modal-sizes .description-style td:first-child {
    text-align: left;
    min-width: 120px;
    white-space: normal;
}

.white-popup {
    position: relative;
    background: #fff;
    padding: 20px;
    width: auto;
    max-width: 500px;
    margin: 20px auto;
}

.image__t,
.openVideo {
    width: 50px;
    height: 50px;
    display: flex;
}

.product__information {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin: 0 -40px;
}

.product__information .p__item {
    margin: 0 40px 30px;
}

.wash_faq_images {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.wash_faq_images img {
    max-width: 75px;
    margin: 15px 5px;
}

.wash_faq_text p {
    line-height: 21px !important;
    margin-bottom: 10px !important;
}

.parammodel__body .table {
    max-width: 642px !important;
}

.parammodel__body .table tbody tr td:first-child {
    text-align: left;
    padding-left: 0;
    color: var(--secondary);
    font-size: 15px;
    white-space: nowrap;
    font-weight: normal;
}

.parammodel__body .table tbody tr td:last-child {
    text-align: right;
    color: #1f2024;
    font-weight: bold;
    font-family: var(--font);
    font-size: 15px;
    text-align: right;
    white-space: nowrap;
}

.parammodel__body .table tbody tr td {
    border-top: none;
    border-bottom: 1px solid #dee2e6;
}

.production_fashion_zina small {
    font-family: "CenturyGothic", sans-serif;
    font-size: 18px;
    color: #000 !important;
    font-weight: 700 !important;
    margin-bottom: 10px;
}

.remodal-notcall {
    padding: 100px 52px 120px;
}

.remodal-notcall__title {
    font-size: 28px;
    line-height: 1.28;
    color: #1f2024;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.remodal-notcall__text {
    font-size: 13px;
    line-height: 1.23;
    color: #51555e;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    max-width: 500px;
}

.remodal-notcall__btns {
    display: flex;
    justify-content: center;
}

.remodal-notcall__btn {
    width: 100%;
    min-width: 189px;
    height: 64px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    line-height: 37px;
    cursor: pointer;
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease, border 0.5s ease;
    -moz-transition: background-color 0.5s ease, border 0.5s ease;
    -ms-transition: background-color 0.5s ease, border 0.5s ease;
    -o-transition: background-color 0.5s ease, border 0.5s ease;
}

.remodal-notcall__btn-no {
    border: 2px solid var(--accent);
    background-color: var(--accent);
}

.remodal-notcall__btn-no:hover {
    background-color: #fff;
    color: var(--accent);
}

.remodal-notcall__btn-yes {
    border: 2px solid #8a909b;
    background-color: #8a909b;
    margin-right: 30px;
}

.remodal-notcall__btn-yes:hover {
    background-color: #555960;
    border: 2px solid #555960;
}

.product__bodys .product__wrap-stock {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-bottom: 15px;
}

.product__wrap-link-see {
    display: flex;
    margin-bottom: 20px;
}

.product__link-see {
    display: flex;
    background: #8a909b;
    padding: 10px 20px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
}

.product__link-see:hover {
    background: #000000;
    color: #ffffff;
}

.description__block-wrap {
    padding-bottom: 60px;
}

.description__home {
    margin-top: 0;
}

.description__home-block + .description__more {
    margin-top: 10px;
}

@supports (-webkit-touch-callout: none) {
    .mobile__menu {
        height: 75vh;
    }
}

/* Media setting for css */
@media (max-width: 1725px) {
    .nav__menu li a {
        padding: 0 15px;
    }

    .nav__menu > li:first-child > a {
        padding-left: 15px;
    }
}

@media (max-width: 1700px) {
    .article__thumb .article__image a.link-image {
        padding: 30px 0 20px;
    }

    .top-header__menu ul li {
        margin-right: 20px;
    }

    .top-header__menu ul li:last-child {
        margin-right: 18px;
    }

    .product__body-block {
        padding: 15px 19px;
    }

    .product__body-title h2 {
        height: 87px;
    }
}

@media (max-width: 1600px) {
    .product__body-title h2 {
        height: 84px;
    }
}

@media (max-width: 1550px) {
    .nav__menu li a {
        font-size: 13px;
    }

    .product__body-img {
        height: 420px;
    }
}

@media (max-width: 1480px) {
    .nav__menu li a {
        padding: 0 10px;
    }

    .top-header__menu ul li {
        margin-right: 10px;
    }

    .studio__title {
        font-size: 22px;
    }

    .studio__info {
        padding: 20px 20px 0;
    }

    .product__body-title h2 {
        height: 84px;
    }
}

@media (max-width: 1400px) {
    .coupon__block {
        padding: 25px 40px;
    }

    .buy__page .panel__heading {
        padding: 30px 40px;
    }

    #typeaccount .account__head {
        padding: 30px 40px;
    }

    #typeaccount .account__head h3 {
        margin-right: 20px;
    }

    .buy__page .table__title {
        padding: 30px 40px;
    }

    .buy__page .panel__body {
        padding: 30px 40px 20px;
    }

    .account__head .new__account {
        margin-right: 20px;
    }

    .col-top-menu {
        padding: 0;
    }

    .top-header__menu ul li a {
        font-size: 12px;
    }

    .nav__menu li a {
        padding: 0 10px;
        font-size: 12px;
        white-space: normal;
        text-align: center;
    }

    /* .nav__menu > li:first-child > a {
        padding-left: 30px;
   }
    */
    .dropdown__inner ul {
        padding: 30px 15px 15px;
    }

    .dropdown__inner li a {
        font-size: 15px;
    }

    .product__wrap .thumbnail__block {
        max-width: 90%;
    }

    .top-header__info > div,
    .top-header__info > div:first-child {
        padding-right: 10px;
        padding-left: 10px;
    }

    .top-header__info > div {
        width: 185px;
    }

    .product__wrap .media__item,
    .product__wrap .thumbnail__block {
        max-width: 400px;
    }

    .product__wrap .media__item {
        max-height: 620px;
        height: 620px;
    }

    .slide__main-1 .title {
        font-size: 40px !important;
    }

    .slide__main-4 .title {
        font-size: 50px !important;
    }

    .slide__main-4 .subtitle {
        font-size: 40px !important;
    }

    .slide__main-5 .title,
    .slide__main-5 .title span {
        font-size: 70px !important;
    }

    .slide__main-5 .subtitle {
        font-size: 43px !important;
    }

    .slide__main-5 .subtitle-2 {
        font-size: 13px !important;
    }

    .slide__main-solid-1 .title {
        font-size: 45px !important;
    }

    .slide__main-solid-1 .subtitle,
    .slide__main-solid-1 .subtitle span {
        font-size: 80px !important;
    }

    .slide__main-solid-2 .title {
        font-size: 55px !important;
    }

    .slide__main-solid-2 .subtitle,
    .slide__main-solid-2 .subtitle-2 {
        font-size: 45px !important;
    }

    .thumbnail__block .sticker-right-bottom {
        margin-bottom: 70px;
    }

    .thumbnail__block .sticker-right-bottom.second {
        margin-bottom: 105px;
    }

    .product__body-block {
        padding: 10px 13px;
    }

    .product__body-title h2 {
        height: 110px;
    }
}

@media (max-width: 1294px) {
    .cart__body {
        height: 252px;
        max-height: 252px;
        margin: 15px 1.875rem 0;
    }

    .cart__bottom-button a {
        padding: 15px 70px;
    }

    .cart__bottom,
    .cart__top {
        padding: 20px 1.875rem;
    }

    .cart__top h2 {
        font-size: 16px;
    }

    .cart__body-title {
        font-size: 12px;
    }

    .cart__top-back span {
        font-size: 13px;
    }

    .cart_qty svg {
        max-width: 12px;
    }

    .product__bodys .product__button .buy__tocart {
        margin-bottom: 0;
    }

    .body__options-block .body__options-block__title {
        font-size: 12px;
    }

    .product-layout.product-list.product__list .products .product__body-img {
        width: 40%;
    }

    .nav__menu li a {
        padding: 0 10px;
        font-size: 12px;
    }

    .article__thumb .article__image h3 a {
        padding: 0;
    }

    .article__block .article__info {
        padding: 20px 20px 30px;
    }

    .article__thumb .article__image a.link-image {
        padding: 25px 0 15px;
    }

    .col-header-info {
        padding-left: 0;
    }

    .top-header__info > div {
        width: 167px;
    }

    .top-header__info > div p {
        font-size: 11px;
    }

    .top-header__info > .top-header__info-language {
        width: 65px;
    }

    .top-header__info-phone .phone-block {
        width: 20px;
        height: 20px;
    }

    .top-header__info-phone .phone-block .fa-phone {
        color: var(--gaccent);
        width: 10px;
        height: 10px;
    }

    .top-header__info-user .user__block {
        width: 20px;
        min-width: 20px;
        height: 20px;
    }

    .top-header__info-user .fa-user {
        width: 9px;
        min-width: 9px;
        height: 9px;
    }

    .dropdown-phone__block {
        right: 0;
        width: 163px;
    }

    .dropdown-phone__block .phone-block {
        width: 20px;
        height: 20px;
    }

    .dropdown-phone__block .phone-block .fa-phone {
        width: 10px;
        height: 10px;
    }

    .dropdown-info__block-link {
        justify-content: center;
    }

    .dropdown-info__block-link .fa-pencil-alt,
    .dropdown-info__block-link .fa-unlock {
        margin-right: 10px;
    }

    .dropdown-phone__block-link a {
        font-size: 11px;
    }

    .dropdown-phone__block-link {
        margin-left: 5px;
        margin-right: 5px;
        justify-content: center;
    }

    .dropdown-phone__block-link .fa-phone {
        margin-right: 10px;
        margin-left: 0;
    }

    .dropdown-phone__block-call {
        font-size: 11px;
        height: 40px;
        margin-top: 0;
    }

    .dropdown-info__block {
        width: 165px;
        padding-bottom: 15px;
    }

    .dropdown-info__block-link a {
        font-size: 11px;
    }

    .dropdown-info__block-link .fa-pencil-alt,
    .dropdown-info__block-link .fa-unlock {
        width: 10px;
        height: 10px;
        margin-left: 0;
    }

    .top-header__info > div:first-child {
        padding-right: 5px;
        padding-left: 5px;
    }

    .top-header__info-language .language-item .btn {
        font-size: 11px;
        margin-bottom: 7px;
    }

    .module-categories .sub-category {
        padding: 10px 10px 10px 25px;
    }

    .bottom-header__tools-wishlist .fa-heart {
        width: 18px;
        height: 18px;
    }

    .header__cart-title svg {
        width: 21px;
        height: 17px;
    }

    .header__cart-title .header__cart-title__text {
        font-size: 12px;
        margin-right: 10px;
    }

    .header__cart-title .header__cart-title__quantity {
        width: 33px;
        height: 33px;
        font-size: 14px;
    }

    .subscribes__left h3 {
        font-size: 20px;
    }

    .subscribes__left .svg {
        width: 32px;
        height: 23px;
        margin-right: 25px;
    }

    .studio__title {
        font-size: 20px;
    }

    .studion__space:not(:last-child) {
        margin-bottom: 40px;
    }

    .product__body-img {
        height: 380px;
    }
}

@media (max-width: 1300px) {
    .product__body-title h2 {
        height: 128px;
    }
}

@media (max-width: 1200px) {
    .top-header {
        min-height: 60px;
    }

    .top-header__menu ul li a {
        font-size: 11px;
    }

    .top-header__logo #logo {
        width: 120px;
    }

    .top-header__info > div {
        width: 156px;
    }

    .dropdown-phone__block {
        width: 152px;
    }

    .top-header__info > div p {
        padding: 0 5px;
    }

    .dropdown-info__block-link {
        margin-bottom: 8px;
    }

    .top-header__info > .top-header__info-language {
        width: 58px;
    }

    .nav__menu li a {
        white-space: normal;
        text-align: center;
        padding: 0 10px;
    }

    .nav__menu > li:first-child > a {
        padding-left: 15px;
        text-align: left;
    }

    .bottom-header__tools-search,
    .bottom-header__tools-wishlist,
    .bottom-header__toolscart {
        height: 65px;
    }

    .dropdown__inner ul {
        padding: 25px 15px 15px;
    }

    .dropdown__inner li a {
        padding: 0;
    }

    .dropdown__inner li {
        margin-bottom: 15px;
    }

    .dropdown__cart {
        top: 65px;
    }

    .header__cart-title .header__cart-title__text {
        font-size: 11px;
        margin-right: 7px;
    }

    .header__cart-title svg {
        margin-right: 6px;
    }

    .rev__cont {
        padding-top: 5px;
    }

    .categoty__block {
        margin: 30px auto 25px;
    }

    .categoty__block-top__title h2,
    .custom__banner-top__title h2 {
        font-size: 22px;
    }

    .custom__banner-top__title h2 {
        margin-bottom: 20px;
    }

    .categoty__block-top {
        margin-bottom: 20px;
    }

    .category__block-bottom__body a {
        padding: 20px;
    }

    .category__block-bottom__body h3 {
        font-size: 21px;
    }

    .category__banner p {
        font-weight: bold;
        font-size: 18px;
        line-height: 22px;
        text-align: center;
    }

    .categoty__block-top__menu li a {
        font-size: 12px;
        padding: 7px 0;
        line-height: 1.3;
    }

    .product__tabs {
        margin-bottom: 40px;
    }

    .products__tabs-bottom .slick-list {
        margin: 0 -10px;
    }

    .product__body {
        margin: 0 10px;
    }

    .automatic__sticker,
    .handle__sticker {
        top: 15px;
        left: 15px;
    }

    .automatic__sticker .popular__sticker,
    .handle__sticker .inner__sticker,
    .handle__sticker .popular__sticker {
        margin-bottom: 8px;
        padding: 3px 13px;
        font-size: 14px;
    }

    .product__body-wishlist button .fa-heart {
        width: 16px;
        height: 15px;
    }

    .product__body-wishlist button {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .product__body-title h2 {
        height: 60px;
    }

    .product__body-title h2 a {
        font-size: 14px;
    }

    .product__body-price__price .price-new {
        font-size: 22px;
        margin-right: 9px;
    }

    .product__body-price__price .price-old {
        font-size: 15px;
    }

    .currency__symbol {
        font-size: 12px;
    }

    .product__body-button button span {
        font-size: 13px;
    }

    .custom-banner__block {
        height: 210px;
    }

    .custom-banner__block h2,
    .custom-banner__block h3 {
        font-size: 22px;
    }

    .custom-banner__block a {
        width: 130px;
        height: 42px;
        margin-top: 30px;
        font-size: 11px;
    }

    .custom__banner-row {
        margin: 0 -10px;
    }

    .custom__banner-col {
        padding: 0 10px;
    }

    .description {
        margin: 30px 0 0;
    }

    .description__block p {
        font-size: 13px;
    }

    .custom__banner {
        margin-bottom: 25px;
    }

    .subscribes {
        padding: 30px 0;
    }

    .subscribes__left .svg {
        width: 27px;
        height: 19px;
        margin-right: 15px;
    }

    .subscribes__left h3 {
        font-size: 16px;
    }

    .subscribes__input {
        height: 52px;
        padding: 0 20px;
        font-size: 12px;
    }

    .subscribes__input::placeholder {
        font-size: 12px;
    }

    .subscribes__button {
        width: 145px;
        min-width: 145px;
        height: 52px;
        font-size: 13px;
    }

    .footer-top {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer-top__main .footer-top__main-logotip {
        width: 120px;
        margin-bottom: 20px;
    }

    .footer-top__main-payment {
        margin-bottom: 20px;
    }

    .footer-top__main-payment-item {
        margin-right: 5px;
    }

    .footer-top__main-payment img {
        max-width: 75%;
    }

    .footer-top__main .footer-top__main-description p {
        font-size: 13px;
        width: 100%;
    }

    .footer-top__menu-block h3 {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .footer-top__menu-block ul li {
        margin-bottom: 10px;
    }

    .footer-top__menu-block ul li a {
        font-size: 13px;
    }

    .footer-top__main-link a {
        width: 26px;
        height: 26px;
    }

    .footer-top__main-link svg,
    .footer-top__main-link svg.svg-inline--fa {
        width: 55%;
    }

    .footer-top__main-link noindex {
        margin-right: 14px;
    }

    .footer-bottom {
        height: 45px;
    }

    .footer-bottom a,
    .footer-bottom p {
        font-size: 14px;
    }

    ul.breadcrumb li a {
        font-size: 12px;
    }

    .category__title h1 {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .ocfilter-option {
        margin-bottom: 7px;
    }

    .ocf-option-name {
        height: 45px;
        font-size: 15px !important;
        padding: 0 20px;
    }

    .ocf-option-name svg {
        width: 9px;
    }

    .ocf-option-values,
    .ocfilter .selected-options {
        padding: 20px;
    }

    #ocfilter .selected__name {
        font-size: 15px;
    }

    .ocfilter .selected-options .selected__title button {
        font-size: 12px;
        padding: 0;
    }

    .ocfilter .selected-options .ocfilter-option button {
        font-size: 12px;
    }

    .ocfilter .selected-options .selected__title {
        margin-bottom: 15px;
    }

    .ocfilter .selected-options .ocfilter-option button svg,
    .ocfilter .selected-options .selected__title button svg {
        width: 8px;
    }

    .ocf-option-values .price__form .form-inline {
        margin: 0;
    }

    .ocf-option-values .price__form .form-inline .form-group {
        justify-content: flex-start;
    }

    .ocf-option-values .price__form .form-inline input {
        width: 60%;
        height: 35px;
        font-size: 13px;
    }

    .ocf-option-values label a {
        font-size: 13px;
    }

    .ocf-option-values input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 7px;
    }

    .ocf-option-values input[type="checkbox"]:checked:before,
    .ocf-option-values label:hover input[type="checkbox"]:before {
        width: 12px;
        height: 12px;
    }

    .ocf-option-values .badge {
        font-size: 13px;
    }

    .ocf-option-values label:hover input[type="checkbox"]:before,
    .ocf-option-values input[type="checkbox"]:checked:before {
        font-size: 14px;
    }

    .category__sorting .sorting__list .sorting__title,
    .label__title,
    .sorting__limit .sorting__title {
        font-size: 13px;
    }

    .button__grid {
        font-size: 13px;
    }

    .content__category {
        padding-bottom: 40px;
    }

    .pagination__block {
        margin-top: 10px;
    }

    .pagination__block .pagination li.pagination__link.active {
        width: 45px;
        height: 45px;
    }

    .pagination__block .pagination li.pagination__link {
        width: 38px;
        height: 38px;
    }

    .pagination__block .pagination li.next__page,
    .pagination__block .pagination li.prev__page {
        font-size: 13px;
        height: 38px;
    }

    .pagination__block .pagination li.next__page a,
    .pagination__block .pagination li.prev__page a {
        font-size: 13px;
    }

    .pagination__block .pagination li.next__page {
        margin-left: 10px;
    }

    .pagination__block .pagination li.prev__page {
        width: 142px;
        margin-right: 10px;
    }

    .blog-latest .pagination__block {
        margin-bottom: 40px;
    }

    .description__body .description__text {
        padding-left: 30px;
    }

    .product__wrap .navigation__thumb {
        margin-right: 15px;
    }

    .product__wrap .navigation__thumb .image,
    .product__wrap .navigation__thumb .image__additional {
        padding-bottom: 15px;
    }

    .product__bodys .product__title {
        margin-bottom: 20px;
    }

    .product__bodys .product__title h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .product__bodys .product__title span {
        padding: 12px 17px;
        font-size: 12px;
    }

    .product__bodys .product__stock {
        font-size: 13px;
    }

    .product__bodys .product__rating {
        margin-bottom: 10px;
    }

    .product__bodys .rating .star__rating-empty .fa-star {
        font-size: 14px;
    }

    .product__bodys .rating a {
        font-size: 13px;
        margin-left: 7px;
    }

    .product__bodys .product__specif {
        margin-bottom: 15px;
    }

    .product__bodys .product__specif .specif__block {
        margin-bottom: 5px;
    }

    .product__bodys .product__specif .specif__block .specif__name,
    .product__bodys .product__specif .specif__block .specif__title {
        font-size: 12px;
    }

    .product__pds-title {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .product__pds-item {
        margin-right: 5px;
        margin-bottom: 10px;
    }

    .product__pds-img img {
        width: 54px;
        height: 54px;
    }

    .product__pds {
        margin-bottom: 5px;
    }

    .product__options .control-label {
        margin-bottom: 7px;
        font-size: 13px;
    }

    .product__price .price-new {
        font-size: 28px;
        margin-right: 12px;
    }

    .product__price .price-new .currency__symbol {
        margin-left: 3px;
    }

    .product__price .price-old {
        font-size: 15px;
    }

    .product__btn-table-sizes,
    .product__tables button {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .product__btn-table-sizes {
        margin-bottom: 15px;
    }

    .product__bodys .tools__count .count__block {
        width: 110px;
        height: 40px;
    }

    .product__bodys .product__tools .tools__count .label__count {
        font-size: 12px;
    }

    .product__bodys .count__block svg {
        width: 8px;
    }

    .product__bodys .tools__count .count__block input {
        font-size: 12px;
    }

    .product__bodys .product__tools .tools__list .button__tools,
    .social__button .button__social,
    .social__button .social__share {
        width: 40px;
        height: 40px;
    }

    .product__bodys .product__tools .tools__list .button__tools .button__icon {
        width: 14px;
    }

    .social__button .button__social .button__icon,
    .social__button .social__share .button__icon {
        width: 12px;
    }

    .product__bodys .product__button .buy__tocart {
        margin-bottom: 0;
    }

    .product__bodys .product__button .buy__tocart span {
        font-size: 13px;
    }

    .product__bodys .product__button .buy__oneclick span {
        font-size: 13px;
        margin-left: 10px;
    }

    .product__bodys .product__button .buy__oneclick svg,
    .product__bodys .product__button .buy__tocart svg {
        width: 14px;
    }

    .product__bodys .btn__notify-goods,
    .product__bodys .product__button .buy__oneclick,
    .product__bodys .product__button .buy__tocart {
        height: 55px;
    }

    .product__bodys .btn__notify-goods span {
        font-size: 13px;
    }

    .product__wrap {
        margin-bottom: 30px;
    }

    .buyclick__wrap h3,
    .remodal__title {
        font-size: 23px;
        margin-bottom: 31px;
    }

    .remodal-close:before {
        width: 32px;
        height: 32px;
    }

    .tab__block {
        padding: 20px 0 0;
        margin: 0 0 30px;
    }

    .product__ctabs .tabs__links .tablinks {
        line-height: 45px;
        margin-right: 15px;
        font-size: 12px;
    }

    .product__ctabs .tabs__button a {
        width: 200px;
        height: 35px;
    }

    .product__ctabs .tabs__button .review__icon {
        margin-right: 10px;
    }

    .product__ctabs .tabs__button .review__icon svg {
        width: 15px;
    }

    .product__ctabs .tabs__button h4 {
        font-size: 12px;
    }

    .tab__block #reviews .reviews__title,
    .tab__block #specification h2,
    .tab__block h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .tab__block .specification__body .specificaion__section h4 {
        font-size: 14px;
    }

    .tab__block .specification__body .specificaion__section span {
        font-size: 14px;
    }

    .tab__block .specification__body .specificaion__section {
        width: 44%;
        margin-bottom: 15px;
        margin-right: 6%;
    }

    #cart-article-recommend,
    #cart-product-related,
    .viewed__product {
        margin: 0 -10px 30px;
    }

    .tab__block #reviews .reviews__form {
        padding: 30px;
    }

    .tab__block #reviews .reviews__form h3 {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .tab__block #reviews .review__input label,
    .tab__block #reviews .review__textarea label {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .tab__block #reviews .review__input input {
        height: 40px;
    }

    .tab__block #reviews .review__group .review__input {
        margin-bottom: 20px;
    }

    .tab__block #reviews .review__input input {
        padding: 0 15px;
    }

    .tab__block #reviews .review__textarea textarea {
        padding: 15px;
    }

    .review__bottom legend {
        font-size: 18px;
    }

    .tab__block #reviews .review__star input[type="radio"] {
        width: 21px;
        min-width: 21px;
        height: 21px;
    }

    .tab__block #reviews .review__star input[type="radio"]:before {
        font-size: 14px;
    }

    .tab__block #reviews .button__review {
        height: 55px;
    }

    .articles__panel,
    .related__panel,
    .viewed__panel {
        margin-bottom: 20px;
    }

    .articles__panel h3,
    .related__panel h3,
    .viewed__panel h3 {
        font-size: 22px;
    }

    .checkout__title h1 {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .buy__page .table__title {
        padding: 25px;
        height: auto;
        font-size: 16px;
    }

    .tmdcart__head td {
        padding-top: 20px;
        padding-bottom: 10px;
        font-size: 12px;
    }

    .tmdcart__body .tmdcart__info {
        padding: 7px 25px;
    }

    .buy__page .table__title-name {
        padding-left: 25px;
    }

    .tmdcart__body .tmdcart__info .tmdcart__model {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .tmdcart__body .tmdcart__info a {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .tmdcart__body .tmdcart__info small {
        font-size: 12px;
    }

    .tmdcart__body .tdmcart__quantity .form__quantity {
        font-size: 12px;
    }

    .tmdcart__body .tdmcart__quantity span svg {
        width: 8px;
    }

    .tmdcart__body .tdmcart__quantity {
        width: 110px;
        height: 40px;
    }

    .tmdcart__body .column__total {
        font-size: 17px;
    }

    .tmdcart__body .tmdcart__delete .delete__button {
        width: 15px;
        margin: 4px auto;
    }

    #typeaccount .account__head {
        padding: 20px 25px;
    }

    #typeaccount .account__head h3 {
        font-size: 15px;
    }

    .input__radio label {
        font-size: 12px;
    }

    .buy__page .text-discount {
        font-size: 13px;
    }

    .buy__page .text-shipping-interval {
        font-size: 13px;
    }

    .input__radio input {
        width: 19px;
        height: 19px;
    }

    .buy__page .choose__block input:checked,
    .buy__page .choose__block:hover input,
    .input__radio input:checked,
    .input__radio:hover input {
        border: 6px solid var(--secondary);
    }

    .buy__page .panel__body {
        padding: 20px 25px;
    }

    .buy__page .form__group label {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .form__group .form__control {
        height: 40px;
        padding: 0 15px;
        font-size: 13px;
    }

    .select2-container .select2-selection--single {
        height: 40px;
    }

    .buy__page .form__group {
        margin-bottom: 20px;
    }

    .buy__page .choose__block input,
    .not-call__label input,
    .package-checkbox-input,
    .register__label input {
        width: 20px;
        min-width: 20px;
        height: 20px;
    }

    .not-call__label input:checked:before,
    .not-call__label:hover input:before,
    .register__label input:checked:before,
    .register__label:hover input:before,
    .register__label:hover input:before {
        font-size: 13px;
        width: 12px;
        height: 12px;
    }

    .register__label span {
        font-size: 12px;
    }

    .buy__page .panel__heading {
        padding: 20px 25px;
        font-size: 15px;
    }

    .buy__page .choose__block .ship__img img {
        width: 23px;
        height: auto;
    }

    .buy__page .choose__block span {
        font-size: 12px;
    }

    .buy__page .choose__block span svg {
        width: 16px;
    }

    .confirmation__total {
        padding: 25px;
    }

    .confirmation__details .details__item .details__title {
        font-size: 13px;
    }

    .confirmation__details .details__item {
        margin-bottom: 15px;
    }

    .confirmation__details .details__item .details__text {
        font-size: 18px;
    }

    .button__buy-confirm {
        height: 52px;
        max-width: 270px;
        font-size: 13px;
    }

    .buy__page .select__group:after {
        top: 48px !important;
    }

    .product-studios__name {
        margin-bottom: 7px;
    }

    .modal-studio .remodal__content {
        max-width: 100%;
    }

    .coupon__block {
        padding: 20px 25px;
    }

    .coupon__block .form__coupon .button__coupon,
    .coupon__block .form__coupon input[type="text"] {
        height: 52px;
    }

    .top-header__menu ul li {
        margin-right: 5px;
    }

    .product__bodys .product__price {
        margin-right: 50px;
    }

    .product__button.out .btn__notify-goods {
        padding: 0 5px;
        font-size: 13px;
        margin-right: 30px !important;
    }

    .product__bodys .product__button.out {
        margin-top: 10px;
    }

    .product__wrap .product__images {
        max-height: 630px;
    }

    .product__wrap .media__item {
        max-height: 630px;
        height: 630px;
    }

    .slide__main-1 .title {
        font-size: 35px !important;
        transform: translateX(-30px) !important;
    }

    .slide__main-3 .title {
        transform: translateX(-50px) !important;
    }

    .slide__main-3 .subtitle {
        transform: translateX(-50px) !important;
    }

    .slide__main-3 .subtitle-2 {
        transform: translateX(-50px) !important;
    }

    .slide__main-4 .title {
        font-size: 45px !important;
        transform: translateX(-30px) !important;
    }

    .slide__main-4 .subtitle {
        font-size: 35px !important;
        transform: translateX(-30px) !important;
    }

    .slide__main-5 .title,
    .slide__main-5 .title span {
        font-size: 50px !important;
    }

    .slide__main-5 .subtitle {
        font-size: 30px !important;
    }

    .slide__main-5 .subtitle-2 {
        font-size: 12px !important;
        max-width: 70% !important;
        width: 100% !important;
        white-space: normal !important;
        line-height: 1.2 !important;
        transform: translate(-50%, 25%) !important;
    }

    .slide__main-solid-1 .title {
        font-size: 28px !important;
    }

    .slide__main-solid-1 .subtitle,
    .slide__main-solid-1 .subtitle span {
        font-size: 50px !important;
    }

    .slide__main-solid-2 .title {
        font-size: 40px !important;
    }

    .slide__main-solid-2 .subtitle,
    .slide__main-solid-2 .subtitle-2 {
        font-size: 35px !important;
    }

    .slide__main-center .button,
    .slide__main-center .subtitle,
    .slide__main-center .subtitle-2,
    .slide__main-center .title {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .thumbnail__block .sticker-right-bottom {
        margin-bottom: 35px;
    }

    .product__link-see {
        font-size: 12px;
    }
}

@media (max-width: 1065px) {
    .top-header__menu ul li {
        margin-right: 10px;
    }

    .top-header__info > div:first-child {
        padding-right: 0;
    }

    .product__wrap .thumbnail__block {
        max-width: 75%;
    }

    .categoty__block-top__menu {
        margin-right: 20%;
    }

    .article__thumb .article__image img {
        width: 23%;
    }
}

@media (max-width: 1025px) {
    .category__block-bottom__body a {
        opacity: 1;
        visibility: visible;
    }

    .product__tabs,
    .related__product,
    .viewed__product {
        overflow: hidden;
    }
}

@media (max-width: 992px) {
    .product-layout.product-list.product__list .products {
        display: block;
    }

    .product-layout.product-list.product__list .products .product__body-img {
        width: auto;
    }

    .product-layout.product-list.product__list .products .product__body-block {
        padding: 18px 31px 33px;
    }

    .account__form .form__group input[type="text"],
    .account__form .form__group input[type="email"],
    .account__form .form__group input[type="password"],
    .account__form .form__group input[type="tel"],
    .account__form .form__group input[type="search"],
    .account__form .form__group input[type="url"],
    .account__form .form__group input[type="date"],
    .account__form .form__group select,
    .account__form .form__group textarea,
    .account__form .form__input input {
        max-width: 100%;
    }

    .wishlist__info {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .wishlist__controlls {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .address__controll,
    .wishlist__info .wishlist__item:nth-child(1),
    .wishlist__info .wishlist__item:nth-child(2),
    .wishlist__info .wishlist__item:nth-child(3),
    .wishlist__info .wishlist__item:nth-child(4),
    .wishlist__info .wishlist__item:nth-child(5) {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .wishlist__info .wishlist__item:nth-child(2),
    .wishlist__info .wishlist__item:nth-child(3),
    .wishlist__info .wishlist__item:nth-child(4),
    .wishlist__info .wishlist__item:nth-child(5) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .wishlist__info .wishlist__item .item__text {
        text-align: right;
    }

    .wishlist__info .wishlist__item:nth-child(1) img {
        width: 100%;
    }

    .wishlist__controlls a:first-child {
        height: 60px;
    }

    .wishlist__controlls a:last-child {
        height: 40px;
    }

    .address__info,
    .order__middle .left__block .item__block,
    .order__middle .right__block .item__block,
    .order__product .product__bodys .item__block:nth-child(1),
    .order__product .product__bodys .item__block:nth-child(2),
    .order__product .product__bodys .item__block:nth-child(3),
    .order__product .product__bodys .item__block:nth-child(4),
    .order__product .product__bodys .item__block:nth-child(5),
    .order__product .product__bodys .product__info,
    .order__top .block__info .block__item,
    .product__count .count__block .count__item,
    .return__block .return__info,
    .return__block .return__item,
    .return__orders .left__orders,
    .return__orders .right__orders,
    .return__products .items__block .item__product {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .order__product .product__bodys .product__controlls {
        height: 55px;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .order__info .order__item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        border-right: none;
    }

    .order__controlls,
    .return__block .return__controlls {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        height: 60px;
    }

    .bottom-header,
    .top-header {
        display: none;
    }

    .header {
        margin-bottom: 0;
        position: relative;
        z-index: 500;
    }

    .categoty__block {
        margin: 30px 0;
    }

    .mobile__header {
        display: block;
    }

    .cart__tool div {
        margin-left: 0;
    }

    .cart__tool a {
        display: flex;
    }

    .input-select {
        width: 100%;
    }

    .address__info {
        padding: 15px 0;
    }

    .address__info .address__item {
        height: auto;
        max-width: 100%;
        border-right: none;
    }

    .article__description {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--glaccent);
    }

    #popular-article-v {
        padding-top: 30px;
        overflow: hidden;
    }

    .article__description table {
        display: inline-block;
        overflow: auto;
        max-width: 100%;
    }

    .popular__article_title_v {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .popular__article_title_v h2 {
        margin: 0;
    }

    .article-item.popular__article_v {
        padding: 0 15px;
    }

    .popular__article_v .slick-list {
        margin: 0 -15px;
    }

    .mobile__tools {
        min-width: 130px;
    }

    .mobile__languages {
        padding: 20px;
        display: none;
    }

    .mobile__languages #show-language {
        display: none;
    }

    .mobile__languages .current-language {
        color: var(--secondary);
        font-weight: bold;
    }

    .mobile__languages #form-language {
        position: relative;
        width: auto;
        display: flex;
    }

    .mobile__languages .current-language {
        display: none;
    }

    .mobile__languages .dropdown-language__block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-shadow: none;
        box-shadow: none;
        top: 0 !important;
    }

    .mobile__languages .language-select {
        padding: 0;
        height: 100%;
        font-family: var(--font);
        font-size: 16px;
        color: #8a909b;
        font-weight: bold;
    }

    .mobile__languages .language-select__current {
        color: var(--secondary);
    }

    .mobile__languages .language-select:hover {
        color: var(--secondary);
        text-decoration: none;
    }

    .mobile__languages .language-item {
        margin-right: 15px;
    }

    .mobile__header > .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .categoty__block-top__arrows {
        margin-bottom: 9px;
    }

    .mobile__tools div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .module-categories-title {
        width: 100%;
        height: 40px;
        border-radius: 21px;
        background-color: var(--glaccent);
        border: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: distribute;
        -webkit-box-pack: justify;
        justify-content: space-between;
        position: relative;
        cursor: pointer;
        padding: 0 5%;
        color: var(--gaccent);
        font-family: var(--font);
        font-size: 14px;
        -webkit-transition: color 0.1s ease;
        -o-transition: color 0.1s ease;
        transition: color 0.1s ease;
        margin-bottom: 15px;
    }

    .module-categories-title span {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
        -webkit-transition: -webkit-transform 0.5s ease;
        transition: -webkit-transform 0.5s ease;
        -o-transition: transform 0.5s ease;
        transition: transform 0.5s ease;
        transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    }

    .module-categories-title span.active {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }

    .module-categories {
        display: none;
        margin-top: 16px;
    }

    .module-categories .sub-category {
        padding-left: 30px;
    }

    .cart__tool a,
    .cart__tool.can-buy .not-can-buy {
        display: none;
    }

    .cart__tool .not-can-buy,
    .cart__tool.can-buy a {
        display: block;
    }

    .checkout__title {
        margin-bottom: 12px;
    }

    #typeaccount .account__head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #typeaccount .account__head h3 {
        margin-bottom: 15px;
    }

    .account__head .new__account {
        margin-bottom: 5px;
    }

    .categoty__block-top__arrows .arrow__left,
    .categoty__block-top__arrows .arrow__right {
        width: 40px;
        height: 40px;
    }

    .categoty__block-top__arrows .arrow__left svg,
    .categoty__block-top__arrows .arrow__right svg {
        width: 8px;
    }

    .categoty__block-top__arrows .arrow__left img,
    .categoty__block-top__arrows .arrow__right img {
        width: 7px;
    }

    .rev__cont {
        padding-top: 0;
        margin: 0 -20px;
    }

    .footer__col-logo,
    .footer__col-social {
        order: -1;
        margin-bottom: 30px;
    }

    .arrow__top {
        left: 20px;
    }

    .custom-radio + label {
        min-width: 60px;
    }

    .subscribes__left h3 {
        font-size: 14px;
        line-height: 1.4;
    }

    .subscribes__left .svg {
        width: 24px;
    }

    .subscribes__input {
        padding: 0 15px;
    }

    .subscribes__button {
        width: 130px;
        min-width: 130px;
    }

    .custom-banner__block {}

    .custom-banner__block h2,
    .custom-banner__caption h2 {
        font-size: 16px;
    }

    .custom-banner__block h3,
    .custom-banner__caption h3 {
        font-size: 13px;
    }

    .custom-banner__block {
        height: 350px;
    }

    .custom-banner__block a {
        margin-top: 25px;
    }

    .category__description {
        padding: 30px 0;
    }

    .category__banner {
        padding: 20px;
    }

    #ocfilter .form-inline {
        justify-content: flex-start;
    }

    .ocf-option-values .price__form .form-inline .form-group {
        margin-right: 15px;
    }

    .ocf-option-values .price__form .form-inline input {
        width: 120px;
    }

    .tab__block #description .description__textmore p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .product__wrap .media,
    .product__wrap .thumbnails {
        max-width: 100%;
    }

    .product__wrap .product__images {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .product__wrap .navigation__thumb {
        max-width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-top: 15px;
    }

    .product__wrap .product__images {
        max-height: initial;
    }

    button.slick-prev.garrow__prev.slick-arrow {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        height: auto;
        background: none;
        top: 50%;
    }

    button.slick-next.garrow__next.slick-arrow {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        height: auto;
        background: none;
        bottom: 0;
        right: 0;
        left: initial;
        top: 50%;
    }

    .product__wrap .navigation__thumb {
        margin: 0 -6px;
    }

    .product__wrap .navigation__thumb .image,
    .product__wrap .navigation__thumb .image__additional {
        padding-bottom: 0;
        margin: 0 6px;
        display: flex;
        align-items: center;
    }

    .navigation__thumb .slick-next::before,
    .navigation__thumb .slick-prev::before {
        opacity: 1;
        color: var(--secondary);
        font-size: 25px;
        font-family: "Font AwesomeFree";
        font-weight: 900;
    }

    .product__wrap .slick-track {
        display: flex !important;
    }

    .product__wrap .navigation__thumb .video-link {
        display: flex;
        justify-content: center;
        width: auto;
    }

    .product__wrap .navigation__thumb .image__additional video {
        object-fit: contain;
        height: 100%;
        width: 100%;
        max-width: 49px;
    }

    .navigation__thumb .slick-next::before {
        content: "\f054";
    }

    .navigation__thumb .slick-prev::before {
        content: "\f053";
    }

    .body__options {
        height: auto;
    }

    .product__line {
        margin: 15px 0;
    }

    .thumbnail__block .automatic__sticker div,
    .thumbnail__block .handle__sticker div {
        font-size: 13px;
        padding: 5px 19px;
    }

    .product__wrap .thumbnail__block {
        max-width: 100%;
        margin-bottom: 12px;
    }

    .product__bodys .product__title h1 {
        font-size: 20px;
    }

    .product__bodys .product__tools .tools__count {
        margin-right: 40px;
    }

    .product__price .price-new {
        font-size: 25px;
    }

    .product__price .price-old {
        font-size: 14px;
    }

    .product__price .price-old:before {
        top: 7px;
    }

    .text__tohome {
        font-size: 14px;
    }

    .articles__panel .articles__control button,
    .related__panel .related__control button,
    .viewed__panel .viewed__control button {
        width: 40px;
        height: 40px;
    }

    .articles__panel .articles__control button svg,
    .related__panel .related__control button svg,
    .viewed__panel .viewed__control button svg {
        width: 8px;
    }

    .tab__block .specification__body {
        justify-content: space-between;
    }

    .tab__block .specification__body .specificaion__section {
        width: 44%;
    }

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

    #typeaccount .account__head h3,
    .buy__page .panel__heading {
        font-size: 14px;
    }

    .buy__page .choose__block span {
        margin-left: 0;
    }

    .buy__page .choose__block .payment__exclamation {
        margin-left: 13px;
    }

    .studio__item {
        margin-bottom: 15px;
    }

    .studio__info {
        padding: 15px 25px;
        min-width: 250px;
    }

    .studio__title {
        font-size: 18px;
    }

    .studio__address,
    .studio__contact,
    .studio__time {
        font-size: 13px;
    }

    .studio__img img {
        max-width: 150px;
    }

    .modal-sizes .remodal__content {
        max-width: 100%;
    }

    .modal-sizes .description-style h3 {
        font-size: 23px;
        margin-bottom: 20px;
    }

    .modal-sizes .description-style td {
        padding: 7px 11px;
    }

    .product__information {
        margin: 0 -15px;
    }

    .product__information .p__item {
        margin: 0 15px 30px;
    }

    .wash_faq_images img {
        max-width: 55px;
    }

    .contact__form form .group__block:first-child {
        margin: 0;
        flex-direction: column;
    }

    .contact__form form .group__block:first-child .form__group {
        margin: 0 0 20px;
        width: 100%;
    }

    .contact__info .info__item:nth-child(1) {
        max-width: 60%;
    }

    .contact__info .info__item:nth-child(2) {
        max-width: 40%;
    }

    .contact__info .info__item:nth-child(3) {
        max-width: 65%;
    }

    .contact__info .info__item:nth-child(4) {
        max-width: 35%;
    }

    .article__gallery .full {
        width: 100%;
    }

    .article__video iframe {
        height: 460px;
    }

    .contact__form-title,
    .info__item-title {
        font-size: 20px;
    }

    .contact__info .info__item .item__text a {
        font-size: 13px;
    }

    .button__contact input {
        height: 55px;
    }

    .product__body-title h2 {
        height: 100px;
    }

    .product__body-img {
        height: 320px;
    }

    .slide__main-1 .title {
        font-size: 25px !important;
    }

    .slide__main-2 .title {
        font-size: 40px !important;
        transform: translateX(40px) !important;
    }

    .slide__main-2 .subtitle {
        font-size: 25px !important;
    }

    .slide__main-3 .title {
        font-size: 30px !important;
    }

    .slide__main-3 .subtitle {
        font-size: 50px !important;
        display: flex;
        align-items: center;
    }

    .slide__main-3 .subtitle span {
        font-size: 20px !important;
        line-height: 25px !important;
    }

    .slide__main-3 .subtitle-2 {
        font-size: 14px !important;
    }

    .slide__main-4 .title {
        font-size: 30px !important;
    }

    .slide__main-4 .subtitle {
        font-size: 20px !important;
        transform: translateX(0px) !important;
    }

    .slide__main-5 .title,
    .slide__main-5 .title span {
        font-size: 35px !important;
    }

    .slide__main-5 .subtitle {
        font-size: 25px !important;
    }

    .slide__main-5 .subtitle-2 {
        font-size: 12px !important;
    }

    .slide__main-solid-1 .title {
        font-size: 35px !important;
    }

    .slide__main-solid-1 .subtitle,
    .slide__main-solid-1 .subtitle span {
        font-size: 40px !important;
    }

    .slide__main-solid-2 .title {
        font-size: 30px !important;
    }

    .slide__main-solid-2 .subtitle,
    .slide__main-solid-2 .subtitle-2 {
        font-size: 23px !important;
    }

    .slide__main-center .button,
    .slide__main-center .subtitle,
    .slide__main-center .subtitle-2,
    .slide__main-center .title {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .thumbnail__block .sticker-right-bottom {
        right: 30px;
        margin-bottom: 30px;
    }

    .product__body-title h2 {
        height: 121px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .product__wrap .media__item {
        height: 390px;
    }
}

@media (max-width: 894px) {
    .product__bodys .product__tools .tools__list {
        margin: 10px 0;
    }

    .custom-banner__block {}

    /* .information__description img {
        max-width: 50%;
    } */
}

@media (max-width: 768px) {
    .product__wrap .media {
        display: block;
    }

    .product__button.flex__wrap {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .product__wrap .media__item {
        height: auto;
        max-height: 600px;
    }

    .product__wrap .media__item img,
    .product__wrap .media__item video {
        position: relative;
    }

    .product__wrap .media__item a {
        padding-bottom: 0;
    }

    .product__body:hover {
        padding-bottom: 0;
    }

    .product__body-img {
        height: 280px;
    }

    .product__bodys .product__info .info-bg,
    .product__wrap .product__images {
        margin-bottom: 15px;
    }

    .product__ctabs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 15px 0;
    }

    .product__ctabs .tabs__links {
        margin-bottom: 15px;
    }

    .product__ctabs .tabs__links .tablinks {
        width: 100%;
        margin-right: 0;
    }

    .product__wrap .thumbnail__block {
        background-color: #efeff1;
    }

    .media .image img,
    .thumbnails .image img {
        margin: 0 auto;
    }

    .tab__block #reviews .reviews__form {
        max-width: auto;
        width: 100%;
    }

    .tab__block #reviews .reviews__form .review__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .tab__block #reviews .reviews__form .review__group {
        width: 100%;
    }

    .tab__block #reviews .reviews__form .review__bottom {
        margin-top: 15px;
    }

    .tab__block #reviews .button__review {
        margin: 0 auto;
    }

    .subscribes__block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .subscribes__left {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        width: 100%;
    }

    .subscribes__right {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        width: 100%;
        margin-top: 15px;
    }

    .categoty__block {
        margin: 30px 0 90px;
    }

    .categoty__block-top {
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        min-height: auto;
        margin-bottom: 0;
    }

    .product__tabs .categoty__block-top {
        margin-bottom: 21px;
    }

    .page__article .block__artilce {
        width: 100%;
    }

    .category__grid {
        display: none;
    }

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

    .register__body .register__block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .register__body form .form__group {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        width: 100%;
    }

    .input__block .required__symbol {
        display: none !important;
    }

    .categoty__block-top__title h2,
    .custom__banner-top__title h2 {
        font-size: 17px;
    }

    .categoty__block-top__arrows {
        display: none;
    }

    .brainlab__alert .alert__check,
    .brainlab__alert .fa-check-circle,
    .brainlab__alert .fa-exclamation-circle {
        display: none;
    }

    .brainlab__alert {
        padding: 15px 40px 15px 15px;
    }

    .brainlab__alert button {
        margin: 10px auto 0;
        width: 15px;
        height: 15px;
        font-size: 11px;
        position: absolute;
        top: 0;
        right: 15px;
    }

    .product__body-button button span {
        line-height: 20px;
    }

    .product__wrap .thumbnail__block {
        max-width: 400px;
        width: 100%;
    }

    #ocfilter {
        display: none;
    }

    .ocf-option-values .price__form .form-inline .form-group {
        margin-left: 0;
    }

    .mobile__filter {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    #ocfilter .popover {
        left: 0 !important;
    }

    .article__thumb .article__image {
        padding: 0;
    }

    .article__thumb .article__image_inner {
        position: relative;
    }

    .article__thumb .article__image img {
        width: 19%;
    }

    .article__thumb .article__image a.link-image {
        padding: 20px 0;
    }

    .article__thumb .article__image h3 a {
        font-size: 20px;
    }

    .article__block .article__info {
        padding: 20px;
    }

    .tmdqc-tmdcheckout .success__title {
        height: auto;
        padding: 20px;
    }

    .tmdqc-tmdcheckout .success__title h1 {
        font-size: 14px;
    }

    .category__block-bottom__body .wrap {
        padding-bottom: 0;
    }

    .category__block-bottom__body .wrap-inner {
        flex-direction: column;
        position: relative;
    }

    .category__block-bottom__body .first {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .category__block-bottom__body img {
        position: relative;
    }

    .category__block-bottom__body .other-cats {
        width: 100%;
    }

    .category__block-bottom__body h3 {
        font-size: 14px;
    }

    .category__block-bottom__body .other-cats h3 {
        display: flex;
        font-size: 12px;
    }

    .category__block-bottom__body a {
        padding: 15px;
        background: rgba(0, 0, 0, 0.4);
    }

    .categoty__block-top__title {
        margin-bottom: 20px;
    }

    .categoty__block-top__menu {
        margin-right: auto;
    }

    .categoty__block-top__menu li a {
        padding-top: 0;
        padding-bottom: 10px;
        font-size: 13px;
    }

    .product__tabs {
        margin-bottom: 90px;
    }

    .zsu_sticker {
        left: -10px;
    }

    .zsu_sticker.sale {
        top: 20px;
    }

    .automatic__sticker,
    .handle__sticker {
        top: 0;
        left: 0;
    }

    .automatic__sticker .popular__sticker,
    .handle__sticker .inner__sticker,
    .handle__sticker .popular__sticker {
        margin-bottom: 5px;
        font-size: 11px;
        padding: 1px 8px;
    }

    .product__body-title h2 {
        height: 138px;
    }

    .product__body-title,
    .product__body:hover .product__body-title {
        margin-bottom: 10px;
    }

    /* .product__body-title h2 a {
        font-size: 16px;
    } */

    .product__body-reviews {
        margin-top: 0;
        margin-bottom: 25px;
    }

    .product__body:hover .product__body-footer {
        position: relative;
    }

    .product__body-reviews__rating .fa-star {
        width: 12px;
        height: 12px;
    }

    .product__body-price__price .price-new {
        font-size: 16px;
        margin-right: 22px;
    }

    .currency__symbol {
        font-size: 14px;
    }

    .product__body-price__price .price-old {
        font-size: 14px;
    }

    .product__body-price__price .price-old .currency__symbol {
        font-size: 12px;
    }

    .product__body:hover .product__body-button,
    .product__body:hover .product__body-options,
    .product__body:hover .product__body-pds,
    .product__body:hover .product__body-sizes {
        display: none;
    }

    .custom__banner {
        padding-bottom: 90px;
    }

    .has-description .custom__banner {
        margin-bottom: 0;
    }

    .custom-banner__block {}

    .custom-banner__block h2,
    .custom-banner__block h3 {
        font-size: 14px;
        line-height: 1.4;
    }

    .custom-banner__block a {
        margin-top: auto;
    }

    .description {
        margin: 0 0 60px;
    }

    .subscribes {
        padding: 35px 0;
    }

    .subscribes__left .svg {
        display: none;
    }

    .subscribes__left h3 {
        font-size: 17px;
        text-align: center;
    }

    .subscribes__right {
        margin-top: 35px;
    }

    .subscribes__filed {
        flex-direction: column;
    }

    .subscribes__input {
        padding: 0 15px;
        font-size: 10px;
        text-align: center;
        margin-bottom: 13px;
    }

    .subscribes__button {
        width: 164px;
        font-size: 12px;
    }

    .footer-top__menu-block h3 {
        font-size: 13px;
    }

    .footer-top__menu-block ul li a {
        font-size: 12px;
    }

    .footer-top__menu-block ul li {
        margin-bottom: 11px;
    }

    .footer-top__main .footer-top__main-logotip {
        width: 88px;
        margin-bottom: 15px;
    }

    .footer-top__main-payment {
        margin-bottom: 15px;
    }

    .footer-top__main-payment-item {
        margin-right: 10px;
    }

    .footer-top__main-payment img {
        max-width: 30px;
    }

    .footer-top__main .footer-top__main-description p {
        font-size: 12px;
    }

    .footer-top__menu-block.footer-top__main-link:last-child {
        padding: 0;
        border-bottom: 0;
    }

    .footer-top__menu-block.footer-top__main-link h3 {
        margin-bottom: 13px;
    }

    .footer-bottom {
        height: 52px;
    }

    .footer-bottom a,
    .footer-bottom p {
        font-size: 10px;
    }

    #ocfilter {
        margin-top: 10px;
    }

    .ocf-option-name {
        font-size: 14px !important;
    }

    .description__body .description__text {
        padding-left: 20px;
    }

    .product__pds-title {
        margin-bottom: 15px;
    }

    .product__pds {
        margin-bottom: 15px;
    }

    .product__pds-items {
        display: flex;
        max-width: 95%;
        margin: 0 auto;
    }

    .product__pds-items .slick-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .product__pds-items .slick-arrow.prev {
        left: -15px;
    }

    .product__pds-items .slick-arrow.next {
        right: -15px;
    }

    .product__pds-item {
        margin-right: 9px;
        margin-bottom: 0;
    }

    .product__pds-img img {
        width: 58px;
        height: 58px;
    }

    .product__options .control-label {
        margin-bottom: 10px;
    }

    .custom-radio + label {
        min-width: 70px;
    }

    ul.breadcrumb {
        display: block;
    }

    ul.breadcrumb li {
        display: inline;
    }

    .tab__block {
        padding: 15px 0 0;
        margin: 0 0 20px;
    }

    .tab__block #reviews .reviews__title,
    .tab__block #specification h2,
    .tab__block h2 {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .articles__panel h3,
    .related__panel h3,
    .viewed__panel h3 {
        line-height: 1;
        font-size: 17px;
        margin-bottom: 0;
    }

    .articles__panel,
    .related__panel,
    .viewed__panel {
        margin-bottom: 20px;
    }

    .tab__block .specification__body {
        flex-direction: column;
    }

    .tab__block .specification__body .specificaion__section {
        width: 100%;
    }

    .articles__panel h3,
    .related__panel h3,
    .viewed__panel h3 {
        font-size: 17px;
    }

    #cart-article-recommend,
    #cart-article-recommend.slick-dotted.slick-slider,
    #cart-product-related,
    #cart-product-related.slick-dotted.slick-slider,
    .viewed__product,
    .viewed__product.slick-dotted.slick-slider {
        margin: 0 -10px 90px;
    }

    .articles__panel .articles__control,
    .related__panel .related__control,
    .viewed__panel .viewed__control {
        display: none;
    }

    .category__block-bottom .slick-list {
        height: auto !important;
    }

    .remodal {
        max-width: 90%;
        margin-bottom: 0;
        padding: 20px 20px 25px;
    }

    .buyclick__wrap h3,
    .remodal__title {
        font-size: 19px;
        margin-bottom: 25px;
    }

    .remodal-close:before {
        background-size: 25px;
    }

    .buyclick__field,
    .remodal__callback .modal__callback-form .input__block {
        margin-bottom: 15px;
    }

    .buyclick__field input,
    .remodal__callback .modal__callback-form .input__block input {
        height: 45px;
        padding: 0 15px;
    }

    .buyclick__button,
    .modal-notify-goods button[type="submit"],
    .remodal__callback .modal__callback-form .input__button {
        height: 55px;
        font-size: 13px;
        margin-top: 30px;
    }

    .remodal__content {
        font-size: 14px;
    }

    .body__options,
    .product__body-reviews__title {
        display: none;
    }

    .product-studios__item {
        flex-direction: column;
    }

    .product-studios__left {
        padding: 10px 10px 0;
        border-bottom: 0;
    }

    .product-studios__right {
        padding: 10px;
        border-top: 0;
    }

    .product-studios__item + .product-studios__item .product-studios__left {
        border-top: 0;
    }

    .studio__info {
        min-width: 200px;
    }

    .modal-sizes .description-style {
        overflow: auto;
    }

    .modal-sizes .description-style h3 {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .modal-sizes .description-style td {
        padding: 7px 11px;
        white-space: nowrap;
    }

    .product__tables {
        align-items: flex-end;
        margin-left: 25px;
    }

    .product__bodys .product__price {
        margin-right: 0;
    }

    .product__bodys .product__button.out .product__tools {
        margin-left: auto;
    }

    .product__button.out .btn__notify-goods {
        margin-right: 0 !important;
        padding: 0 10px;
    }

    .tab__block .tab__content > h2 {
        margin-bottom: 15px;
    }

    .tab__block #reviews .reviews__title {
        margin-bottom: 15px;
    }

    .contact__info .info__item:nth-child(1) {
        max-width: 100%;
    }

    .contact__info .info__item:nth-child(2) {
        max-width: 100%;
    }

    .contact__info .info__item:nth-child(3) {
        max-width: 100%;
    }

    .contact__info .info__item:nth-child(4) {
        max-width: 100%;
    }

    .category__limit {
        display: none;
    }

    .information__description tbody,
    .information__description td,
    .information__description tr {
        display: flex;
        flex-direction: column;
        width: 100% !important;
        height: auto !important;
    }

    .information__description img {
        float: none !important;
        margin: 10px auto;
        height: auto;
    }

    .table__tmdcart .tmdcart__head {
        display: none;
    }

    #quick-checkout #tmd_cart table tr {
        display: flex;
        flex-wrap: wrap;
        position: relative;
    }

    #quick-checkout #tmd_cart table tr th {
        width: 100%;
    }

    .table__tmdcart {
        display: flex;
        flex-direction: column;
    }

    .table__tmdcart thead {
        margin-bottom: 20px;
    }

    .tmdcart__body .column__name {
        width: 80%;
        min-width: 80%;
    }

    .table__tmdcart .tmdcart__body td.column__name {
        align-items: flex-start;
    }

    .tmdcart__img {
        width: 85px;
    }

    .tmdcart__img img {
        margin: 0;
    }

    .tmdcart__body .column__img {
        width: auto;
    }

    .tmdcart__body .column__quantity,
    .tmdcart__body .column__total {
        margin-top: 10px;
    }

    .column__quantity {
        margin-left: 85px;
    }

    .tmdcart__body .tmdcart__info {
        padding: 0;
    }

    .tmdcart__body .tmdcart__info .tmdcart__model {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .tmdcart__body .tmdcart__info a {
        font-size: 13px;
        font-weight: bold;
        margin-bottom: 0;
    }

    .tmdcart__body .column__total {
        display: flex;
        align-items: center;
        margin-left: 20px;
    }

    .tmdcart__body .column__delete {
        position: absolute;
        right: 0;
        top: 0;
    }

    .tmdcart__body .tmdcart__delete .delete__title {
        display: none;
    }

    .tmdcart__body .tmdcart__delete .delete__button {
        width: auto;
    }

    .tmdcart__body .empty__table {
        margin: 20px 0;
        height: 1px;
    }

    .button__buy-confirm {
        width: 100%;
        max-width: 100%;
    }

    .buy__page .choose__block:last-of-type {
        margin-bottom: 0;
    }

    .tp-caption.button {
        padding: 5px 10px !important;
        font-size: 13px !important;
        display: none !important;
    }

    .slide__main-1 .title {
        font-size: 18px !important;
        transform: translateX(-145px) !important;
    }

    .slide__main-2 .title {
        font-size: 28px !important;
        transform: translateX(-135px) !important;
    }

    .slide__main-2 .subtitle {
        font-size: 14px !important;
        transform: translateX(0px) !important;
    }

    .slide__main-3 .title {
        font-size: 21px !important;
        transform: translateX(-190px) !important;
    }

    .slide__main-3 .subtitle {
        font-size: 24px !important;
        transform: translateX(0px) !important;
    }

    .slide__main-3 .subtitle span {
        font-size: 15px !important;
        line-height: 12px !important;
    }

    .slide__main-3 .subtitle-2 {
        font-size: 13px !important;
        transform: translate(-200px, -20px) !important;
    }

    .slide__main-4 .title {
        font-size: 20px !important;
        transform: translateX(-244px) !important;
    }

    .slide__main-4 .subtitle {
        font-size: 15px !important;
        transform: translateX(-200px) !important;
    }

    .slide__main-5 .title {
        width: 100%;
        justify-content: center;
    }

    .slide__main-5 .title,
    .slide__main-5 .title span {
        font-size: 21px !important;
    }

    .slide__main-5 .subtitle {
        font-size: 15px !important;
        width: 100%;
        justify-content: center;
        transform: translate(-50%, -16%) !important;
    }

    .slide__main-5 .subtitle-2 {
        font-size: 12px !important;
        width: 100%;
        justify-content: center;
        max-width: 100% !important;
        padding: 0 10px !important;
    }

    .slide__main-solid-1 .title {
        font-size: 25px !important;
    }

    .slide__main-solid-1 .subtitle,
    .slide__main-solid-1 .subtitle span {
        font-size: 45px !important;
    }

    .slide__main-solid-2 .title {
        font-size: 25px !important;
    }

    .slide__main-solid-2 .subtitle,
    .slide__main-solid-2 .subtitle-2 {
        font-size: 20px !important;
    }

    .slide__main-center .button,
    .slide__main-center .subtitle,
    .slide__main-center .subtitle-2,
    .slide__main-center .title {
        left: 50% !important;
        transform: translateX(-50%) !important;
        justify-content: center;
    }

    .pagination__block .pagination li.next__page,
    .pagination__block .pagination li.prev__page {
        display: none;
    }

    .thumbnail__block .sticker-right-bottom {
        right: 0;
        margin-bottom: 0;
    }

    .remodal-notcall__title {
        font-size: 19px;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .remodal-notcall__text {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .remodal-notcall__btns {
        flex-direction: column;
    }

    .remodal-notcall__btn {
        height: 50px;
    }

    .remodal-notcall__btn-yes {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .iSearchBox ul {
        overflow: auto !important;
        max-height: 72vh;
    }

    .iSearchBox ul li {
        padding: 5px 15px;
        margin-bottom: 5px;
    }

    .product__bodys .product__wrap-stock {
        flex-direction: row;
        align-items: center;
    }

    .text-tdmcart-warning {
        font-size: 14px;
    }

    #description li > ul {
        padding-top: 10px;
        padding-left: 24px;
    }

    .information__description li > ul {
        padding-top: 10px;
        padding-left: 24px;
    }

    .description-style li > ul {
        padding-top: 10px;
        padding-left: 24px;
    }
}

@media (max-width: 576px) {
    .footer-top__menu-block ul,
    .mobile__footer-contacts {
        display: none;
    }

    .footer-top__main .footer-top__main-description p {
        width: 100%;
    }

    .footer-top__contacts-block h3,
    .footer-top__menu-block h3 {
        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;
        margin-bottom: 0;
    }

    .footer-top__contacts-block span,
    .footer__mobile-control span {
        display: block;
    }

    .footer-top__contacts-block,
    .footer-top__menu-block {
        padding: 20px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .footer-top__menu-block.top__menu-first {
        border-top: 1px solid #e5e5e5;
    }

    .footer-top__menu-block:last-child {
        border-bottom: 1px solid #e5e5e5;
    }

    .footer-top {
        padding-bottom: 10px;
        padding-top: 30px;
    }

    .footer-top__menu-block ul,
    .mobile__footer-contacts.footer_menu4 {
        margin-top: 20px;
    }

    .footer__mobile-control {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .contact__form form .form__group {
        width: 100%;
    }

    .description__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .description__body .description__thumb {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        margin: 0 auto 20px;
    }

    .description__body .description__text {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        padding: 0;
    }

    .reward__block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .address__info .address__item,
    .reward__block .reward__item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .account__block .block__title {
        padding: 29px 20px;
    }

    .account__form {}

    .footer-top .container .row div:nth-child(1) {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .footer-top__main {
        margin-top: 29px;
    }

    .body__options,
    .product__body-reviews__title {
        display: none;
    }

    .answer__block,
    .reviews__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .answer__block .answer__top,
    .reviews__item .review__author {
        padding: 40px 20px 0;
    }

    .answer__block .answer__text,
    .reviews__item .review__body {
        padding: 40px 20px;
    }

    .info__modal h2 {
        padding: 29px 60px 8px 20px;
        font-size: 18px;
    }

    .info__modal .remodal__text .jspContainer,
    .info__modal .remodal__text .jspPane {
        padding: 29px 60px 29px 20px !important;
    }

    #typeaccount .account__head,
    .buy__page .panel__body,
    .buy__page .panel__heading {
        padding: 20px;
    }

    .buy__page .table__title {
        padding: 20px;
    }

    .confirmation__details .details__item .details__text {
        font-size: 16px;
    }

    .tmdcart__body .column__name {
        width: 69%;
        min-width: 69%;
    }

    .table__tmdcart .tmdcart__head {
        display: none;
    }

    .table__tmdcart .tmdcart__body td {
        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;
    }

    .tmdcart__body .tmdcart__info {
        padding: 0;
        text-align: left;
    }

    .tmdcart__body .tmdcart__delete {
        margin: 0 auto;
    }

    .tmdcart__body .column__img {
        max-width: initial;
        width: auto;
    }

    .tmdcart__body .tmdcart__delete,
    .tmdcart__img {
        margin: 0 auto;
    }

    .coupon__block .form__coupon {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .coupon__block .form__coupon .button__coupon {
        margin-bottom: 10px;
    }

    .footer__col-social {
        order: 6;
    }

    .categoty__block-top {
        align-items: flex-start;
    }

    .categoty__block-top__title h2,
    .custom__banner-top__title h2 {
        font-size: 17px;
    }

    .product-layout {
        margin-bottom: 20px;
    }

    .category__sorting {
        margin-right: 0;
        width: 100%;
        margin-bottom: 10px;
    }

    .remodal__content {
        max-width: 100%;
    }

    .buyclick__wrap h3,
    .remodal__title {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .buyclick__field input {
        height: 40px;
        padding: 0 12px;
    }

    .buyclick__button,
    .modal-notify-goods button[type="submit"] {
        height: 50px;
        width: 100%;
        margin-top: 20px;
    }

    .tab__block #reviews .reviews__form {
        padding: 20px;
    }

    .button__buy-confirm {
        max-width: 100%;
    }

    .studio__item {
        flex-wrap: wrap;
    }

    .studio__img {
        min-width: 100%;
        justify-content: center;
        display: flex;
        padding-top: 15px;
    }

    .studio__info {
        padding: 15px;
    }

    .coupon__block {
        padding: 20px;
    }

    .coupon__block .form__coupon input[type="text"] {
        margin-bottom: 10px;
    }

    .coupon__block .form__coupon .button__coupon {
        margin-bottom: 0;
        width: 100%;
    }

    .product__body-title h2 {
        height: auto;
    }
}

@media (max-width: 575px) {
    /* .viewed__product .product__body-img {
        height: 550px;
    } */

    .content__category .product__body-img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .product__bodys .product__button {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .contact__form-title,
    .info__item-title {
        font-size: 18px;
    }

    .info__item-title {
        margin-bottom: 15px;
    }

    .studion__headline {
        font-size: 20px;
    }

    .product__bodys .product__button.out {
        -webkit-box-direction: normal;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .product__bodys .product__button.out .product__tools {
        margin-right: auto;
    }

    .product__bodys .product__button.out {
        margin-top: 0;
    }

    .product__bodys .product__button.out .product__tools .tools__list {
        margin-bottom: 15px;
    }

    .product__bodys .btn__notify-goods,
    .product__bodys .product__button .buy__oneclick,
    .product__bodys .product__button .buy__tocart {
        width: 100%;
        margin-right: 0;
    }

    .product__bodys .product__button .buy__tocart {
        margin-bottom: 10px;
    }

    .contact__info {
        width: 100%;
    }

    .contact__info .info__item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .order__middle .left__block,
    .order__middle .right__block {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .ui-tabs .ui-tabs-nav li {
        width: 100%;
    }

    .additional__top input {
        width: 100%;
    }

    .select__input {
        width: 100%;
    }

    .history__block .item__history {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .history__block .item__history .item__block {
        margin: 5px 0;
    }

    .g-recaptcha iframe {
        width: 100%;
        transform: scale(0.7);
        transform-origin: left;
    }

    #popular-article-v {
        margin: 0;
    }

    .product__information {
        flex-direction: column;
    }

    .information__title h1 {
        font-size: 20px;
    }

    .information__description h2 {
        font-size: 18px;
    }

    .information__description h3 {
        font-size: 17px;
    }

    .information__description h4 {
        font-size: 17px;
    }

    .information__description ol li,
    .information__description ul li {
        font-size: 14px;
    }

    .page__article .information__title h1 {
        font-size: 18px;
    }

    .article__video iframe {
        height: 360px;
    }

    .product__wrap .media__item {
        height: auto;
    }
}

@media (max-width: 440px) {
    .product__wrap .media__item {
        height: auto;
        max-height: 420px;
    }
}

@media (max-width: 420px) {
    /* .product__body-img {
        height: 420px;
    } */

    .articles__panel .articles__control,
    .related__panel .related__control,
    .viewed__panel .viewed__control {
        margin: 0 auto;
    }

    .tab__block #reviews .review__star label {
        width: 100%;
        margin-bottom: 10px;
    }

    .studio__time {
        padding-right: 0;
    }

    .subscribes__filed {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .subscribes__button {
        margin-top: 15px;
    }

    .wishlist__info .wishlist__item:nth-child(2),
    .wishlist__info .wishlist__item:nth-child(3),
    .wishlist__info .wishlist__item:nth-child(4),
    .wishlist__info .wishlist__item:nth-child(5) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .wishlist__info .wishlist__item .item__text {
        text-align: center;
    }

    .input__block .date {
        max-width: 80%;
    }

    .mobile__tools .dropdown-language__block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .category__sorting .sorting__list {
        width: 100%;
    }

    .product__price-tables {
        flex-direction: column;
    }

    .product__price-tables .product__bodys .product__price {
        width: 100%;
    }

    .product__bodys .product__price {
        margin-bottom: 20px;
    }

    .remodal-close,
    .remodal-close.product__remodal-close {
        right: 0;
        top: 0;
    }

    .studio__contact,
    .studio__info {
        width: 100%;
        padding: 15px;
        text-align: center;
        justify-content: center;
    }

    .studio__contact {
        padding-top: 0;
    }

    .product__tables {
        align-items: flex-start;
    }

    .wash_faq_images img {
        max-width: 45px;
    }

    .article__video iframe {
        height: 280px;
    }

    .page__article .information__title h1 {
        font-size: 17px;
    }

    .slide__main-1 .title {
        font-size: 13px !important;
        transform: translateX(-95px) !important;
    }

    .slide__main-2 .title {
        font-size: 17px !important;
        transform: translateX(-80px) !important;
    }

    .slide__main-2 .subtitle {
        font-size: 12px !important;
        transform: translateX(-4px) !important;
    }

    .slide__main-3 .title {
        font-size: 18px !important;
        transform: translateX(-140px) !important;
    }

    .slide__main-3 .subtitle {
        font-size: 20px !important;
        transform: translateX(-30px) !important;
    }

    .slide__main-3 .subtitle span {
        font-size: 13px !important;
        line-height: 12px !important;
    }

    .slide__main-3 .subtitle-2 {
        font-size: 11px !important;
        transform: translate(-130px, -20px) !important;
    }

    .slide__main-4 .title {
        font-size: 17px !important;
        transform: translateX(-164px) !important;
    }

    .slide__main-4 .subtitle {
        font-size: 13px !important;
        transform: translateX(-137px) !important;
    }

    .slide__main-5 .title,
    .slide__main-5 .title span {
        font-size: 15px !important;
    }

    .slide__main-5 .subtitle {
        font-size: 13px !important;
        transform: translate(-50%, -7px) !important;
    }

    .slide__main-5 .subtitle-2 {
        font-size: 5px !important;
    }

    .slide__main-solid-1 .title {
        font-size: 16px !important;
    }

    .slide__main-solid-1 .subtitle,
    .slide__main-solid-1 .subtitle span {
        font-size: 25px !important;
    }

    .slide__main-solid-2 .title {
        font-size: 16px !important;
    }

    .slide__main-solid-2 .subtitle,
    .slide__main-solid-2 .subtitle-2 {
        font-size: 15px !important;
    }

    .slide__main-center .button,
    .slide__main-center .subtitle,
    .slide__main-center .subtitle-2,
    .slide__main-center .title {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .categoty__block-top__menu .nav-tabs {
        line-height: 2;
    }
}

@media (max-width: 350px) {
    .slide__main-1 .title {
        font-size: 13px !important;
        transform: translateX(-95px) !important;
    }

    .slide__main-2 .title {
        font-size: 17px !important;
        transform: translateX(-60px) !important;
    }

    .slide__main-2 .subtitle {
        font-size: 11px !important;
        transform: translateX(-4px) !important;
    }

    .slide__main-3 .title {
        font-size: 18px !important;
        transform: translateX(-120px) !important;
    }

    .slide__main-3 .subtitle {
        font-size: 20px !important;
        transform: translateX(-30px) !important;
    }

    .slide__main-3 .subtitle span {
        font-size: 13px !important;
        line-height: 12px !important;
    }

    .slide__main-3 .subtitle-2 {
        font-size: 11px !important;
        transform: translate(-100px, -20px) !important;
    }

    .slide__main-4 .title {
        font-size: 17px !important;
        transform: translateX(-144px) !important;
    }

    .slide__main-4 .subtitle {
        font-size: 13px !important;
        transform: translateX(-124px) !important;
    }

    .slide__main-center .button,
    .slide__main-center .subtitle,
    .slide__main-center .subtitle-2,
    .slide__main-center .title {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

.text_slide-1 {
    font-size: 45px !important;
    color: #000;
    font-family: var(--font);
    line-height: 50px !important;
}

.text_slide-1 span {
    font-family: var(--font);
}

.text_slide-2 span {
    color: #fff;
    font-family: "Opensans Semibold", sans-serif;
    margin-bottom: 10px !important;
    font-size: 14px !important;
    line-height: 19px !important;
    display: block;
    position: relative;
    font-weight: 600;
}

.text_slide-2 span:before {
    content: "";
    width: 9px;
    height: 9px;
    background: #5c227f;
    display: block;
    border-radius: 50%;
    position: absolute;
    left: -16px;
    top: 5px;
}

.tp-bullets {
    display: none;
    bottom: 30px !important;
    margin: 0 !important;
    z-index: 300 !important;
}

.tp-bullets.simplebullets.round div.bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
    margin: 0 5px;
    opacity: 1;
    background: transparent;
}

.tp-bullets.simplebullets.round div.bullet.selected {
    background: #fff;
}

.tp-leftarrow.default {
    opacity: 0;
    background: url("/system/config/revslider/rs-plugin/assets/slider_rright-2.png") no-repeat 0 0 !important;
}

.tp-rightarrow.default {
    opacity: 0;
    background: url("/system/config/revslider/rs-plugin/assets/slider_rleft-2.png") no-repeat 0 0 !important;
}

.rev_slider_wrapper:hover .tp-leftarrow.default,
.rev_slider_wrapper:hover .tp-rightarrow.default {
    opacity: 1;
}

@media (max-width: 1439px) {
    .text_slide-1 {
        top: 150px !important;
        font-size: 35px !important;
        line-height: 40px !important;
    }

    .tp-caption.accent2.tp-fade.tp-resizeme.start {
        top: 280px !important;
        transform: translateX(-20px) !important;
    }
}

@media (max-width: 1199px) {
    .text_slide-1 {
        top: 140px !important;
        font-size: 30px !important;
        line-height: 35px !important;
    }

    .tp-caption.accent2.tp-fade.tp-resizeme.start {
        top: 240px !important;
    }

    .tp-caption.accent2 {
        width: 200px !important;
        height: 50px !important;
    }

    .text_slide-2 span {
        font-size: 12px !important;
        line-height: 17px !important;
    }
}

@media (max-width: 991px) {
    .text_slide-1 {
        font-size: 25px !important;
        line-height: 30px !important;
        top: 40% !important;
        transform: translateY(-50%) !important;
    }

    .account__page {
        padding-left: 0;
        padding-right: 0;
    }

    .account .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .account__info-part svg {
        max-width: 6px;
    }

    .tp-caption.accent2.tp-fade.tp-resizeme.start {
        top: 60% !important;
        transform: translateY(-50%) !important;
    }

    .text_slide-2 {
        top: 180px !important;
    }

    .text_slide-2 span {
        font-size: 12px !important;
        line-height: 17px !important;
    }

    .tp-caption.accent2 {
        width: 160px !important;
        height: 40px !important;
    }
}

@media (max-width: 767px) {
    .tp-bullets {
        display: flex;
        bottom: 15px !important;
        margin: 0;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .tp-caption {
        width: 100%;
        text-align: center;
    }

    .text_slide-1 {
        font-size: 16px !important;
        line-height: 25px !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        text-align: center;
    }

    .text_slide-1 b {
        font-size: 16px !important;
    }

    .text_slide-2 {
        top: 125px !important;
    }

    .text_slide-2 span {
        font-size: 12px !important;
        line-height: 17px !important;
    }

    .tp-caption.accent2.tp-fade.tp-resizeme.start {
        display: flex;
        font-weight: bold;
        font-size: 12px !important;
        border: 0;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        height: 100% !important;
    }

    .tp-caption.accent2.tp-fade.tp-resizeme.start:hover {
        background: transparent;
        border: 0;
    }

    .slider__button {
        opacity: 0;
    }
}

.tp-caption {
    font-family: var(--font);
    color: #fff;
    font-weight: 400;
    text-align: center;
}

.tp-caption b {
    font-family: var(--font);
}

.custom__banner {
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
}

.lin__block {
    margin-top: 21px;
}

.footer-top__menu-block.lin__block h3 {
    margin-bottom: 20px;
}

.dropdown__mobile {
    display: none;
    width: 100%;
    height: 100%;
    padding: 0 0 5px;
}

.mobile__catalog .nav__menu li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.dropdown__arrow-mobile {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.nav__mobile-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.dropdown__arrow-mobile.rotate__icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* -- Product timer */
.block__separator {
    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;
}

.block__separator .separator__left,
.block__separator .separator__right {
    width: 50%;
}

.sticky__timer {
    display: none;
    position: absolute;
    z-index: 999;
    bottom: 0;
    width: 100%;
    background-color: #fff;
}

.sticky__timer .specials__timer {
    max-width: 100%;
}

.specials__timer {
    max-width: 369px;
    width: 100%;
    height: 67px;
    border: 2px solid var(--accent);
}

.specials__timer .timer {
    height: 100%;
    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;
    padding: 10px;
}

.specials__timer .timer > div {
    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: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.specials__timer .timer > div span:first-child {
    font-family: var(--font);
    font-weight: 700;
    font-size: 22px;
    color: #363636;
}

.specials__timer .timer .timer__text {
    font-family: var(--font);
    font-weight: 600;
    font-size: 12px;
    color: #363636;
    opacity: 0.5;
    margin-top: 5px;
}

.specials__timer .timer__separator {
    margin: 0 12px 21px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 22px;
    color: #363636;
}

.timer__second .second__count {
    color: var(--accent) !important;
}

.price__pds {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 23px;
}

.price__pds .title__pds {
    font-family: var(--font);
    font-weight: 600;
    font-size: 13px;
    color: var(--gaccent);
    margin-right: 12px;
}

.pds__select {
    position: relative;
    min-width: 150px;
    max-width: 250px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 21px;
    padding: 0 18px;
    background-color: var(--glaccent);
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    color: var(--gaccent);
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.pds__select::after {
    content: url("/image/catalog/icons/icon_selected_down.svg");
    position: absolute;
    top: 50%;
    right: 22px;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.pds__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    width: 100%;
    display: none;
    padding: 14px 18px;
    background-color: var(--glaccent);
    border-radius: 21px;
    margin-top: 5px;
}

.pds__dropdown .pds__options {
    display: block;
    margin-bottom: 12px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    color: var(--gaccent);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.pds__dropdown .pds__options:last-child {
    margin-bottom: 0;
}

.pds__dropdown .pds__options:hover {
    color: var(--secondary);
}

/* Block sets */
.col__sets .owl-wrapper-outer {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.col__sets .owl-carousel {
    margin: 0 0 6%;
}

.col__sets .setb1 input[type="checkbox"] {
    display: none;
}

.col__sets .open-options {
    display: none;
}

.col__sets .sets .cell.ao {
    margin: 0 62px;
}

.col__sets .sets .set-product h4 {
    margin: 18px 0;
}

.col__sets .sets .set-product h4 a {
    font-family: var(--font);
    font-weight: 700;
    font-size: 15px;
    color: #363636;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.col__sets .sets .set-product h4 a:hover {
    color: var(--secondary);
}

.col__sets .new_price {
    font-family: var(--font);
    font-weight: 700;
    font-size: 25px;
    color: var(--accent);
    margin-bottom: 26px;
}

.col__sets .economy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.col__sets .set-total.set-total-cell {
    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: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.col__sets .economy_text {
    font-family: var(--font);
    font-weight: 700;
    font-size: 20px;
    color: var(--accent);
    opacity: 0.8;
    margin-bottom: 12px;
}

.col__sets .set-total.set-total-cell .new_summ {
    font-family: var(--font);
    font-weight: 700;
    font-size: 18px;
    color: var(--accent);
    opacity: 0.8;
    margin-bottom: 36px;
}

.buy__tocart-set {
    width: 369px;
    height: 64px;
    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;
    border: 2px solid var(--accent);
    background-color: var(--accent);
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.buy__tocart-set .icon__click {
    margin-right: 14px;
}

.buy__tocart-set:focus,
.buy__tocart-set:hover {
    background-color: #fff;
    color: var(--accent);
}

.buy__tocart-set .icon__click svg path {
    fill: #fff;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.buy__tocart-set:focus .icon__click svg path,
.buy__tocart-set:hover .icon__click svg path {
    fill: var(--accent);
}

.gift__title {
    text-transform: uppercase;
}

.gift__price {
    max-width: 233px;
    margin-left: auto;
    text-align: center;
}

.min__block {
    display: none;
    padding: 20px 10px;
    color: #ff3e3e;
    font-family: var(--font);
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
}

.min__block.is__error {
    border: 2px solid #e74c3c;
}

.description-style {
    line-height: 1.7;
    font-size: 14px;
    color: #535353;
}

.description-style h1,
.description-style h2,
.description-style h3,
.description-style h4,
.description-style h5,
.description-style h6 {
    margin-bottom: 20px;
}

.description-style ol,
.description-style p,
.description-style ul {
    color: #535353;
    font-size: 14px;
    margin-bottom: 20px;
}

.description-style ol,
.description-style ul {
    padding-left: 15px;
}

.description-style ol:last-child,
.description-style p:last-child,
.description-style ul:last-child {
    margin-bottom: 0;
}

.description-style p {
    line-height: 1.5;
}

.description-style ul {
    list-style: initial;
}

.description-style ol {
    list-style: decimal;
}

.description-style li {
    margin-bottom: 5px;
    line-height: 1.5;
}

.description-style td {
    padding: 5px 10px;
}

.article__description li:before {
    content: none;
}

.article__description li {
    margin-bottom: 5px;
}

.article__description ul {
    list-style: initial;
}

.article__description li {
    padding-left: 0;
}

#description h2,
#description h3,
#description h4,
#description h5,
#description h6 {
    margin-bottom: 20px !important;
}

.description-style h1 {
    font-size: 60px;
}

.description-style h2 {
    font-size: 45px;
}

.description-style h3 {
    font-size: 25px;
}

.description-style h4 {
    font-size: 22px;
}

.description-style h5 {
    font-size: 18px;
}

.description-style h6 {
    font-size: 16px;
}

button {
    box-shadow: none !important;
    outline: none !important;
}

#mwHook {
    display: flex;
    max-width: 100%;
    overflow: hidden;
}

#mw-default {
    padding-right: 0 !important;
}

#mwHook .modal:before {
    display: none !important;
}

#mwHook .modal-dialog {
    margin-right: auto !important;
}

#mwHook .modal-title {
    text-align: center;
    width: 100%;
}

#mwHook .modal-header .close {
    position: absolute;
    right: 1rem;
}

.modal-backdrop {
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
}

.category__description-top {
    margin-bottom: 15px;
}

.category__description-top-text {
    max-width: 100%;
    background: #ffd6d0;
    padding: 14px;
    line-height: 1.21;
}

.slider .video__block {
    object-fit: cover;
}

@media (max-width: 1400px) {
    .description-style h1 {
        font-size: 40px;
    }

    .description-style h2 {
        font-size: 28px;
    }

    .description-style h3 {
        font-size: 22px;
    }

    .description-style h4 {
        font-size: 20px;
    }

    .description-style h5 {
        font-size: 16px;
    }

    .description-style h6 {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
        overflow: hidden;
    }

    .header__container {
        overflow: initial;
    }

    .product__wrap .image__additional .video-link {
        max-height: 33px;
        height: 33px;
    }

    .product__wrap .image__additional .video-link::after {
        width: 16px;
        height: 16px;
    }

    button.slick-prev.garrow__prev.slick-arrow {
        left: 15px;
    }

    .col__sets .sets .cell.ao {
        margin: 0 32px;
    }

    .buy__tocart-set {
        width: 290px;
    }

    .description-style h1 {
        font-size: 30px;
    }

    .description-style h2 {
        font-size: 26px;
    }

    .description-style h3 {
        font-size: 20px;
    }

    .description-style h4 {
        font-size: 18px;
    }

    .description-style h5 {
        font-size: 14px;
    }

    .description-style h6 {
        font-size: 12px;
    }

    .description-style ol,
    .description-style p,
    .description-style ul {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .nav__menu li a {
        justify-content: flex-start;
        padding: 0 20px;
        font-size: 17px;
        text-transform: none;
        color: #51555e;
        font-weight: normal;
        text-align: left;
    }

    .nav__menu > li {
        min-height: 60px;
        border-bottom: 1px solid #ebebeb;
    }

    .nav__menu li a.mobile__item-top {
        color: #1f2024;
        font-weight: bold;
    }

    .dropdown__mobile li {
        margin-bottom: 15px;
    }

    .mobile__catalog .nav__menu li {
        justify-content: center;
    }

    .nav__menu > li:hover > a:before {
        content: none;
    }

    .brainlab__alert.alert-success {
        font-size: 14px;
    }
}

@media (max-width: 870px) {
    .block__separator {
        -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;
    }

    .block__separator .separator__left,
    .block__separator .separator__right {
        width: 100%;
    }

    .specials__timer {
        margin: 20px 0;
    }
}

@media (max-width: 767px) {
    .block__separator {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .block__separator .separator__left,
    .block__separator .separator__right {
        width: 50%;
    }

    .specials__timer {
        margin: 0;
    }

    .product__wrap .image__additional .video-link {
        max-height: 72px;
        height: 72px;
    }
}

@media (max-width: 769px) {
    .buy__tocart-set {
        width: 100%;
    }

    #delivery .description-style p span {
        font-size: 10pt !important;
    }

    #delivery .description-style ul + p {
        display: none;
    }
}

@media (max-width: 576px) {
    .lin__block {
        margin-top: 0;
    }

    .footer-top__menu-block.lin__block h3 {
        margin-bottom: 0;
    }

    .description-style h1 {
        font-size: 22px;
    }

    .description-style h2 {
        font-size: 20px;
    }

    .description-style h3 {
        font-size: 16px;
    }

    .description-style h4 {
        font-size: 14px;
    }

    .description-style h5 {
        font-size: 12px;
    }

    .description-style h6 {
        font-size: 11px;
    }

    .article__description {
        margin: 20px 0;
    }

    .article__description {
        padding-bottom: 0;
    }

    .arrow__top {
        height: 50px;
    }
}

@media (max-width: 767px) {
    .product__bodys .product__title h1 {
        font-size: 20px;
    }

    .tab__block #description .title__description {
        font-size: 20px;
    }

    .tab__block #description ol,
    .tab__block #description ul {
        padding-left: 0;
        font-size: 14px;
    }

    .tab__block #description {
        line-height: 22px;
    }
}

@media (max-width: 460px) {
    .block__separator {
        -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;
    }

    .block__separator .separator__left,
    .block__separator .separator__right {
        width: 100%;
    }

    .specials__timer {
        margin: 20px 0;
    }

    .information__description img {
        height: auto;
    }

    .sticky__timer .specials__timer {
        margin: 0;
    }

    .tp-leftarrow.default,
    .tp-rightarrow.round {
        display: none !important;
    }

    .brainlab__alert.alert-success {
        font-size: 13px;
    }
}

@media (max-width: 330px) {
    .block__separator .separator__left,
    .block__separator .separator__right {
        padding-right: 15px;
    }
}

/* New cart */
.remodal__cart {
    max-width: 1034px;
    overflow: hidden;
    max-height: calc(768px - 10%);
    padding: 30px;
    touch-action: none;
}

.remodal__cart .remodal-close {
    right: -8px;
}

.remodal__cart .dropdown__product .remodal-close {
    right: 0;
    left: initial;
    z-index: 9;
}

.remodal__cart .remodal-close:before {
    display: none;
}

.cart__content {
    background-color: #fff;
}

.dropdown__cart {
    width: 100%;
}

.bottom-header__toolscart {
    position: inherit;
}

.cart__top {
    padding: 20px 0;
    margin: 0;
    border-bottom: none;
    position: -webkit-sticky;
    position: sticky;
    top: -30px;
    left: 0;
    background-color: #fff;
}

.cart__top h2 {
    color: #51555e;
}

.cart__top-back span {
    font-size: 13px;
    color: #000000;
}

.cart__top-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart__table {
    margin-bottom: 0;
}

.cart__table.table thead th {
    border-bottom: 1px solid #ebebeb;
    padding: 14px 0;
}

.cart__body-title {
    color: #8a909b;
    line-height: 13px;
    padding-left: 0;
}

.cart__product td {
    padding: 20px 0;
}

.cart-image img {
    margin-bottom: 0;
}

.cart-image {
    width: 103px;
}

.cart__bottom {
    padding: 40px 0;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    position: -webkit-sticky;
    position: sticky;
    bottom: -40px;
    left: 0;
    background-color: #fff;
}

.cart__bottom-total span {
    color: #000000;
}

.cart__bottom-button a {
    padding: 21px 84px;
}

.cart__bottom-total span b {
    margin-left: 16px;
    font-size: 20px;
}

.cart__bottom-total span small {
    font-weight: 700;
}

.cart__product {
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

.cart-title {
    width: auto;
}

.cart-count {
    width: 267px;
}

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

.cart-price {
    width: 162px;
}

.cart__item-price span {
    color: #000;
}

.cart_qty .qtyplus {
    cursor: pointer;
}

.cart__item-delete a path,
.cart__item-delete a span,
.cart_qty .qtyplus path {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.cart__item-delete a:hover span {
    color: #000;
}

.cart__item-delete a:hover path {
    fill: #000;
}

.cart_qty .qtyplus:hover path {
    fill: #000;
}

.cart__body {
    height: auto;
    overflow-y: initial;
    margin: 0;
    border-bottom: 1px solid #ebebeb;
    text-align: left;
}

.cart__body-title .cart__model {
    margin-bottom: 7px;
}

.cart__body-title .cart__name a {
    color: #000000;
    font-weight: 400;
    font-size: 13px;
}

.cart__body-title .cart__name a:hover {
    text-decoration: underline;
}

.cart__viewed {
    margin: 15px 0 0;
    background-color: #fff;
}

.viewed__top {
    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;
    margin-bottom: 15px;
}

.viewed__top-title {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-right: 10px;
}

.viewed__top-arrows .arrow__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.viewed__top-arrows button {
    width: 37px;
    height: 37px;
    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;
    border: 1px solid transparent;
    outline: none;
    background-color: #f7f7f7;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.viewed__top-arrows button:hover {
    background-color: #fff;
    border: 1px solid #f7f7f7;
}

.product__viewed {
    /* max-width: 170px; */
    width: 100%;
    border: 1px solid #f5f5f5;
}

.viewd__image img {
    margin: 0 auto;
}

.viewed__title {
    margin: 15px;
    height: 66px;
    overflow: hidden;
}

.viewed__title a {
    font-size: 13px;
    font-weight: 700;
    line-height: 22px;
    color: #1f1f1f;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

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

.viewed__price {
    margin: 0 15px 15px;
}

.viewed__price .price__item {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.viewed__price .price__old {
    font-size: 14px;
    font-weight: 700;
    color: #8a909b;
    text-decoration: line-through;
    margin-left: 5px;
}

.viewed__button {
    padding: 0 15px;
    margin-bottom: 15px;
}

.viewed__buy {
    width: 100%;
    height: 30px;

    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;

    border: 1px solid transparent;
    outline: none;
    background-color: #000000;

    font-size: 10px;
    font-weight: bold;
    color: #fff;

    -webkit-transition: all 0.4s ease;

    -o-transition: all 0.4s ease;

    transition: all 0.4s ease;
}

.viewd__image img {
    max-width: 140px;
}

.viewed__buy:hover {
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
}

.product__viewed.slick-slide {
    margin: 0 10px;
}

.viewed__products .slick-list {
    margin: 0 -10px;
}

.viewed__bottom {
    text-align: left;
}

@media (max-width: 1294px) {
    .cart__body {
        height: auto;
        overflow-y: initial;
        max-height: initial;
    }
}

@media (max-width: 992px) {
    .cart__body .table-responsive-md {
        overflow-x: initial !important;
    }
}

@media (max-width: 870px) {
    .cart-count {
        width: 170px;
    }

    .cart-price {
        width: 140px;
    }

    .cart-delete {
        width: 30px;
    }
}

@media (max-width: 700px) {
    .cart__top {
        position: unset;
    }

    .cart__table thead {
        display: none;
    }

    .cart__product {
        display: -ms-grid;
        display: grid;
        position: relative;
        grid-column-gap: 10px;
        border-bottom: none;
        height: auto;
    }

    .cart__table td {
        border-top: none;
        border-bottom: none;
    }

    td.cart-delete.cart__item-delete {
        position: absolute;
        right: 0;
        top: 0;
    }

    .cart__item-delete span {
        display: none;
    }

    .cart-image {
        width: 100%;
    }

    .cart-image img {
        max-width: 65px;
    }

    .cart__product .cart-image {
        -ms-grid-column: 1;
        grid-column-start: 1;
        -ms-grid-column-span: 0;
        grid-column-end: 1;
    }

    .cart__product .cart-title {
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-column-span: 3;
        grid-column-end: 5;
    }

    .cart__product .cart-count {
        -ms-grid-column: 2;
        grid-column-start: 2;
        -ms-grid-column-span: 1;
        grid-column-end: 3;
        padding: 0;
        margin-top: -11px;
        width: 87px;
    }

    .cart__product .cart-price {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0;
        margin-top: -11px;
        max-width: 80px;
    }

    .cart__body-title .cart__model {
        margin-bottom: 16px;
    }

    .cart__product .cart_qty {
        width: 87px;
        height: 35px;
        padding: 0 5px;
    }

    .cart__item-price span {
        font-size: 17px;
    }

    .cart__bottom-button {
        width: 100%;
    }

    .cart__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 22px 0;
    }

    .cart__bottom-total span {
        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;
    }

    .cart__bottom-total {
        width: 100%;
        margin-bottom: 22px;
    }

    .cart__bottom-button a {
        padding: 0;
        font-size: 12px;
        width: 240px;
        margin: 0 auto;
        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;
    }

    .remodal__cart {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .remodal__cart {
        max-height: 90%;
    }

    .viewd__image img {
        max-width: 120px;
    }
}

@media (max-width: 560px) {
    .cart__bottom-button a {
        width: 100%;
    }
}

@media (max-width: 460px) {
    .viewed__top-arrows {
        display: none;
    }

    .viewed__bottom .slick-dots {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        bottom: -40px;
    }

    .viewed__products .slick-track .slick-dots {
        display: none !important;
    }

    .remodal__cart {
        padding: 20px 20px 60px;
    }

    .product__viewed.slick-slide {
        margin: 0;
    }

    .viewed__products .slick-list {
        margin: 0;
    }

    .cart__top-back .remodal-close {
        top: 7px;
    }
}

.remodal-bg.remodal-is-opened,
.remodal-bg.remodal-is-opening {
    -webkit-filter: blur(3px);
    filter: blur(3px);
}

.remodal-overlay {
    background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-closing,
.remodal-overlay.remodal-is-opening {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
    -webkit-animation-name: Bb;
    animation-name: Bb;
}

.remodal-overlay.remodal-is-closing {
    -webkit-animation-name: Cb;
    animation-name: Cb;
}

.remodal-wrapper {
    padding: 10px 10px 0;
}

.remodal {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
    padding: 35px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    color: #2b2e38;
    background: #fff;
}

.remodal.remodal-is-closing,
.remodal.remodal-is-opening {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
    -webkit-animation-name: zb;
    animation-name: zb;
}

.remodal.remodal-is-closing {
    -webkit-animation-name: Ab;
    animation-name: Ab;
}

.remodal,
.remodal-wrapper:after {
    vertical-align: middle;
}

.remodal-close {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: visible;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
    text-decoration: none;
    color: #95979c;
    border: 0;
    outline: 0;
    background: 0 0;
}

.remodal-close:focus,
.remodal-close:hover {
    color: #2b2e38;
}

.remodal-close:before {
    font-family: Arial, Helvetica CY, Nimbus Sans L, sans-serif !important;
    font-size: 25px;
    line-height: 35px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    content: "\00d7";
    content: "";
    text-align: center;
}

.remodal-cancel,
.remodal-confirm {
    font: inherit;
    display: inline-block;
    overflow: visible;
    min-width: 110px;
    margin: 0;
    padding: 12px 0;
    cursor: pointer;
    -webkit-transition: background 0.2s;
    -o-transition: background 0.2s;
    transition: background 0.2s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    border: 0;
    outline: 0;
}

.remodal-confirm {
    color: #fff;
    background: #81c784;
}

.remodal-confirm:focus,
.remodal-confirm:hover {
    background: #66bb6a;
}

.remodal-cancel {
    color: #fff;
    background: #e57373;
}

.remodal-cancel:focus,
.remodal-cancel:hover {
    background: #ef5350;
}

.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner,
.remodal-confirm::-moz-focus-inner {
    padding: 0;
    border: 0;
}

@-webkit-keyframes zb {
    0% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

@keyframes zb {
    0% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

@-webkit-keyframes Ab {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    to {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

@keyframes Ab {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    to {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

@-webkit-keyframes Bb {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes Bb {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes Cb {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes Cb {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@media only screen and (min-width: 641px) {
    .remodal {
        max-width: 900px;
    }
}

.lt-ie9 .remodal-overlay {
    background: #2b2e38;
}

.lt-ie9 .remodal {
    width: 700px;
}

html.remodal-is-locked {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}

.remodal,
[data-remodal-id] {
    display: none;
}

.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none;
}

.remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -0.05em;
    content: "";
}

.remodal-overlay,
.remodal-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.remodal {
    position: relative;
    outline: 0;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.remodal-is-initialized {
    display: inline-block;
}

.studio__page {
    padding-bottom: 60px;
}

.studio-nav-slider-col {
    margin-bottom: 30px;
}

.studio-nav-slider {
    display: flex;
}

.studio-addresses__wrap {
    margin-bottom: 30px;
}

.studio-addresses__item {
    display: flex;
    flex-wrap: wrap;
    border: 2px solid #f2f2f2;
    width: 100%;
    height: 100%;
}

.studio-nav-slider__name {
    padding: 25px 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.studio-nav-slider__item--active {
    background-color: #f7f7f7;
}

.studio-addresses__wrap {
    display: none;
}

.studio-addresses__wrap--active {
    display: flex;
}

.studio-nav-slider__item {
    cursor: pointer;
    border-bottom: 1px solid #e0e1e7;
}

.studio-nav-slider .slick-arrow {
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    z-index: 100;
}

.studio-nav-slider .slick-prev {
    background-image: url("/assets/image/to-left.svg"), linear-gradient(to left, transparent 0%, #fff 50%, #fff 100%);
    height: 98%;
    left: 0;
    width: 60px;
}

.studio-nav-slider .slick-next {
    background-image: url("/assets/image/to-right.svg"), linear-gradient(to right, transparent 0%, #fff 50%, #fff 100%);
    height: 98%;
    right: 0;
    width: 60px;
}

.studio-nav-slider .slick-prev.slick-disabled {
    opacity: 0;
    display: none !important;
}

.studio-nav-slider .slick-arrow:before {
    content: none;
}

.studio-nav-slider .slick-next.slick-disabled {
    opacity: 0;
}

.studio-addresses__left {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 100px;
    min-width: 100px;
    /*min-width: 20%;*/
    border-right: 2px solid #f5f5f5;
}

.studio-addresses__pointer-img {
    min-width: 36px;
}

.studio-addresses__right {
    padding: 30px;
    width: calc(100% - 100px);
    min-width: calc(100% - 100px);
}

.studio-addresses__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1f2024;
}

.studio-addresses__text {
    min-height: 61px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #535353;
}

.studio-addresses__footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.studio-addresses__time {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #535353;
    margin-right: 5px;
    margin-bottom: 5px;
}

.studio-addresses__time-img {
    margin-right: 15px;
}

.studio-addresses__phone {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #535353;
    margin-bottom: 5px;
}

.studio-addresses__phone-img {
    margin-right: 15px;
}

.studio-city-select__items {
    display: none;
}

.studio-city-select {
    display: none;
}

@media (max-width: 1200px) {
    .account__subscribe-submit {
        margin-top: 40px;
        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .studio-nav-slider__name {
        padding: 20px 15px;
        font-size: 13px;
    }

    .studio-addresses__right {
        padding: 20px;
    }

    .studio-addresses__title {
        font-size: 19px;
    }

    .studio-addresses__text {
        font-size: 13px;
    }

    .studio-addresses__time {
        font-size: 13px;
    }

    .studio-addresses__phone {
        font-size: 13px;
    }

    .studio-addresses__time-img {
        width: 16px;
        margin-right: 10px;
    }

    .studio-addresses__phone-img {
        width: 16px;
        margin-right: 10px;
    }

    .studio-addresses__pointer-img {
        width: 25px;
        min-width: 25px;
    }

    .studio-addresses__text {
        font-size: 13px;
    }

    .account__title h1 {
        font-size: 18px;
        font-weight: 500;
        line-height: 21.78px;
        padding-bottom: 8px;
    }

    .product-category .categories__row-right-popup {
        padding: 0 40px 26px;
    }
}

@media (max-width: 768px) {
    .studio__page {
        padding-bottom: 40px;
    }

    .studio-city-select {
        display: block;
    }

    .studio-nav-slider {
        display: none;
    }

    .studio-city-select {
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e1e7;
    }

    .studio-city-select__items {
        display: block;
    }

    .studio-city-select__selected-city {
        font-size: 17px;
        font-weight: bold;
        color: #1f2024;
        margin-bottom: 20px;
    }

    .studio-city-select__title {
        font-size: 12px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .studio-city-select .select2-container {
        border: 1px solid #ebebeb;
    }

    .studio-city-select .select2-container .select2-selection--single {
        padding: 15px;
    }

    .studio-city-select .select2-container .select2-selection--single .select2-selection__rendered {
        padding: 0;
        font-size: 12px;
        color: #535353;
    }

    .studio-addresses__item {
        /*flex-direction: column;*/
    }

    .studio-addresses__wrap {
        margin-bottom: 20px;
    }

    .studio-addresses__left {
        padding: 20px 0;
        border-bottom: 2px solid #f5f5f5;
        border-right: 0;
    }

    .studio-addresses__pointer-img {
        width: 22px;
        min-width: 22px;
    }

    .studio-addresses__title {
        font-size: 18px;
    }

    .studio-addresses__text {
        min-height: auto;
    }

    .studio-addresses__footer {
        flex-direction: column;
    }

    .studio-addresses__time {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .studio-addresses__phone {
        font-size: 14px;
        margin-bottom: 0;
    }

    .studio-addresses__time-img {
        margin-right: 15px;
        width: 18px;
    }

    .studio-addresses__phone-img {
        margin-right: 15px;
        width: 18px;
    }
}

.faq-page__panel-group {
    padding: 40px 0 60px;
    max-width: 66%;
    margin: 0 auto;
}

.faq-page__panel {
    margin-bottom: 20px;
}

.faq-page__heading {}

.faq-page__link-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: #ebebeb;
}

.faq-page__link-collapse .faq-page__arrow {
    transition: all 0.5s;
    transform: rotate(180deg);
}

.faq-page__link-collapse.collapsed .faq-page__arrow {
    transform: rotate(0deg);
}

.faq-page__link-text {
    padding-right: 30px;
    font-size: 18px;
    line-height: 1.2;
    color: #1f2024;
}

.faq-page__answer {
    background: #f7f7f7;
    padding: 30px;
}

.faq-page__answer p {
    margin-bottom: 15px;
    line-height: 1.57;
    font-size: 14px;
}

.faq-page__answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .faq-page__panel-group {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .faq-page__panel-group {
        padding: 0 0 30px;
    }

    .faq-page__link-text {
        font-size: 14px;
        padding-right: 15px;
    }

    .faq-page__panel {
        margin-bottom: 10px;
    }

    .faq-page__link-collapse {
        padding: 15px 20px;
    }

    .faq-page__answer {
        padding: 20px;
    }
}

.about-content {
    padding-top: 60px;
}

.about-content__block {
    margin-bottom: 120px;
}

.about-campaing {
    margin-bottom: 80px;
}

.about-content__row {
    display: flex;
}

.about-content__indent-right {
    padding-right: 163px;
}

.about-content__indent-left {
    padding-left: 160px;
}

.about-content__text {
    font-size: 14px;
    line-height: 1.64;
    color: #535353;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.about-content__text h3 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: bold;
    color: #535353;
    margin-bottom: 25px;
}

.about-content__text p {
    margin-bottom: 20px;
}

.about-content__text p:last-child {
    margin-bottom: 0;
}

.about-who {
    display: flex;
}

.about-who__text {
    width: 43%;
}

.about-who__img {
    width: 57%;
}

.about-team {
    display: flex;
}

.about-team__img {
    width: 57%;
}

.about-team__text {
    width: 43%;
}

.about-advantages__title {
    font-size: 26px;
    line-height: 1.2;
    font-weight: bold;
    color: #535353;
    margin-bottom: 70px;
    text-align: center;
}

.about-advantages__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about-advantages__item {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    padding: 0 35px;
}

.about-advantages__img {
    margin-bottom: 20px;
}

.about-advantages__item-title {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.22;
    font-weight: bold;
    color: #707070;
    text-align: center;
}

.about-advantages__item-text {
    font-size: 14px;
    line-height: 1.64;
    color: #707070;
    text-align: center;
}

.about-manuf {
    display: flex;
}

.about-manuf__img {
    width: 50%;
}

.about-manuf__text {
    width: 50%;
}

.about-interior {
    display: flex;
}

.about-interior__text {
    width: 50%;
}

.about-interior__img {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.about-goal {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.about-achiev {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-right: 148px;
}

.about-achiev__img,
.about-goal__img {
    min-height: 18vw;
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
}

.about-campaing__row {
    display: flex;
}

.about-campaing__row-imgs {
    margin-bottom: 60px;
}

.about-campaing-1__img {
    padding-right: 5px;
}

.about-campaing-2__img {
    padding-left: 5px;
}

.about-campaing__row-info {
    margin-bottom: 30px;
}

.about-campaing__text {
    min-width: 50%;
    width: 50%;
}

.about-campaing__thanks p {
    margin-bottom: 0;
}

.about-campaing__thanks {
    min-width: auto;
    justify-content: flex-start;
}

.about-campaing__contacts {
    justify-content: flex-start;
    margin-left: auto;
}

.about-campaing__contact-item {
    display: flex;
    margin-bottom: 15px;
    white-space: nowrap;
}

.about-campaing__contact-item:last-child {
    margin-bottom: 0;
}

.about-campaing__contact-item img {
    width: 20px;
    margin-right: 20px;
}

.about-campaing__btn {
    padding: 24px 62px;
    background: #252525;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid #252525;
    display: flex;
    justify-content: center;
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
}

.about-campaing__btn:hover {
    background-color: #fff;
    color: #252525;
}

.about-campaing__btn--mob {
    display: none;
}

@media (max-width: 1400px) {
    .about-content__indent-right {
        padding-right: 100px;
    }

    .about-content__indent-left {
        padding-left: 100px;
    }
}

@media (max-width: 1200px) {
    .about-content__indent-right {
        padding-right: 50px;
    }

    .about-content__indent-left {
        padding-left: 50px;
    }

    .account__bonuses-icon {
        max-width: 18px;
    }

    .account__bonuses {
        margin-top: 33px;
        border-radius: 21px;
        width: fit-content;
        padding-top: 7px;
        padding-bottom: 8px;

        max-height: 33px;
    }
}

@media (max-width: 992px) {
    .about-content__block {
        margin-bottom: 60px;
    }

    .about-content__indent-right {
        padding-right: 0;
    }

    .about-content__indent-left {
        padding-left: 0;
    }

    .about-who {
        flex-direction: column-reverse;
    }

    .about-who__text {
        width: 100%;
    }

    .about-who__img {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-team {
        flex-direction: column;
    }

    .about-team__img {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-team__text {
        width: 100%;
    }

    .about-advantages__item {
        width: 50%;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .about-advantages__item:last-child {
        margin-bottom: 0;
    }

    .about-manuf {
        flex-direction: column;
    }

    .about-manuf__img {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-manuf__text {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-interior {
        display: flex;
        flex-direction: column-reverse;
    }

    .about-interior__text {
        width: 100%;
    }

    .about-interior__img {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-content__row {
        flex-direction: column;
    }

    .about-achiev__img,
    .about-goal__img {
        min-height: auto;
    }

    .about-goal {
        width: 100%;
    }

    .about-achiev {
        width: 100%;
    }

    .about-campaing__row-info {
        flex-direction: column;
    }

    .about-campaing__text {
        width: 100%;
        min-width: 100%;
    }

    .about-campaing__contacts {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding-top: 0;
    }

    .about-content__text h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .about-advantages__title {
        font-size: 22px;
        text-align: left;
        margin-bottom: 30px;
    }

    .about-advantages__items {
        flex-direction: column;
    }

    .about-advantages__item {
        width: 100%;
        padding: 0;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .about-advantages__item-title {
        text-align: left;
        font-size: 16px;
    }

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

    .about-manuf__text {
        margin-bottom: 0;
    }

    .about-campaing__row-info {
        margin-bottom: 0;
    }

    .about-campaing__row-imgs {
        flex-direction: column;
        margin-bottom: 35px;
    }

    .about-campaing-1__img {
        padding: 0;
        margin-bottom: 10px;
    }

    .about-campaing-2__img {
        padding: 0;
    }

    .about-campaing__text {
        margin-bottom: 30px;
    }

    .about-campaing__btn {
        display: none;
        font-size: 12px;
        padding: 18px 62px;
    }

    .about-campaing__btn--mob {
        display: flex;
    }

    .about-content__text p.empty {
        height: 0;
        margin-bottom: 10px;
    }

    .about-campaing__thanks h3 {
        height: 60px;
        margin: 0;
    }

    .about-campaing__contacts h3 {
        height: 30px;
        margin: 0;
    }
}

.dropdown__inner li {
    width: 25%;
}

.bottom-header__menu ul.nav__child-wrap {
    display: flex;
    align-items: flex-start;
}

.nav__child-items {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.nav__child-items.has-image {
    width: 70%;
}

.nav__menu-img {
    display: flex;
    justify-content: flex-end;
    padding-left: 10px;
    width: 30%;
}

.nav__menu li.mobile__menu-child-img {
    padding: 5px 20px 0;
    align-items: flex-start;
}

/* Kits */

.kits-content {
    display: flex;
    padding-bottom: 50px;
}

.kits-content__left {
    width: 44.2%;
    padding-right: 30px;
}

.kits-content__right {
    width: 60%;
}

.kits-content__images {
    position: relative;
    height: 100%;
}

.kits-content__image {
    margin-bottom: 30px;
    position: sticky;
    top: 73px;
}

.kits-content__image img {
    width: 100%;
}

.kits-content__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
}

.kits-content__heading--mob {
    display: none;
}

.kits-content__title {
    font-size: 28px;
    color: #1f2024;
    font-weight: bold;
}

.kits-content__total {
    color: #1f2024;
    font-weight: bold;
    font-size: 18px;
}

.kits-content__subtitle {
    padding: 30px 0;
    font-size: 22px;
    font-weight: bold;
}

.kits-content-footer {
    background: #f7f7f7;
    padding: 50px 0;
}

.kits-content-footer__inner {
    display: flex;
}

.kits-content-footer__img {
    margin-right: 35px;
    min-width: 23%;
    width: 23%;
}

.kits-content-footer__description h3 {
    color: #535353;
    font-size: 22px;
    margin-bottom: 15px;
}

.kits-content-footer__description p {
    color: #535353;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.kits-content-footer__description p:last-child {
    margin-bottom: 0;
}

.product-kits__body-img {
    height: 400px;
}

@media (max-width: 1700px) {
    .product-kits__body-title h2 {
        height: 65px;
    }
}

@media (max-width: 1400px) {
    .product-kits__body-img {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .kits-content {
        flex-direction: column;
    }

    .kits-content__left {
        width: 100%;
        padding: 0;
    }

    .kits-content__right {
        width: 100%;
    }

    .kits-content-footer__inner {
        flex-direction: column;
    }

    .kits-content-footer__img {
        margin-right: 0;
        margin-bottom: 15px;
        min-width: 50%;
        width: 50%;
    }

    .kits-content__image img {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .kits-content__title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .kits-content__heading {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 30px;
    }

    .kits-content__heading--mob {
        display: flex;
    }

    .kits-content__total {
        font-size: 14px;
    }

    .kits-content__image {
        margin-bottom: 0;
    }

    .kits-content__subtitle {
        padding-top: 30px;
        padding-bottom: 20px;
        font-size: 17px;
    }

    .kits-content__row {
        margin: 0 -10px;
    }

    .kits-content__products .product-layout {
        padding: 0 10px;
        margin-bottom: 20px;
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .kits-content-footer__img {
        min-width: 100%;
        width: 100%;
    }

    .product__body-title h2 a.product-kits__body-title-link {
        font-size: 13px;
    }

    .product-kits__body-price__price {
        display: flex;
        flex-direction: column;
        font-size: 17px;
    }

    .product-kits__body-price__price .price-old {
        text-decoration: line-through;
    }

    .product-kits__body-price__price .price-old:before {
        content: none;
    }

    .product-kits__body-block {
        padding: 10px;
    }

    .product-kits__body-price__price .currency__symbol {
        font-size: 10px;
    }

    .kits-content {
        padding-bottom: 0;
    }

    .kits-content-footer {
        padding: 35px 0;
    }

    .kits-content-footer__img {
        margin-bottom: 35px;
    }

    .kits-content-footer__description h3 {
        font-size: 17px;
    }

    .kits-content-footer__description p {
        font-size: 13px;
    }

    .product__body:hover .product__outprice {
        display: none;
    }
}

@media (max-width: 420px) {
    .product-kits__body-img {
        height: 179px;
    }

    .product__body-title h2 a.product-kits__body-title-link {
        min-height: 90px;
    }

    .product-kits__body-title h2 {
        height: 110px;
    }
}

/* Form opt on page information opt: id:16 */
.contact__form-opt {
    max-width: 50%;
    width: 100%;
    margin: 30px auto;
}

.contact__form-opt form .group__block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact__form-opt form .group__block .form__group {
    width: 100%;
}

.input__control.error {
    border: 1px solid red !important;

    transition: all 0.4s ease;
}

#form-opt {
    position: relative;
}

#form-opt .preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9;
}

.preloader.text__error {
    font-weight: 600;
}

.preloader.text__success {
    font-weight: 600;
}

.top-header__menu li:last-child {
    background: #8b909a;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 7px 14px;
    gap: 10px;
}

.top-header__menu li:last-child a {
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    color: #ffffff;
}

.top-header__menu li.opt_active {
    background: #f7f7f7;
}
.top-header__menu li.opt_active a {
    color: #8b909a;
}

.opt_forms {
    display: flex;
}

.contact__login {
    padding: 40px;
    margin: 30px;
    background: #f7f7f7;
}

@media (max-width: 992px) {
    .contact__form-opt {
        max-width: 100%;
    }

    .contact__form-opt form .group__block .form__group {
        width: 100%;
    }

    .contact__form-opt form .group__block {
        flex-direction: column;
        margin: 0;
    }

    .opt_forms {
        display: initial;
    }
    .contact__login {
        margin: 30px 0;
    }
}

.cart__bottom-total {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cart__bottom-total span {
    display: inline;
}

.checkout__title-notice {
    line-height: 1.5;
    padding-bottom: 10px;
    color: rgb(226, 41, 41);
}

.heading__title-notice {
    line-height: 1.5;
    padding-bottom: 10px;
    color: rgb(226, 41, 41);
    margin-top: 10px;
    text-align: left;
}
/* */
.modal__discover-form .input__block {
    margin-bottom: 20px;
}

.modal__discover-form .input__block input {
    height: 50px;
    width: 100%;
    font-family: var(--font);
    transition: border 0.5s ease;
    -webkit-transition: border 0.5s ease;
    -moz-transition: border 0.5s ease;
    -ms-transition: border 0.5s ease;
    -o-transition: border 0.5s ease;
    border: 2px solid #ebebeb;
    padding: 0 20px;
    border-radius: 0;
    color: #42454e;
    font-family: var(--font);
    font-size: 13px;
}

.modal__discover-form .input__block label {
    display: none;
    text-align: left;
    width: 80%;
    margin: 0 auto 4px;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 13px;
}

.modal__discover-form .input__block .req {
    color: #ff3108;
}

.modal__discover-form .input__block input:focus,
.modal__discover-form .input__block input:hover {
    border: 2px solid var(--secondary);
}

.modal__discover-form .input__button {
    width: 47%;
    height: 64px;
    margin: 50px auto 0;
    font-weight: bold;
    background-color: var(--accent);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
}

.modal__discover-form .input__button:focus {
    background-color: var(--secondary);
}

.modal__discover-form .input__button:hover {
    background-color: var(--secondary);
}

.remodal__discover-text {
    font-size: 14px;
    line-height: 1.5;
    color: #8a909b;
}

.remodal__discover-title {
    margin-bottom: 20px;
    color: #51555e;
}

.modal__discover-info {
    margin-bottom: 50px;
}

.modal__discover-success-text {
    width: 100%;
    text-align: center;
}

.discover__answer {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font);
    font-size: 22px;
    line-height: 31px;
}

.slider__timer {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.slider__container.slide-timer__container {
    width: 100%;
    padding-bottom: 30px;
}

.slider__timer-item-val {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(81, 85, 92, 0.7);
    width: 82px;
    height: 82px;
    font-weight: bold;
    font-size: 28px;
    line-height: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

.slider__timer-item-text {
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #ffffff;
    text-align: center;
}

.slider__timer-item-sep {
    width: 58px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 28px;
    line-height: 36px;
    color: #ffffff;
}

.slide-timer__wrap-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-timer .slide-timer__btn {
    min-width: auto;
}

.slide-timer__title {
    display: block;
}

.slide-timer__title p {
    font-weight: bold;
    font-size: 28px;
    line-height: 1.28;
    margin-bottom: 20px;
}

.slide-timer__title p:last-child {
    margin-bottom: 0;
}

.slide-timer__title h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 45px;
    line-height: 1.11;
}

.slide-timer__title h4:last-child {
    margin-bottom: 0;
}

.slide-timer__text {
    font-weight: bold;
    margin: 0 30px 0 0;
}

.slide-timer .slide-timer__text {
    width: auto;
    font-size: 18px !important;
    line-height: 1.22 !important;
}

.slide-timer__btn {
    font-weight: bold;
    margin: 0;
}

@media (max-width: 1440px) {
    .slide-timer__title p {
        font-size: 21px;
    }

    .slide-timer__title h4 {
        font-size: 33px;
    }

    .slider__timer-item-val {
        font-size: 24px;
    }

    .slider__timer-item-val {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    .slider__timer-item-sep {
        width: 48px;
        height: 70px;
        font-size: 24px;
    }

    .slider__timer-item-text {
        font-size: 16px;
    }

    .slide-timer .slide-timer__text {
        font-size: 16px !important;
    }
}

@media (max-width: 1280px) {
    .slide-timer__title {
        margin-bottom: 10px !important;
    }

    .slide-timer__title p {
        margin-bottom: 10px;
    }

    .slide-timer__title h4 {
        margin-bottom: 10px;
    }
}

@media (max-width: 992px) {
    .slide-timer__title h4 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .slide-timer__title p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .slide-timer__title {
        margin-bottom: 20px !important;
    }

    .slider__timer-item-val {
        width: 60px;
        height: 60px;
    }

    .slider__timer-item-sep {
        width: 38px;
        height: 60px;
    }

    .slider__timer-item-text {
        font-size: 15px;
    }

    .slider__timer {
        margin-bottom: 5px;
    }

    .slide-timer .slide-timer__btn {
        height: 40px !important;
        font-size: 12px !important;
    }

    .slide-timer .slide-timer__text {
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {
    .remodal__discover {
        padding: 35px 20px 20px;
    }

    .modal__discover-form .input__block {
        margin-bottom: 20px;
    }

    .modal__discover-form .input__block input {
        height: 52px;
        padding: 0 15px;
    }

    .modal__discover-form .input__button {
        height: 55px;
        font-size: 12px;
        margin-top: 30px;
        width: 240px;
    }

    .remodal__discover-title {
        margin-bottom: 10px;
    }

    .modal__discover-info {
        margin-bottom: 30px;
    }

    .slider img {
        object-fit: cover;
        width: 100%;
    }

    .slider .video__block {
        object-fit: cover;
        width: 100%;
        display: flex;
        /*height: 380px;*/
    }

    .slick__picture {
        display: flex;
        height: calc(100vh - 79px);
    }

    .slider__timer {
        margin-bottom: 30px;
    }

    .slider__container.slide-timer__container {
        max-width: 270px;
    }

    .slide-timer__title p {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .slide-timer__title h4 {
        font-size: 18px;
        line-height: 1.22;
        margin-bottom: 5px;
    }

    .slide-timer__title {
        margin-bottom: 15px !important;
    }

    .slider__timer-item-val {
        width: 40px;
        height: 40px;
        font-size: 12px;
        margin-bottom: 1px;
    }

    .slider__timer-item-sep {
        width: 15px;
        height: 40px;
        font-size: 10px;
    }

    .slider__timer-item-text {
        font-size: 10px;
    }

    .slide-timer__wrap-text {
        flex-direction: column;
    }

    .slide-timer .slide-timer__text {
        font-size: 12px !important;
        margin-bottom: 10px;
        margin-right: 0;
        text-align: center;
    }

    .slide-timer .slide-timer__btn {
        max-width: 137px !important;
        font-size: 10px !important;
    }

    .slick__picture img {
        height: 100%;
        object-fit: cover;
    }
}

.slider .video__block.video__slider-mobile {
    display: none;
}

@media (max-width: 768px) {
    .slider .video__block.video__slider-desktop {
        display: none;
    }
    .slider .video__block.video__slider-mobile {
        display: block;
    }
}

/**/
.product__btn-table-sizes {
    /* margin-right: 72px; */
}

.product__btn-table-studio {
    background: #2bba4d;
    font-size: 13px;
    padding: 7px 14px;
    font-weight: bold;
    line-height: 16px;
    color: #ffffff;
    margin-left: 72px;
    border: 1px solid #2bba4d;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
}

.product__btn-table-studio:hover {
    text-decoration: none;
    background: #ffffff;
    color: #2bba4d;
}

.product__wrap-link-see {
    margin: 0;
}

.product__link-see {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 66px;
    height: 30px;
    background: #f7f7f7;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    color: var(--gaccent);
    margin-right: 10px;
    margin-bottom: 10px;
    margin-top: 0;
    cursor: pointer;
}

.product__input-option label {
    position: relative;
}

.product__option-quantity {
    position: absolute;
    top: 3px;
    right: 8px;
    display: flex;
    font-weight: bold;
    font-size: 8px;
    line-height: 10px;
    color: #9297a2;
}

.custom-radio + label:hover .product__option-quantity,
.custom-radio:checked + label .product__option-quantity {
    color: #ffffff;
}

.product__bodys-right {
    /*max-width: 20%;*/
    margin-left: auto;
}

.product__bodys-cols {
    display: flex;
}

.product__kits {
    width: 180px;
}

.product__kits-title {
    font-weight: bold;
    font-size: 14px;
    line-height: 1.21;
    color: #000000;
    margin-bottom: 20px;
}

.product__kit-inner {
    border: 1px solid rgb(235, 235, 235);
    padding: 0 10px 10px;
}

.product__kit-img {
    display: flex;
    margin-bottom: 10px;
}

.product__kit-name {
    display: flex;
    font-size: 12px;
    font-weight: bold;
}

.product__kits-items .slick-dots li button {
    border-color: #8a909b;
}

.product__kits-items .slick-dots li.slick-active button {
    background: #8a909b;
}

.product__kits-items .slick-slide {
    padding: 1px;
}

.product__preorder .price__preorer {
    display: none;
    color: var(--secondary);
    font-family: var(--font);
    font-size: 14px;
    font-weight: bold;
}

.product__body:hover .price__preorer {
    display: flex;
}

.product__btn-preorder {
    color: #ffffff;
    width: 100%;
    height: 64px;
    border: 2px solid var(--secondary);
    background-color: var(--secondary);
    font-weight: bold;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 15px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.product__body:hover .product__btn-preorder {
    display: flex;
}

.product__btn-preorder:hover {
    color: #fff;
}

.product__no-stock img {
    filter: grayscale(1);
}

.product__no-stock .product__body-img {
    filter: grayscale(1);
}

.product__no-stock .automatic__sticker .sale__sticker,
.product__no-stock .handle__sticker .sale__sticker {
    background: var(--gaccent);
}

.product__no-stock .product__body-wishlist button path {
    fill: var(--gaccent);
}

.product__no-stock .product__body-wishlist button:hover path {
    fill: #fff;
}

.product__body.product__no-stock .product__body-title h2 a {
    color: var(--gaccent);
}

.product__body.product__no-stock .product__body-price__price {
    color: var(--gaccent);
}

.product__body.product__no-stock .product__body-price__price .price-new {
    color: var(--gaccent);
}

/*.product__preorder img {
    filter: grayscale(1);
}*/

/*.product__preorder:hover img {
    filter: inherit;
}*/

/*.product__preorder .product__body-img {
    filter: grayscale(1);
}*/

.product__preorder:hover .product__body-img {
    filter: inherit;
}

/*.product__preorder .automatic__sticker .sale__sticker,
.product__preorder .handle__sticker .sale__sticker {
    background: var(--gaccent);
}*/

.product__preorder:hover .automatic__sticker .sale__sticker,
.product__preorder:hover .handle__sticker .sale__sticker {
    background: #000;
}

/*.product__preorder .product__body-wishlist button path {
    fill: var(--gaccent);
}*/

.product__preorder:hover .product__body-wishlist button path {
    fill: #000;
}

/*.product__preorder .product__body-wishlist button:hover path {
    fill: #fff;
}*/

.product__preorder:hover .product__body-wishlist button:hover path {}

/*.product__body.product__preorder .product__body-title h2 a {
    color: var(--gaccent);
}*/

.product__body.product__preorder:hover .product__body-title h2 a {
    color: inherit;
}

/*.product__body.product__preorder .product__body-price__price {
    color: var(--gaccent);
}*/

.product__body.product__preorder:hover .product__body-price__price {
    color: inherit;
}

/*.product__body.product__preorder .product__body-price__price .price-new {
    color: var(--gaccent);
}*/

.product__body.product__preorder:hover .product__body-price__price .price-new {
    color: inherit;
}

.product__bodys .product__stock.product__stock-8 {
    color: #000000;
}

.product__bodys .product__stock.product__stock-8:before {
    content: "*";
}

@media (max-width: 1500px) {
    .product__kit-name {
        min-height: 24px;
    }
}

@media (max-width: 1280px) {
    .product__btn-table-studio {
        margin-left: auto;
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .product__bodys .product__button {
        margin-bottom: 30px;
    }

    .product__bodys-cols {
        flex-direction: column;
    }

    .product__kits {
        width: auto;
        display: flex;
        flex-direction: column;
        padding-bottom: 30px;
    }

    .product__kit-inner {
        width: 180px;
    }

    .product__kits-items .slick-slide {
        margin: 0 5px;
    }

    .product__kits-items .slick-list {
        margin: 0 -5px;
    }

    .product__option-quantity {
        position: relative;
        right: initial;
        font-size: 11px;
        line-height: 1;
        margin-left: 5px;
        top: -2px;
    }

    .product__btn-table-sizes {
        margin-right: 58px;
    }

    .product__btn-table-studio {
        margin-left: auto;
        margin-right: 0;
    }
}

@media (max-width: 500px) {
    .product__table-btns {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .product__btn-table-sizes {
        margin-right: 0;
    }

    .product__bodys .product__tools {
        justify-content: space-between;
    }

    .social__button .button__social {
        margin-right: 0;
    }

    .product__bodys .product__tools .tools__count {
        margin-right: 10px;
    }
}

.top-header__info-currency .current-currency {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    text-transform: uppercase;
}

.top-header__info > .top-header__info-currency {
    width: 60px;
}

.top-header__info-currency:hover p {
    cursor: pointer;
    color: var(--secondary);
}

.top-header__info-currency:hover .fa-chevron-down {
    cursor: pointer;
    color: var(--secondary);
}

.dropdown-currency__block {
    position: absolute;
    top: -1000px;
    right: 0;
    z-index: 25;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    -webkit-transition: top 0.5s ease-in-out;
    -o-transition: top 0.5s ease-in-out;
    transition: top 0.5s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: auto;
    margin: 0;
    border-radius: 0;
    border: 0;
    padding: 0;
}

.top-header__info-currency .dropdown-inner__currency {
    margin-top: 31px;
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.top-header__info-currency .current-currency {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    text-transform: uppercase;
}

.top-header__info-currency:hover p {
    cursor: pointer;
    color: var(--secondary);
}

.top-header__info-currency .dropdown-inner__currency span {
    display: flex;
}

.dropdown-inner__currency .fa-chevron-up {
    cursor: pointer;
    color: var(--secondary);
    width: 11px;
    height: 12px;
}

.top-header__info-currency .currency-item .btn {
    font-size: 13px;
    padding: 0;
    color: var(--secondary);
    font-family: var(--font);
    margin-bottom: 11px;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
}

.mobile__wishlist {
    display: flex;
    align-items: center;
}

.mobile__currencies {
    display: flex;
    margin-left: auto;
}

/*.mobile__currency {
    display: flex;
    padding: 2px 15px;
    font-weight: bold;
    border-right: 1px solid #ebebeb;
    color: #8a909b;
    cursor: pointer;
    font-size: 17px;
}

.mobile__currency:last-child {
    border-right: 0;
    padding-right: 0;
}

.mobile__currency:hover {
    color: #212529;
}

.mobile__currency-current {
    color: #212529;
}*/

.top-header__info > .top-header__info-user {
    width: 60px;
}

.mobile__currency {
    margin-left: 0 !important;
    position: relative;
}

.mobile__currency .drop-top {
    top: 0 !important;
    width: 54px;
}

.mobile__currency .currency-item {
    margin-left: 0 !important;
}

.mobile__currency .current-currency {
    margin-bottom: 10px;
    margin-top: 10px;
}

.mobile__currency .current-currency p {
    font-size: 17px;
    font-weight: 600;
    color: #51555e;
}

.mobile__currency .dropdown-inner__currency p {
    font-size: 15px;
    font-weight: 600;
    color: #51555e;
}

.mobile__currency .current-currency span {
    margin-left: 5px;
}

.mobile__currency .dropdown-inner__currency span {
    margin-left: 5px;
}

.mobile__currency .dropdown-inner__currency .fa-chevron-up {
    width: 9px;
    height: 11px;
}

.mobile__currency .dropdown-inner__currency .fa-chevron-up {
    color: #51555e;
}

.mobile__currency #show-currency .svg-inline--fa {
    width: 9px;
    height: 11px;
}

.mobile__currency .currency-select {
    font-size: 14px;
    padding: 3px 12px;
    text-align: left;
    color: #51555e;
}

.mobile__account {
    display: flex;
    padding: 20px;
    position: relative;
}

.mobile__account-link {
    display: flex;
    font-size: 17px;
}

.mobile__account-img {
    margin-right: 10px;
}

.mobile__wishlist {
    border-top: 1px solid #ebebeb;
}

.mobile__wishlist-link {
    display: flex;
    font-size: 17px;
}

.mobile__wishlist-img {
    margin-right: 10px;
}

.mobile__wishlist .count__inwishlist {
    position: relative;
    transform: none;
    left: 10px;
}

@media (max-width: 400px) {
    .mobile__tools .man__tool {
        display: none;
    }

    .mobile__tools div {
        margin-left: 5px;
    }
}

.remodal__callback .remodal-close {
    left: auto;
}

.captcha__error {
    color: red;
    font-size: 14px;
    margin-top: -20px;
    display: block;
}

.handle__sticker.sticker-right-bottom {
    bottom: 0;
    right: 20px;
    top: auto;
    left: auto;
}

@media (max-width: 768px) {
    .handle__sticker.sticker-right-bottom {
        right: 0;
    }

    .handle__sticker.sticker-right-bottom .inner__sticker {
        margin-bottom: 0;
        font-size: 14px;
    }
}

/* taras edits*/

.studio-addresses-item-img {
    width: 100%;
}
.studio-addresses-item-img-slide img {
    width: 100%;
    object-fit: cover;
}
.studio-addresses-item-img .slick-prev:before {
    content: url("/image/catalog/icons/studio-img-prev.svg");
}

.studio-addresses-item-img:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition-duration: 0.4s;
    height: 100%;
    width: 40px;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
}
.studio-addresses-item-img:after {
    content: "";
    position: absolute;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition-duration: 0.4s;
    top: 0;
    z-index: 5;
    height: 100%;
    width: 40px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
}
.studio-addresses__item:hover .studio-addresses-item-img:after,
.studio-addresses__item:hover .studio-addresses-item-img:before {
    opacity: 1;
    visibility: visible;
}
.studio-addresses-item-img .slick-prev {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 12px;
    width: 9px;
    height: 18px;
    z-index: 10;
    cursor: pointer;
}
.studio-addresses-item-img .slick-next {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    width: 9px;
    height: 18px;
    cursor: pointer;
    right: 12px;
    z-index: 10;
}

.studio-addresses-item-img .slick-next:before {
    content: url("/image/catalog/icons/studio-img-next.svg");
}
@media (max-width: 1440px) {
    .studio-addresses-item-img-slide img {
        width: 100%;
        object-fit: cover;
    }

    .studio-addresses__left {
        width: 60px;
        min-width: 60px;
    }
    .studio-addresses__right {
        width: calc(100% - 60px);
    }
}
#slider {
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
}
#slider img {
    width: 100%;
}
.bottom-header:before {
    content: "";
    height: 100%;
    width: calc((100vw - 100%) / 2 - 2px);
    left: -2px;
    position: absolute;
    top: 0;
    transform: translateX(-100%);
    background-color: var(--glaccent);
}
.bottom-header:after {
    content: "";
    height: 100%;
    width: calc((100vw - 100%) / 2 - 2px);
    right: -2px;
    transform: translateX(100%);
    position: absolute;
    top: 0;
    background-color: var(--glaccent);
}

/* CODE  */

.package {
    display: grid;
    padding: 35px 60px;
    background-color: #f7f7f7;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.package-elem.large {
    grid-column: 1 / 3;
}

.package-elem.large .package-elem-wrap {
    grid-template-columns: repeat(4, 1fr);
}

.package-elem-title {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 700;
    color: #51555e;
}

.package-elem-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
}

.package-checkbox-img {
    margin-right: 20px;
    max-width: 67px;
    max-height: 108px;
}

.package-checkbox-img-media {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.package-checkbox {
    display: flex;
    font-size: 13px;
    font-weight: 400;
    color: #51555e;
    align-items: center;
}

.package-checkbox-input {
    display: block;
    position: relative;
    margin-right: 15px;
    width: 26px;
    height: 26px;
    background-color: #fff;
    border: 1px solid #8a909b;
    border-radius: 4px;
    flex-shrink: 0;
}

@media screen and (max-width: 1366px) {
    .package,
    .package-elem-wrap {
        gap: 20px;
    }
    .package-checkbox-img {
        margin-right: 15px;
    }

    .package-checkbox-input {
        margin-right: 10px;
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 1440px) {
    .package {
        padding-inline: 50px;
    }
}

@media screen and (max-width: 1124px) {
    .package {
        grid-template-columns: 1fr;
    }

    .package-elem.large {
        grid-column: auto;
    }

    .package-elem.large .package-elem-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .package {
        padding: 30px;
    }
}

@media screen and (max-width: 624px) {
    .package {
        padding: 20px;
    }

    .package-elem-title {
        font-size: 15px;
    }

    .package-checkbox-img {
        margin-right: 20px;
        max-width: 47px;
        max-height: 76px;
    }

    .package-elem-wrap,
    .package-elem.large .package-elem-wrap {
        grid-template-columns: 1fr;
    }

    .package-elem-wrap {
        gap: 10px;
    }

    .package-checkbox {
        font-size: 12px;
    }
}

.timer_sale .ts_heading {
    display: flex;
    /* flex-direction: row; */
    align-items: flex-start;
    padding: 15px 20px;
    gap: 10px;
    width: 100%;
    max-width: 768px;
    min-height: 60px;
    /* #EBEBEB */
    background: #ebebeb;
    /* Inside auto layout */
    /* flex: none; */
    order: 1;
    flex-grow: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}

.timer {
    width: 100px;
    height: 30px;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    margin-left: -(550px / 2);
    margin-top: -(248px / 2);
    color: #ea3323;
}

&--clock {
    width: 100%;
    position: relative;
    padding-left: 6px;
    margin-top: 22px;
    overflow: hidden;
}
.clock-display-grp {
    width: 100%;
    position: relative;
}
.number-grp {
    width: auto;
    display: block;
    height: 30px;
    float: left;
    overflow: hidden;
}
.number-grp-wrp {
    width: 100%;
    position: relative;
}
.num {
    width: 100%;
    position: relative;
    height: 30px;
}
.timer p {
    width: auto;
    display: table;
    font-size: 20px;
    font-weight: bold;
}

.clock-separator {
    width: auto;
    float: left;
    display: block;
    height: 30px;
}

.timer-sale-products {
    display: grid;
    padding: 20px 40px;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media screen and (max-width: 768px) {
    .timer-sale-products {
        padding: 20px;
        grid-template-columns: 1fr;
    }

    .timer-sale-products .product__body-img img {
        width: 100%;
    }
}

.timer-sale-products .product__body-img {
    height: 100%;
    max-height: 330px;
}

.timer-sale-products .product__body-footer {
    background-color: #fff;
}

/* .timer-sale-products .product__body-price__price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
} */

.timer-sale-products .product__body-price__price .price-new {
    font-size: 20px;
}

.timer-sale-products .product__body-price__price .price-old {
    font-size: 14px;
}
.form__success.timer-wrap {
    margin-top: -70px;
}
.product__option .radio input[type="text"] {
    display: block;
    max-width: 70px;
    text-align: center;
    background: no-repeat;
    height: 30px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: normal;
    color: var(--gaccent);
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #ebebeb;
}

.product__option .radio input[type="text"]:disabled {
    opacity: 0.3;
}
.red_border {
    border: 1px solid #ff0000;
}

.panel__heading-sub {
    color: var(--secondary);
    font-family: var(--font);
    font-size: 12px;
    margin-top: 15px;
    text-transform: none;
}

div.widget-visible iframe {
    pointer-events: none !important;
}

.widget-visible iframe.open {
    pointer-events: none !important;
}

.bonus-discount {
    display: none;
    flex-direction: column;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    padding: 20px 0;
    margin-bottom: 20px;
}

#tmd_confirmation .bonus-discount {
    display: flex;
}

.bonus-discount-title {
    color: #51555e;
    font-size: 13px;
    line-height: 13px;
    font-weight: 400;
    margin-bottom: 14px;
}

.bonus-discount-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.bonus-discount-group-input {
    width: 60%;
    border: none;
    padding: 0 20px;
    color: #51555e;
    font-size: 14px;
    font-weight: 400;
    -moz-appearance: textfield;
}

.bonus-discount-group-input::-webkit-inner-spin-button,
.bonus-discount-group-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bonus-discount-group-btn,
.bonus-discount-group-btn-cancel {
    line-height: 50px;
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 0 29px;
    text-align: center;
    width: 40%;
}

.bonus-discount-group-btn-cancel {
    margin-left: 20px;
    width: fit-content;
}

.bonus-discount-group-btn-cancel:hover,
.bonus-discount-group-btn:hover {
    cursor: pointer;
}

.bonus-discount-danger,
.bonus-discount-warning {
    color: #8a909b;
    font-size: 13px;
    line-height: 13px;
}

.bonus-discount-danger {
    color: red;
}

.bonus-discount-used .details__item {
    width: 100%;
    margin: 0;
}

.bonus-discount-used .details__item .details__text {
    display: flex;
    align-items: center;
    justify-content: end;
}

.bonus-discount-used .details__item .details__text .currency__symbol {
    margin-left: 4px;
}

.bonus-discount-used .bonus-discount-group-btn-cancel-mb {
    display: none;
    margin-left: 0;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .bonus-discount-group-btn {
        padding: 0 30px;
        width: 70%;
    }

    .bonus-discount-used .details__item .bonus-discount-group-btn-cancel {
        display: none;
    }

    .bonus-discount-used .bonus-discount-group-btn-cancel-mb {
        display: block;
    }
}

@media screen and (max-width: 1225px) {
    .bonus-discount-group-btn {
        padding: 0 12px;
        text-align: center;
        width: 50%;
        font-size: 10px;
    }
    .bonus-discount-group-input {
        width: 50%;
    }
}

/* Partnership */
.partnership-btn {
    border: 2px solid var(--accent);
    padding: 11.5px 38px;
    font-weight: bold;
    background-color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    line-height: 37px;
    min-width: 210px;
    cursor: pointer;
    transition: background-color 0.5s ease, color 0.5s ease;
    -webkit-transition: background-color 0.5s ease, color 0.5s ease;
    -moz-transition: background-color 0.5s ease, color 0.5s ease;
    -ms-transition: background-color 0.5s ease, color 0.5s ease;
    -o-transition: background-color 0.5s ease, color 0.5s ease;
}

.partnership-btn:hover {
    background-color: #fff;
    color: var(--accent);
}

.partnership-btn:focus {
    background-color: #292929;
    border: 2px solid #292929;
    color: #fff;
}

.partnership--section {
    margin-top: 100px;
}

.partnership-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
}

.partnership-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--secondary);
}

.partnership-text p {
    margin-bottom: 0;
}

.partnership-text p:not(:last-child) {
    margin-bottom: 20px;
}

.partnership-text b,
.partnership-text strong {
    font-weight: 700;
}

.partnership__banner {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 60px;
    min-height: 600px;
}

.partnership__banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.partnership__banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partnership__banner-content {
    background-color: #fff;
    max-width: 609px;
    width: 100%;
    padding: 60px;
}

.partnership__banner-logo {
    margin-bottom: 16px;
}

.partnership__banner-logo img {
    width: 100%;
    height: auto;
    max-width: 136px;
}

.partnership__banner-title {
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
}

.partnership__banner-text {
    margin-top: 16px;
}

.partnership__banner-btn-wrapper {
    margin-top: 40px;
}

.partnership__services-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.partnership__services-content {
    width: 100%;
    max-width: 635px;
}

.partnership__services-text {
    margin-top: 20px;
}

.partnership__services-notify {
    margin-top: 40px;
    font-weight: 700;
    line-height: 1.5;
    font-size: 14px;
}

.partnership__services-btn-wrapper {
    margin-top: 20px;
}

.partnership__services-image {
    max-width: 768px;
}

.partnership__services-image img {
    width: auto;
    height: auto;
    max-width: 100%;
}

.partnership__advantages-head {
    margin-bottom: 30px;
    text-align: center;
}

.partnership__advantages-cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (3fr) [1];
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.partnership__advantages-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 40px 30px;
    color: var(--secondary);
}

.partnership__advantages-card-image {
    margin-bottom: 30px;
}

.partnership__advantages-card-image img {
    width: 100%;
    height: auto;
    max-width: 150px;
}

.partnership__advantages-card-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.partnership__advantages-card-description {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.partnership__models-head {
    max-width: 768px;
    margin: 0 auto 30px;
    text-align: center;
}

.partnership__models-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership__models-image img {
    width: auto;
    height: auto;
}

.partnership__works-wrapper {
    display: flex;
    gap: 30px 90px;
}

.partnership__works-content {
    width: 100%;
    max-width: 768px;
}

.partnership__works-title {
    margin-bottom: 30px;
}

.partnership__works-collapse-item {
    counter-increment: item;
    padding: 30px 0;
    border-bottom: 1px solid #ebebeb;
}

.partnership__works-collapse-item:first-child {
    border-top: 1px solid #ebebeb;
}

.partnership__works-collapse-toggle {
    position: relative;
    color: #51555e;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    min-height: 30px;
    padding-right: 50px;
    cursor: pointer;
    user-select: none;
    display: flex;
    transition: opacity 0.5s ease;
}

.partnership__works-collapse-toggle:hover {
    opacity: 0.75;
}

.partnership__works-collapse-toggle:hover .partnership__works-collapse-toggle-plus {
    transform: translateY(-50%) rotate(90deg);
}

.partnership__works-collapse-toggle:before {
    content: counter(item) ".";
    margin-right: 10px;
}

.partnership__works-collapse-toggle-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: #000;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.partnership__works-collapse-toggle-minus {
    opacity: 0;
    transform: translateY(-50%) rotate(90deg);
}

.partnership__works-collapse-body {
    font-size: 14px;
    line-height: 1.5;
    color: var(--secondary);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.partnership__works-collapse-item.is-active .partnership__works-collapse-toggle-minus {
    opacity: 1;
    transform: translateY(-50%);
}

.partnership__works-collapse-item.is-active .partnership__works-collapse-toggle-plus {
    opacity: 0;
    transform: translateY(-50%);
}

.partnership__works-collapse-item.is-active .partnership__works-collapse-body {
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
}

.partnership__works-image {
    background: #f7f7f7;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership__works-image img {
    width: auto;
    height: auto;
}

.partnership__feedback {
    margin-bottom: 100px;
}

.partnership__feedback-head {
    max-width: 768px;
    margin: 0 auto 30px;
    text-align: center;
}

.partnership__feedback-wrapper {
    display: flex;
    gap: 30px 90px;
    padding-top: 20px;
}

.partnership__feedback-col {
    flex: 1;
}

.partnership__feedback-col-title {
    color: #51555e;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.partnership__feedback-col-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--secondary);
    margin-bottom: 20px;
}

.partnership__feedback-form-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.partnership__feedback-form-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
}

.partnership__feedback-form-item--half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
}

.partnership__feedback-form-label {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 14px;
}

.partnership__feedback-form-input {
    max-width: 100%;
    width: 100%;
    height: 50px;
    border: 1px solid #ebebeb;
    background-color: #ffffff;
    color: #8a909b;
    font-size: 13px;
    padding: 0 19px;
    transition: border 0.5s ease;
}

.partnership__feedback-form-input:hover {
    border-color: var(--secondary);
}

.partnership__feedback-form-submit-wrapper {
    margin-top: 30px;
}

.partnership__feedback-col-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.partnership__feedback-col-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    transition: color 0.5s ease;
}

.partnership__feedback-col-link:hover {
    color: var(--secondary);
}

@media (max-width: 1725px) {
    .partnership__banner {
        padding: 44px;
        min-height: 482px;
    }

    .partnership__banner-content {
        padding: 40px;
        max-width: 555px;
    }

    .partnership__services-content {
        max-width: 508px;
    }

    .partnership__services-image {
        max-width: 615px;
    }

    .partnership__advantages-card {
        padding: 30px 30px 20px;
    }

    .partnership__advantages-card-image img {
        max-width: 100px;
    }

    .partnership__models-head {
        max-width: 616px;
    }

    .partnership__works-content {
        max-width: 615px;
    }
}

@media (max-width: 1199.98px) {
    .partnership__works-wrapper {
        flex-direction: column;
    }

    .partnership__works-content {
        max-width: 100%;
    }

    .partnership__works-title {
        margin-bottom: 20px;
    }

    .partnership__works-collapse-item {
        padding: 20px 0;
    }

    .partnership__works-collapse-toggle {
        font-size: 17px;
        min-height: initial;
        padding-right: 40px;
    }

    .partnership__works-collapse-toggle-icon {
        width: 24px;
        height: 24px;
    }

    .partnership__works-collapse-body {
        font-size: 13px;
        line-height: 1.61;
    }

    .partnership__works-collapse-item.is-active .partnership__works-collapse-body {
        margin-top: 10px;
    }
}

@media (max-width: 991.98px) {
    .partnership-btn {
        padding: 5.5px 34px;
        font-size: 13px;
        min-width: 250px;
    }

    .partnership-title {
        font-size: 21px;
        line-height: 1.3;
    }

    .partnership-text {
        font-size: 13px;
        line-height: 1.61;
    }

    .partnership-text p:not(:last-child) {
        margin-bottom: 10px;
    }

    .partnership--section {
        margin-top: 50px;
    }

    .partnership__banner {
        padding: 0;
        min-height: initial;
        align-items: initial;
    }

    .partnership__banner-image {
        position: relative;
        z-index: 1;
    }

    .partnership__banner-content {
        max-width: 100%;
    }

    .partnership__banner-logo img {
        max-width: 104px;
    }

    .partnership__banner-title {
        font-size: 20px;
    }

    .partnership__banner-btn-wrapper {
        margin-top: 22px;
    }

    .partnership__services-wrapper {
        flex-direction: column;
        align-items: initial;
        gap: 30px;
    }

    .partnership__services-content {
        max-width: 100%;
    }

    .partnership__services-text {
        margin-top: 10px;
    }

    .partnership__services-notify {
        margin-top: 20px;
        line-height: 1.61;
        font-size: 13px;
    }

    .partnership__services-image {
        max-width: 100%;
    }

    .partnership__advantages-head {
        margin-bottom: 20px;
    }

    .partnership__advantages-cards {
        -ms-grid-columns: (2fr) [1];
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partnership__advantages-card {
        padding: 10px;
    }

    .partnership__advantages-card-image {
        margin-bottom: 20px;
    }

    .partnership__advantages-card-image img {
        max-width: 80px;
    }

    .partnership__advantages-card-title {
        font-size: 17px;
    }

    .partnership__advantages-card-description {
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.61;
    }

    .partnership__models-head {
        max-width: 100%;
    }

    .partnership__feedback {
        margin-bottom: 50px;
    }

    .partnership__feedback-head {
        max-width: 100%;
    }

    .partnership__feedback-wrapper {
        padding-top: 0;
        flex-direction: column;
    }

    .partnership__feedback-col-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .partnership__feedback-form-items {
        gap: 20px;
    }

    .partnership__feedback-form-item--half {
        -ms-flex: 0 0 calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }

    .partnership__feedback-form-submit-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .partnership__feedback-col-link {
        font-size: 13px;
        line-height: 1.61;
    }
}

@media (max-width: 767.98px) {
    .partnership__banner-content {
        padding: 20px;
    }

    .partnership__banner-text br {
        display: none;
    }

    .partnership__banner-btn-wrapper {
        display: flex;
        flex-direction: column;
    }

    .partnership__services-btn-wrapper {
        display: flex;
        flex-direction: column;
    }

    .partnership__advantages-cards {
        -ms-grid-columns: (1fr) [1];
        grid-template-columns: repeat(1, 1fr);
    }

    .partnership__feedback-form-item--half {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .partnership__feedback-form-submit-wrapper {
        align-items: initial;
    }
}

#partnership__feedback-callback {
    margin-bottom: 10px;
    font-size: 16px;
}

.item__center-upper-like {
    transition: 0.3s linear;
    cursor: pointer;
}

.item__center-upper-likes:hover .item__center-upper-like {
    /* filter: brightness(0%) !important; */
}

.account__form .form__group label.radio__inline {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;
    color: #121313;
    margin-left: 15px;
}

.account__subscribe-input-check {
    display: flex;
}

.account__subscribe-input-holder {
    width: 25px;
    height: 25px;
    position: absolute;
}

.account__subscribe-input-check {
    border-radius: 3px;
    border: 1px solid #121313;

    background: #f2f3f4;
}

.account__subscribe-input-check.active {
    background: #121313 !important;
}

.account__form .button__account .newsletter__edit {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    width: 100%;
    max-width: 434px;
    color: #fff;
    padding-top: 18px;
    padding-bottom: 19px;
    background: #121313;
    border: 1px solid #121313;
    transition: 0.3s linear;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    border-radius: 3px;
    cursor: pointer;
}

@media screen and (max-width: 1200px) {
    .account__form .button__account .newsletter__edit {
        margin-top: 40px;
        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .account__subscribe-title {
        font-size: 18px !important;
        font-weight: 400 !important;
        line-height: 21.78px !important;
        text-align: left !important;

        margin-bottom: 21px !important;
    }
}

.drop-top p {
    font-weight: 500;
}

.currency-select__current,
.language-select__current {
    display: none !important;
}

.dropdown-currency__block {
    align-items: start;
}

.instagram .instagram__container .instagram__block {
    padding-left: 0;
}

.order label {}

.choose__block input,
.order__bonuses-group input,
.order__call input,
.order__delivery-row input,
.order__pack-row input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.order__bonuses-group input {
    z-index: 4;
}

.choose__block input + label,
.order__bonuses-group input + label,
.order__call input + label,
.order__delivery-row input + label,
.order__pack-row input + label {
    display: inline-flex;
    align-items: center;
    user-select: none;

    pointer-events: none;

    margin-bottom: 0 !important;
}

.order__bonuses-group input + label,
.order__call input + label,
.order__pack-row input + label {
    pointer-events: auto;
}

.choose__block input + label::before,
.order__bonuses-group input + label::before,
.order__call input + label::before,
.order__delivery-row input + label::before,
.order__pack-row input + label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.choose__block input:checked + label::before,
.order__bonuses-group input:checked + label::before,
.order__call input:checked + label::before,
.order__delivery-row input:checked + label::before,
.order__pack-row input:checked + label::before {
    border-color: #121313;
    background-color: #121313;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.choose__block input:disabled + label::before,
.order__bonuses-group input:disabled + label::before,
.order__call input:disabled + label::before,
.order__delivery-row input:disabled + label::before,
.order__pack-row input:disabled + label::before {
    background-color: #fff;
}

.cards4__items--maylike {
    display: flex;
    max-width: 100vw;
    width: 100%;

    overflow-x: scroll;

    padding-bottom: 10px;
}

.cards4__items--maylike {}

.cards4__item-upper {
    height: auto;
    overflow: hidden;
}

.cards4__items--maylike .cards4__item {
    min-width: 25%;
}

.cards4__items--maylike::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.navpage__container {
    padding-left: 40px;
    padding-right: 40px;
}

.item__size-button.active {
    border: 1px solid #121313 !important;
    color: #ffffff !important;
    background: #121313 !important;
}

.reviews__item:before {
    display: none;
}

.reviews__item {
    margin-left: 0;

    display: flex;
    flex-direction: column;

    padding: 50px 0 30px;

    background: #ffffff;
}

.review__top-right {
    display: flex;
    align-items: center;
}

.reviews__item .review__author h3 {
    margin-right: 16px;
}

.reviews__block {
    border-bottom: none;
}

.reviews__block .reviews__item {
    border-bottom: 1px solid #cad4df;
}

.reviews__item .review__author .review__rating .check__star {
    margin-left: 2px;
}

.main__block-img-holder {
    width: 100px;
    height: 100px;
}

.review__input-row {
    justify-content: space-between;
    align-items: end;
}

.review__inputs {
    display: flex;
}

.image_button {
    position: relative;
}

.image_button #file-names {
    position: absolute;
}

.image_button input {}

/* Скрываем стандартный input */
input[type="file"] {
    display: none;
    /* Скрываем сам input, а не label */
}

/* Стили для кастомной кнопки (label) */
.custom-file-upload {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 63px;

    background-color: #000000;
    border: 1px solid #000000;
    color: #fff;
    cursor: pointer;

    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: center;

    transition: 0.3s linear;
}

/* Стили для области с названиями файлов */
#file-names {
    margin-top: 10px;
    font-size: 12px;
    color: #121313;

    width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-file-upload:hover {
    background-color: #fff;
    color: #000000;
}

@media (max-width: 1366px) {
    .review__input-row {
        justify-content: space-between;
        align-items: start;
        flex-direction: column;
    }

    .image_button {
        margin-top: 40px;

        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .review__inputs {
        flex-direction: column;

        width: 100%;
    }
}

@media (max-width: 414px) {
    .custom-file-upload {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

.buy__oneclick {
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;
    color: #121313;
    margin-top: 16px;
    background: #f2f3f4;

    padding-top: 21px;
    padding-bottom: 21px;

    width: 100%;
    text-align: center;

    background: #f2f3f4;

    border: none;
}

@media screen and (max-width: 991px) {
    .buy__oneclick {
        padding-top: 14px;
        padding-bottom: 14px;
        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;
    }
}

.item__row2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product__rating .rating a {
    margin-right: 14px;

    text-decoration: underline;
}

.item__center,
.item__left {
    top: 85px;
}

@media screen and (max-width: 1200px) {
    .item__center,
    .item__left {
        top: 0;
    }
}

.menu__upper-circle.Sale {
    background-color: rgb(246, 82, 92);
}

.menu__upper-group.Sale .menu__upper-circle {
    background-color: rgb(246, 82, 92);
}

.fa-minus:before,
.fa-plus:before {
    position: relative;
}

.category_news_nav .menu__upper-circle {
    background: #000000 !important;
}

@media screen and (max-width: 1600px) {
    .ocf-option-name {
        padding: 0 16px;
    }

    .categories__row {
        flex-direction: row;
    }

    .categories__row-right {
        margin-top: 0 !important;
    }
}

@media screen and (max-width: 1400px) {
    .categories__row-left {
        font-size: 12px;
    }
    .categories__row-right-filter {
        /* font-size: 12px; */
    }
}

@media screen and (max-width: 1280px) {
    .categories__row-left {
        font-size: 10px;
    }
    .categories__row-right-filter {
        /* font-size: 10px; */
        font-size: 14px;
    }
    .ocfilter-option .ocf-option-name {
        font-size: 12px !important;
    }
}

@media screen and (max-width: 1200px) {
    .categories__row-right {
        margin-top: 24px !important;
    }
    .categories__row {
        flex-direction: column;
    }
}

.main__block-img-holder {
    width: 100px;
    height: 100px;
}

.main__block-img {
    object-fit: cover;
}

.preloader-img {
    position: absolute;
}

.preloader-img1 {
    z-index: 4;
}

.preloader-img2 {
    z-index: 3;
}

.preloader-img3 {
    z-index: 4;
    display: none;
}

@media screen and (max-width: 1200px) {
    .preloader-img2 {
        display: none;
    }

    .preloader-img3 {
        display: block;
    }
}

.panel__heading .panel__heading-sub {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 16.94px !important;
    text-align: left !important;

    color: #121313;

    max-width: 603px;

    margin-top: 18px;
}

.ship__img-holder {
    width: 24px;
}

.popover__text {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 16.94px !important;
    text-align: left !important;

    color: #121313;

    padding: 4px 4px 4px 4px !important;
}

.discount__info {
    cursor: help;
}

.panel__heading-sub-text-holder {
    margin-left: 4px;
}

.panel__heading-sub {
    display: flex;
}

.panel__heading-sub .required {
    margin-right: 4px;
}

.has-error .control-label {
    color: #f53f4a;
}

.text-danger {
    color: #f53f4a !important;

    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
}

.has-error .form__control {
    border-color: #f53f4a;
}

@media screen and (max-width: 991px) {
    .text-danger {
        font-size: 14px;
        font-weight: 400;
        line-height: 16.94px;
    }
}

.footer__lower .footer__col:nth-child(2) {
    max-width: 300px;
}

.footer__lower .footer__col:nth-child(3) {
    max-width: 359px;
}

.order__item-counter .form__quantity {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.fa-minus:before {
    content: "-" !important;

    font-size: 16px;
    font-weight: 500;
    line-height: 16px;

    margin-right: 3px;

    font-family: "Inter", sans-serif;
}

.fa-plus:before {
    content: "+" !important;
    line-height: 16px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.order__pack-row input {
    z-index: 3;
}

.footer__lower .footer__col:nth-child(1) {
    max-width: 371px;
}

.min__block.is__error {
    border: none;

    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    text-align: left;

    color: #f53f4a;
}

.order__item-no-stock {
    border-bottom: 1px solid #f53f4a !important;
}

.order__item-no-stock .order__item-text {
    color: #f53f4a;
}

.order__item-no-stock .order__item-counter {
    color: #f53f4a !important;

    border: 1px solid #f53f4a !important;
}

.order__item-no-stock .order__item-counter .form__quantity {
    color: #f53f4a !important;
}

.order__input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

@media screen and (max-width: 991px) {
    .order__input-group {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.select__city {}

.form__group {}

.order .form-control {
    padding-left: 16px;
    padding-right: 16px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    padding-right: 0;
}

.btn__notify-goods {
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;
    color: #121313;
    margin-top: 16px;
    background: #f2f3f4;
    padding-top: 21px;
    padding-bottom: 21px;
    width: 100%;
    text-align: center;
    background: #f2f3f4;
    border: none;

    cursor: pointer;
}

.item__button-add {
    margin-top: 16px;
}

@media screen and (max-width: 991px) {
    .btn__notify-goods {
        padding-top: 14px;
        padding-bottom: 14px;
        font-size: 14px;
        line-height: 15.48px;
    }
}

.select2-container .select2-selection--single {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
    padding-right: 0 !important;

    font-size: 16px !important;
}

.dropdown-menu .fa-chevron-up:before {
    font-size: 10px;
}

.header__right-sector .fa-chevron-down:before {
    font-size: 10px;
}

.main__block-lower-price--old {
    margin-left: 0;
}

.main__block-lower-price {
    white-space: nowrap;
}

.categories__row .main__block a {
    width: auto;
}

.language-select {
    font-weight: 500;
}

.dropdown-inner__currency .fa-chevron-up,
.dropdown-inner__language .fa-chevron-up {
    color: #121313;
}

.dropdown-currency__block {
    background: #f2f3f4;
}

.dropdown-currency__block,
.dropdown-language__block {
    width: 100%;
    max-width: 91px;

    min-width: 91px;
}

.dropdown-currency__block {
    padding-left: 33px !important;
}

.dropdown-currency__block,
.dropdown-language__block {
    max-height: 125px;
}

footer .subscribes__button {
    right: 14px !important;
}

.footer__container {
    position: relative;
}

.footer__button-up {
    cursor: pointer;

    right: 0;

    position: absolute;
    top: auto;

    bottom: 36px;
}

@media screen and (max-width: 1200px) {
    .footer__lower {
        grid-template-areas: "footer--lower-col-2 footer--lower-col-3" "footer--lower-col-1 .";
    }
}

@media screen and (max-width: 991px) {
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .footer .subscribes__left {
        justify-content: start;
    }

    footer .subscribes__button {
        right: 14px !important;
        bottom: 19px;
    }
}

.icon__buyoneclick {
    margin-left: 10px;
    position: relative;
    top: -2px;
}

.oneclick__block {}

#modal-buyoneclick .remodal__content {
    max-width: unset !important;
}

.buyclick__wrap h3 {
    font-size: 35px;
    font-weight: 500;
    line-height: 42.36px;
    text-align: center;

    color: #121313;

    margin-bottom: 30px;
}

.buyclick__field input {
    width: 100%;

    height: 55px;
    border-radius: 3px;
    border: 1px solid #121313 !important;

    background: #f2f3f4;

    font-family: "Inter", sans-serif;

    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;

    padding-left: 20px;

    margin-top: 16px;
}

.buyclick__field input::placeholder {
    color: #121313;
}

.remodal-close.product__remodal-close {
    top: 24px;
    right: 24px;
}

.buyclick__field {
    margin-bottom: 0;
}

.buyclick__button {
    width: 100%;

    height: 55px;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;

    border-radius: 3px;
    transition: 0.3s linear;
    background: #121313;
    color: #ffffff;

    border: 1px solid #121313;

    margin-top: 30px;

    text-align: center;

    cursor: pointer;
}

#modal-buyoneclick .buyclick__button:hover {
    background: #f2f3f4;
    color: #121313;
}

#modal-buyoneclick .boc_form {
    width: 100%;

    max-width: 368px;

    margin-top: 14px;
}

#modal-buyoneclick {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    max-width: 705px;
    width: 100%;

    padding-top: 60px;
    padding-bottom: 69px;

    background: #f2f3f4;

    position: relative;
}

.oneclick__block {}

.oneclick__closer {
    position: absolute;

    top: 24px;
    right: 24px;

    cursor: pointer;
}

.remodal {
    background: #f2f3f4;
}

@media screen and (max-width: 991px) {
    .remodal-wrapper {
        padding: 30px 20px 27px;
    }

    #modal-buyoneclick {
        max-width: 393px;
        width: 100%;
    }

    .oneclick__closer {
        top: 21px;
        right: 24px;
    }

    .buyclick__wrap h3 {
        font-size: 20px;
        font-weight: 500;
        line-height: 24.2px;
    }

    #modal-buyoneclick .boc_form {
        max-width: 353px;
    }

    .buyclick__field input {
        height: 43px;

        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;

        margin-top: 16px;
    }

    .buyclick__button {
        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;

        height: 43px;
    }
}

.has-error {
    position: relative;
}

.text-danger {
    top: 0;

    background: #fff;

    position: absolute;

    margin-top: 0 !important;

    width: fit-content;
    /* Ширина контейнера */
    white-space: nowrap;
    /* Текст не переносится на новую строку */
    overflow: hidden;
    /* Обрезает содержимое, выходящее за пределы контейнера */
    text-overflow: ellipsis;
    /* Добавляет троеточие, если текст обрезан */
}

@media screen and (max-width: 991px) {
    .order__form .control-label {
        font-size: 14px;
        line-height: 16.94px;
    }
}

.order__item-price {
    font-weight: 600;
}

.order__item-counter {
    max-width: 107px;
    width: 100%;
    justify-content: space-between;
}

.np__search {
    position: static !important;
}

.categories__container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.categories__row {
    padding: 0 40px;
}

.ocf-option-values.option__price {
    width: 100% !important;
}

.navpage-link {
    color: #484848 !important;
}

.navpage .navpage-link:last-child {
    color: #a5b4cc !important;
}

.categories__row .categories__row-outer {
    height: 100%;
    width: 100%;
}
.categories__img {
    height: 100%;
    width: 100%;
}

.season__img {
    height: 100%;
    width: 100%;
}

.menu__lower--8 .menu__lower-cols {
    display: flex;
    justify-content: space-around;
}

.menu__lower--8 .menu__lower-row-icon-holder {
    width: 85px;
    height: 85px;
    border-radius: 55px;

    background: #f2f3f4;
}

.ocf-option-values {
    width: 100% !important;
}

@media screen and (max-width: 1200px) {
    .menu__lower--8 .menu__lower-row-icon-holder {
        width: 32px;
        height: 32px;
    }

    .menu__lower--8 .menu__lower-row-icon-holder .menu__lower-row-icon {
        max-width: 18px;
    }
}

@media screen and (max-width: 991px) {
    .menu__lower--8 .menu__lower-cols {
        flex-direction: column;
    }
}

.order__input-text1 {
    margin-bottom: 0;
}

.order .panel__body {
    margin-top: 0;
}

.order__input-group-row {
    margin-bottom: 0;
}

.reviews__button-open {
    height: 55px;
    width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    border: 1px solid #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;
    color: #121313;
    cursor: pointer;
    transition: 0.3s linear;

    margin-top: 40px;
}

@media screen and (max-width: 991px) {
    .reviews__button-open {
        padding-top: 14px;
        padding-bottom: 14px;
        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;
        height: auto;

        margin-top: 20px;
    }
}

@media screen and (max-width: 700px) {
    .reviews__button-open {
        margin-top: 20px;
        width: 100%;
    }
}

.item__dresscheck {
    display: none;
}

.remodal.modal-sizes .remodal-close {
    left: auto;
    top: 25px;
    right: 25px;
}

.modal-sizes .description-style h3 {
    font-size: 35px;
    font-weight: 500;
    line-height: 42.36px;
    text-align: center;

    color: #121313;
}

.ocfilter .selected-options {
    width: 100vw !important;

    padding-left: 40px !important;
    padding-right: 40px !important;
}

@media screen and (max-width: 840px) {
    .ocfilter .selected-options {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media screen and (max-width: 700px) {
    .ocfilter .selected-options {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.inst-feeds-popup {
    z-index: 1000;
}

.review-images {
    display: flex;
    flex-wrap: wrap;
}

.popup-image {
    margin-right: 20px;
    margin-top: 20px;
}

.select2-search--dropdown .select2-search__field {
    background: #f2f3f4;
    color: #121313;
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;
}

.select2-results__option--selectable {
    background-color: #f2f3f4;

    font-size: 18px;
    font-weight: 500;
    line-height: 21.78px;
    text-align: left;

    color: #2e3238;
}

.select2-container--open .select2-dropdown--below {
    background-color: #f2f3f4;
    box-shadow: 0 1px 2px 0 #0000001a;
}

.select2-results {
    box-shadow: 0 1px 2px 0 #0000001a;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: none !important;
    border-bottom: 1px solid #777 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-bottom: 1px solid #121313 !important;
}

.select2-search--dropdown {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.select2-search--dropdown .select2-search__field {
    color: #121313;
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;

    font-family: "Inter", sans-serif !important;
}

.select2-results__option--selectable {
    color: #2e3238 !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #f2f3f4 !important;
    text-decoration: underline;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable:hover {
    background-color: #dddddd !important;
}

.select2-container--default .select2-results__option--selected {
    background-color: #f2f3f4 !important;
    text-decoration: underline;
}

.select2-container--default .select2-results__option--highlighted {
    background-color: #dddddd !important;
}

.select2-search--dropdown {
    background-color: #f2f3f4 !important;
}

.season__images img,
.season__row img {
    object-fit: cover;
    object-position: 50% 0;

    max-height: calc(100vh - 85px);
}

.season__images .season__img-outer,
.season__row .season__img-outer {
    overflow: hidden;

    height: 100%;
}

@media screen and (max-width: 1440px) {
    .season__row .season__img-outer {
        max-height: 555px;
    }

    .season__images .season__img-outer {
        max-height: calc(100vh);
    }
}

/*
.main__video{
    height: 733px;
} */

@media screen and (max-width: 991px) {
    .main {
        height: 623px;
    }

    .main__video {
        height: 623px;
        min-height: auto;
    }
}
.card-hover-colors .slider {
    width: 100%;
}

.cards4 .card-hover {
    height: 100% !important;
}

.selected__title {
    margin-bottom: 0;

    white-space: nowrap;
}

.ocfilter-option {
    white-space: nowrap;
}

.selected__name {
    display: none;
}

.ocfilter .selected-options {
    position: absolute;

    width: calc(100vw - 80px);

    padding: 0;

    left: 0;

    top: 89px;

    z-index: 4;

    background-color: unset;

    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.ocfilter .selected-options .filter__blockselected .ocfilter-option {
    margin-right: 14px;
}

.ocfilter .selected-options .ocfilter-option {
    border-radius: 5px;
    background-color: #f2f3f4;

    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;

    padding: 4px 10px;
}

.filter__closer-holder {
    width: 19px;
    height: 19px;
    border-radius: 37px;

    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    cursor: pointer;

    font-weight: 500;
    color: #121313;

    margin-left: 8px;
}

.ocfilter .selected-options .ocfilter-option button {
    color: #121313;
    font-weight: 500;
}

.ocfilter .selected-options .ocfilter-option span {
    font-weight: 500;
}

.ocfilter .selected-options .ocfilter-option button svg {
    fill: #000000;
    margin-left: 0;
}

.ocfilter .selected-options .ocfilter-option span {
    color: #121313;
}

.ocfilter .selected-options .selected__title button {
    color: #ffffff;

    background: #121313;

    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    padding: 4px 10px;

    border-radius: 5px !important;
}

.ocfilter .selected-options .selected__title button svg {
    display: none !important;
}

@media screen and (max-width: 1200px) {
    .ocfilter .selected-options .selected__title {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 840px) {
    .ocfilter .selected-options {
        position: static;

        justify-content: start;

        flex-wrap: wrap;
    }
}

.price__ocfilter {
    max-width: 353px;
}

.ocf-option-values.option__price {
    /*display: flex;*/
    justify-content: center;
}
.js-ocfilter-button-apply {
    display: none;
}

.noUi-background {
    background: #bebebe !important;
    border-radius: 3px;
}

.ocf-option-values .noUi-target {
    border-radius: 3px;
}

.price__ocfilter {
    flex-direction: column-reverse;
    display: flex;
    align-items: center;
}

.ocf-option-values .price__form {
    margin-top: 0;
}

#scale-price {
    margin-top: 31px;
}

.ocf-option-values .price__form .form-inline .form-group {
    position: relative;

    display: flex;
    align-items: center;
}

.ocf-option-values .price__form .form-inline .form-group::before {
    content: "₴";
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    color: #121313;

    right: 5px;
    position: absolute;

    pointer-events: none;
}

.noUi-handle {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.noUi-handle:after,
.noUi-handle:before {
    left: 8px !important;

    background-image: none;
}

.noUi-handle-upper::before {
    background-repeat: no-repeat;
    background-size: contain;
    width: 6px;
    height: 10px;

    background-image: url("data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="10" viewBox="0 0 6 10" fill="none"><path d="M1.3999 0.999999L5.3999 5L1.3999 9" stroke="%23121313" stroke-linecap="round" stroke-linejoin="round"/></svg>");

    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    color: #121313;

    right: 5px;
    position: absolute;

    pointer-events: none;

    display: block !important;

    z-index: 9;
}

.noUi-handle-lower::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="10" viewBox="0 0 6 10" fill="none"><path d="M4.6001 0.999999L0.600098 5L4.6001 9" stroke="%23121313" stroke-linecap="round" stroke-linejoin="round"/></svg>");

    background-repeat: no-repeat;
    background-size: contain;
    width: 6px;
    height: 10px;

    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    color: #121313;

    right: 5px;
    position: absolute;

    pointer-events: none;
    z-index: 9;

    display: block !important;
}

.categories__row-center-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.categories__row-center-button {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    text-align: left;

    padding: 10px 18px;
    background: #121313;

    border-radius: 3px;

    transition: 0.3s linear;

    color: #f2f3f4;

    border: 1px solid #121313;

    width: fit-content;

    cursor: pointer;
}

.categories__row-center-button .ocf-btn-label {
    font-weight: 600;
}

.categories__row-center-button:hover {
    background: #fff;

    color: #121313 !important;
}

@media screen and (max-width: 1600px) {
    .categories__row-center-holder {
        align-items: start;
    }

    .categories__row-right {
        margin-top: 24px;
        display: flex;
        justify-content: flex-end;
    }
}

.mobile__filter-icon {
    display: none;
}

.ocf-option-values input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
}

.ocf-option-values input[type="checkbox"]:checked:before {
    max-width: 8px;
}

.ocf-option-values label a {
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .mobile__filter-icon {
        display: inline-block;
    }

    .ocf-option-values {
        position: relative;

        background: #fff;

        width: 100% !important;
    }

    .ocf-option-value {
        width: 100% !important;
    }

    .ocf-option-name {}

    .ocf-option-values .price__form .form-inline input {
        border: none !important;
    }

    .ocfilter-option .ocf-option-name {
        padding-left: 0;
        padding-right: 0;

        font-size: 14px;
        font-weight: 500;
        line-height: 16.94px;
        text-align: left;

        color: #000000;

        text-transform: capitalize !important;
    }

    .categories__row-center {
        width: 100% !important;
    }

    .ocf-option-values {
        padding: 0 0 14px;
    }

    .ocfilter-option {
        border-bottom: 1px solid #f2f3f4;

        margin-bottom: 0;
    }

    .ocfilter-option:first-child {
        border-top: 1px solid #f2f3f4;
    }

    .ocf-option__value {
        width: 100% !important;
    }

    .price__ocfilter .form-inline {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between !important;
    }

    .categories {
        margin-top: 28px;
    }

    .form-group {
        margin-right: 0;
    }

    .price__ocfilter {
        max-width: unset;
    }

    .categories__row-center-button-holder {
        margin-top: 16px;
    }

    .ocfilter-option label {
        font-size: 12px;
    }

    .ocf-option-values label a {
        font-weight: 500 !important;
    }

    .badge {
        padding: 0;
    }

    .ocf-option-values .price__form .form-inline .form-group {
        margin-right: 0;
        margin-bottom: 0;
    }

    .ocf-option-values .scale {
        height: 3px;
    }

    #scale-price {
        margin-top: 20px;
    }

    .ocf-option-values .noUi-horizontal .noUi-handle {
        width: 15px !important;
        height: 15px !important;
    }

    .noUi-handle:after,
    .noUi-handle:before {
        top: 2px;
        left: 3px !important;

        width: 5px;
    }

    .noUi-origin .noUi-handle-upper::before {
        background-repeat: no-repeat;
        background-size: contain;
        width: 5px;
        top: 3px;
        background-color: transparent;

        background-image: url("data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="10" viewBox="0 0 6 10" fill="none"><path d="M1.3999 0.999999L5.3999 5L1.3999 9" stroke="%23121313" stroke-linecap="round" stroke-linejoin="round"/></svg>");
    }
    .noUi-origin .noUi-handle-lower::before {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="10" viewBox="0 0 6 10" fill="none"><path d="M4.6001 0.999999L0.600098 5L4.6001 9" stroke="%23121313" stroke-linecap="round" stroke-linejoin="round"/></svg>");

        background-repeat: no-repeat;
        background-size: contain;
        width: 5px;
        top: 3px;
        background-color: transparent;
    }

    .ocf-option-values .noUi-horizontal .noUi-handle {
        top: -6px !important;

        left: -8px !important;
    }

    .categories__row-center-button {
        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;
        text-align: left;

        width: 100%;

        text-align: center;

        height: 43px;
    }

    .ocf-option-values input[type="checkbox"] {
        width: 24px;
        height: 24px;

        min-width: 24px;
    }

    .ocf-option-values input[type="checkbox"]:checked:before,
    .ocf-option-values label:hover input[type="checkbox"]:before {
        max-width: 10px;
    }

    .ocfilter .selected-options .selected__title button {
        margin-bottom: 6px;
    }
}

.ocf-option-values .price__form .form-group .filter__fromto {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    text-align: left;

    color: #121313;
}

@media screen and (max-width: 991px) {
    .catalog__images::-webkit-scrollbar {
        height: 10px;
    }
}

.cards4-1 {
    margin-top: 60px;
}

.cards4-1 .cards4__items {
    margin-top: 0;
}

.ocfilter .selected-options {
    top: 70px !important;
}

.ocfilter .selected-options .selected__title {
    margin-bottom: 0;
}

.ocfilter .selected-options .ocfilter-option {
    background: #fff !important;
    gap: 14px;
    align-items: center;
}

.ocfilter .selected-options .ocfilter-option button {
    background: #f2f3f4 !important;
    padding: 4px 10px !important;
    border-radius: 5px !important;
}

.ocfilter .selected-options .ocfilter-option {
    flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
    .cards4-1 {
        margin-top: 40px;
    }
}

.search {}

.search__form-input {
    background: #f2f3f4;
    border: 1px solid #000000 !important;
    border-radius: 3px;
}

.search__form-checkbox-label {
    margin-bottom: 0;
}

.search__form-submit {
    box-shadow: 0 1px 2px 0 #0000001a;
}

.search__form-submit option:hover {
    background-color: #dddddd !important;
}

.search__form-checkbox {
    position: absolute;
    z-index: 1;
    opacity: 0;
}

.search__form-checkbox + label {
    display: inline-flex;
    align-items: center;
    user-select: none;

    margin-bottom: 0;
}

.search__form-checkbox + label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.search__form-checkbox:checked + label::before {
    border-color: #121313;
    background-color: #121313;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.search__form-checkbox:not(:disabled):not(:checked) + label:hover::before {
    border-color: #f2f3f4;
}

.search__form-checkbox:not(:disabled):active + label::before {
    background-color: #f2f3f4;
    border-color: #f2f3f4;
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.search__form-checkbox:focus:not(:checked) + label::before {
    border-color: #80bdff;
}
/* стили для чекбокса, находящегося в состоянии disabled */
.search__form-checkbox:disabled + label::before {
    background-color: #f2f3f4;
}

#input-payment-email:focus {
    background-color: #ffffff;
    border: 1px solid #000000;
}

.order .form__control {
    border-radius: 3px;
}

.order__bonuses-use-button:hover {
    background-color: #ffffff;
    color: #121313;
}

.order__item-text {
    margin-right: 4px;
}

@media screen and (max-width: 1300px) {
    .order__right {
        margin-top: 24px;
    }

    .order__form {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 991px) {
    .order__item-text {
        font-size: 12px;
        line-height: 14.52px;
    }
}

.account__page {
    padding-left: 0;
    padding-right: 0;
}

.account .container {
    padding-left: 0;
    padding-right: 0;
}

@media screen and (max-width: 1480px) {
    .account__left {
        padding-left: 0;
    }
}

.account__form .form__input input {
    box-shadow: 0 1px 2px 0 #0000001a;
    border-radius: 3px;
}

.account__container {
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 991px) {
    .account__container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .account__right {
        padding-left: 0;
        padding-right: 0;
    }
}

.account__data-input-outer {
    justify-content: end;
}

.account__data-input-password-eye {
    position: absolute;
    right: 16px;
    z-index: 3;

    cursor: pointer;
}

.account .navpage__container {
    padding-left: 0;
    padding-right: 0;
}

.account__menu ul li span.link__bg {
    background-color: none !important;
}

.opt_forms {}

.opt_forms h3 {
    font-size: 35px;
    font-weight: 400;
    line-height: 42.36px;
    text-align: left;
}

.contact__form.contact__form-opt {
    padding: 40px;
    width: 100%;
    background: #f2f3f4;
}

.contact__form .control-label {
    font-family: "Inter";
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;
    color: #121313;
    border: 1px solid #000000;
    background-color: #f2f3f4;
    border-radius: 3px;
    padding: 20px;
}

.contact__form .form-horizontal {
    margin-top: 40px;
}

.contact__login.contact__form-opt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 40px;
    background: #121313;
    max-width: 514px;
    width: 100%;
    margin: 0 0 0 10px;
}

.contact__login.contact__form-opt h3 {
    color: #ffffff !important;
}

.contact__login.contact__form-opt p {
    margin-top: 40px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #ffffff !important;
    max-width: 363px;
}

.contact__login.contact__form-opt .button__opt {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    color: #121313;
    transition: 0.3s linear;
    border: 1px solid #121313;
    padding-top: 18px;
    padding-bottom: 19px;
    margin-top: 162px;

    width: 100% !important;
}

.contact__form.contact__form-opt p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #121313;
    margin-top: 40px;
}

.contact__login {}

.contact__form-opt {
    margin: 0;
}

.opt_forms {
    width: 100%;
}

.contact__form.contact__form-opt {}

.contact__form.contact__form-opt .input__control {
    font-family: "Inter" !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 17.69px !important;
    text-align: left;
    color: #121313 !important;
    border: 1px solid #000000 !important;
    background-color: #f2f3f4 !important;
    border-radius: 3px;
    padding: 20px;
}

.contact__form.contact__form-opt {
    max-width: 100%;
}

@media (max-width: 1280px) {
    .opt_forms {
        flex-direction: column;
    }

    .contact__login.contact__form-opt {
        width: 100%;
        max-width: 100%;
    }
}

.contact__form.contact__form-opt .button__opt {
    margin-top: 40px;
    font-family: "Inter";
    padding-top: 18px;
    padding-bottom: 19px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    color: #ffffff;
    background-color: #121313;
    border: 1px solid #121313;
    cursor: pointer;
    width: 100%;
    transition: 0.3s linear;
}

.contact__form.contact__form-opt .form__group {
    margin-bottom: 0;
}

.contact__form.contact__form-opt .group__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact__form.contact__form-opt .group__block:nth-child(2n) {
    margin-top: 20px;
}

@media (max-width: 1280px) {
    .contact__login.contact__form-opt {
        margin-left: 0 !important;

        margin-top: 40px;
    }
}

@media (max-width: 992px) {
    .contact__form.contact__form-opt .input__control {
        font-size: 14px !important;
        font-weight: 500 !important;
        line-height: 15.48px !important;
        text-align: left;
        color: #121313 !important;
        border: 1px solid #000000 !important;
        border-radius: 3px;
        padding: 20px;
    }

    .contact__form.contact__form-opt .button__opt {
        margin-top: 24px;
        padding-top: 14px;
        padding-bottom: 14px;
        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;

        height: auto !important;
    }

    .contact__form.contact__form-opt .group__block:nth-child(2n) {
        margin-top: 20px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact__form form .group__block:first-child .form__group {
        margin: 0;
    }

    .contact__login.contact__form-opt .button__opt {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        line-height: 15.48px !important;

        margin-top: 61px !important;

        height: auto !important;
    }

    .contact__form.contact__form-opt .input__control {
        padding: 14px !important;
    }

    .contact__login.contact__form-opt {
        margin-top: 40px;

        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .contact__form.contact__form-opt {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .opt_forms h3 {
        font-size: 24px !important;
        font-weight: 400 !important;
        line-height: 29.05px !important;
        text-align: left;
    }

    .contact__form.contact__form-opt p,
    .contact__login.contact__form-opt p {
        font-size: 14px !important;
        line-height: 16.94px !important;

        margin-top: 20px;
    }
}

.header__burger--text {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
    color: #121313;
    padding-left: 12px;
    cursor: pointer;
}

.header__burger--group {
    cursor: pointer;

    display: flex;
    align-items: center;

    width: 76px;
}

.header__burger--text,
.header__nav-link-area {
    line-height: normal !important;
}

.main__block {
    bottom: 14px;
    left: 14px;
}

.cards4__item-img-hovered {
    position: absolute;
    top: 0;
    left: 0;

    transition: 0.2s linear;

    z-index: -1;

    width: 100%;
}

.cards4__item-img {
    transition: 0.2s linear;
}

.cards4__item:hover .cards4__item-img-hovered {
    z-index: 1;
}

.card-button__outstock,
.card-button__preorder {
    background: #7c7c7c !important;
    color: #fff !important;
}

.card-button__outstock .card-hover-button-cart,
.card-button__preorder .card-hover-button-cart {
    filter: invert(100%);
    -webkit-filter: invert(100%);
}

.card-button__outstock:hover,
.card-button__preorder:hover {
    background: #7c7c7c !important;
    color: #fff !important;
}

.card-button__outstock:hover .card-hover-button-cart,
.card-button__preorder:hover .card-hover-button-cart {
    filter: invert(100%);
    -webkit-filter: invert(100%);
}

.wholesale__container p {
    margin-top: 40px;
}

.wholesale__container p span {
    font-size: 16px !important;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #121313;
}

.wholesale__container h2 {
    margin-top: 60px;
}

.wholesale__container h2 span {
    font-size: 35px !important;
    font-weight: 400;
    line-height: 42.36px;
    text-align: left;
    color: #121313;
}

.wholesale__container img {
    height: auto;
}

.wholesale__img {
    margin-top: 0;
}

.opt_forms {
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 120px;
}

@media screen and (max-width: 1280px) {
    .opt_forms {
        margin-top: 60px;
    }
}

@media screen and (max-width: 800px) {
    .wholesale__container p span {
        font-size: 14px !important;
        line-height: 16.94px;
        padding-left: 0;
        padding-right: 0;
    }

    .wholesale__container h2 span {
        padding-left: 0;
        padding-right: 0;
        font-size: 24px !important;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;
    }

    .wholesale__img {
        margin-top: 0;
    }

    .wholesale {
        padding-left: 20px;
        padding-right: 20px;
    }

    .opt_forms {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 800px) {
    .categories__row {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 1600px) and (min-width: 1300px) {
    .text-danger {
        max-width: 294px;
    }
}

@media screen and (max-width: 800px) {
    .product-category .cards4__items {
        row-gap: 35px;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 600px) {
    .product-category .cards4__items {
        grid-template-columns: 1fr 1fr;
    }

    .product-category .cards4__item {
        width: 100%;

        margin-top: 0;

        max-width: 100%;
        min-width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .order__item-counter {
        max-width: 87px;
    }

    .order__item-counter .form__quantity {
        font-size: 12px;
        font-weight: 500;
        line-height: 18px;
    }

    .order__item-price {
        font-size: 14px;
        line-height: 16.94px;
    }

    .order__item-size {
        font-size: 14px;
    }

    .order__item-img {
        max-width: 92px;
    }

    .order__items {
        padding-right: 16px;
    }

    .order__item-size {
        min-width: 36px;
        height: 30px;
    }
}

.loader {
    padding-left: 53px;
    padding-right: 53px;
}

.card-hover-color {
    width: 12px;
    height: 12px !important;

    border-radius: 50% !important;

    position: relative;
    display: inline-block;

    cursor: pointer;
}

.body-pds__img.current .card-hover-color::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: border 0.3s;

    pointer-events: none;
}

.card-hover-colors .owl-item {
    margin-right: 5px !important;
    width: fit-content !important;

    margin-left: 2px !important;
}

.card-hover {
    z-index: 3;
}

.delivery {
    padding-left: 40px;
    padding-right: 40px;

    margin-top: 60px;
}

.delivery__container {
    display: flex;

    justify-content: center;

    width: 100%;
}

.delivery__title {
    font-size: 35px;
    font-weight: 500;
    line-height: 42.36px;
    text-align: left;
}

.delivery__left {
    width: 100%;
}

.delivery__img {
    width: 100%;
    max-width: 574px;

    margin-top: 40px;
}

.delivery__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;

    margin-top: 40px;
}

.delivery__right {
    width: 100%;

    margin-left: 68px;
}

.delivery__menu {
    margin-top: 24px;
}

.delivery__menu-item {
    margin-top: 14px;
    border-bottom: 1px solid #121313;
}

.delivery__menu-upper {
    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;

    padding-bottom: 11px;
}

.delivery__menu-upper-text {
    font-size: 24px;
    font-weight: 400;
    line-height: 29.05px;
    text-align: left;

    color: #121313;
}

.delivery__menu-content {
    margin-top: 3px;

    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;

    margin-bottom: 14px;

    display: none;
}

.delivery__menu-content.active {
    display: block;
}

.delivery__menu-upper-arrow {
    transition: 0.3s ease;
}

.delivery__menu-upper-arrow.active {
    transform: rotate(180deg);
}

.delivery__title2 {
    margin-top: 73px;
}

@media screen and (max-width: 1280px) {
    .delivery__right {}
}

@media screen and (max-width: 991px) {
    .delivery {
        padding-left: 20px;
        padding-right: 20px;
    }

    .delivery__container {
        flex-direction: column;
        align-items: center;
    }

    .delivery__right {
        margin-left: 0;

        margin-top: 40px;
    }

    .delivery__img {
        margin-top: 24px;
    }

    .delivery__text {
        font-size: 14px;
        font-weight: 500;
        line-height: 21px;
        text-align: left;

        color: #121313;

        margin-top: 24px;
    }

    .delivery__title {
        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;
    }

    .delivery__menu-upper-text {
        font-size: 16px;
        font-weight: 400;
        line-height: 19.36px;
        text-align: left;
    }

    .delivery__title2 {
        margin-top: 40px;
    }

    .delivery__menu-content {
        font-size: 14px;
        font-weight: 400;
        line-height: 16px;
        text-align: left;
    }
}

.information-information-6 h1:not(.delivery__title) {
    display: none;
}

.cards4__item--wide {}

.upseason {
    display: flex;
    justify-content: center;
    align-items: center;

    background: #121313;

    padding-top: 12px;
    padding-bottom: 13px;

    position: relative;
    z-index: 30;
}

.upseason__text {
    color: #f2f3f4;

    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
}

.upseason__close {
    position: absolute;

    right: 40px;

    cursor: pointer;
}

.cards4__item--wide {}

/* .cards4__item--wide .cards4__item-img{
    max-width: 720px;
}

.cards4__item--wide .cards4__item-img-hovered{
    max-width: 720px;
}
 */

.cards4__item--wide .cards4__item-img,
.cards4__item--wide .cards4__item-img-hovered {}

.cards4__item--wide .cards4__item-upper {
    aspect-ratio: 738 / 554;
    overflow: hidden;
}

/* .card-hover-row{
   width: fit-content;
} */

@media screen and (max-width: 1100px) {
    .header__nav {
        display: none;
    }

    .bottom-header__search.open {
        position: absolute !important;
        top: 25px !important;
    }

    .iSearchBox {
        top: 60px !important;
    }

    .iSearchBox {
        right: 64px !important;
    }
}

.header__logo-link {
    width: 132px;
    height: auto;
    display: inline-flex;
    justify-content: center;
}
@media screen and (max-width: 992px) {
    .header__placement {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .header__container {
        grid-template-columns: 1fr 103px 1fr;
    }
    .header__logo-link {
        width: 103px;
    }
    .bottom-header__tools {
        margin-left: 12px !important;
        position: absolute;
        left: 45px;
    }
    .header__item-contact, .header__item-cabinet {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .iSearchBox {}
}

@media screen and (max-width: 550px) {}

@media screen and (max-width: 450px) {
    .header__container {
        grid-template-columns: 1fr 102px 1fr;
    }

    .header__logo-link {
        justify-content: end;
    }
}

@media screen and (max-width: 600px) {
    .cards4__item {
        max-width: 100%;
    }
    .bottom-header__search {
        right: -55px !important;
    }
}

.current-currency i,
.current-language i {
    margin-left: 8px;
}

.dropdown-currency__block,
.dropdown-language__block {
    border-radius: 0 0 3px 3px;
}

.dropdown-menu {
    left: -24px;
}

.dropdown-currency__block {
    left: -33px;
}

.drop-top p {
    position: relative;
    display: inline-block;
}

.drop-top p:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #121313;
}

.header .header__right-sector .btn-link:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #121313;

    transform: 0.3s linear;

    opacity: 0;
}

.header .header__right-sector .btn-link:hover .header .header__right-sector .btn-link:before {
    opacity: 1;
}

.earlier-viewed .cards4__item--wide .cards4__item-upper {
    aspect-ratio: unset;
}

.categories__row-right-popup {
    background-color: #f2f3f4;
    width: auto;
}

.categories__row-right-popup-row--active {
    text-decoration: underline !important;
}

.categories__row-right-popup {
    top: -8px;
    right: -40px;
}

.categories__row-right-filter {
    font-weight: 400;
}

.categories__row-right-popup-row .fw500 {
    margin-right: 3px;
}

.account__container .history .history__counter-number {
    text-align: center;
}

.account__container .history .history__counter {
    justify-content: center;
}

.account__container .history .history__item:not(.history__item:first-child) {
    margin-top: 60px;
}

@media screen and (max-width: 800px) {
    .account__container .history .history__item:not(.history__item:first-child) {
        margin-top: 40px;
    }
}

.account__container .history .history__item-upper {
    grid-template-columns: 767fr 120fr 120fr 120fr 6fr;
}

.account__container .history .history__item-upper-status {
    background: #34b853;

    font-size: 16px;
    font-weight: 500;
    text-align: left;

    padding: 5px 17px;

    color: #ffffff;

    border-radius: 3px;

    border: 1px solid #34b853;
}

.account__container .history .history__item-upper-status.waiting {
    background: #ffd700;
    /* Цвет из UI Kit */
    border: 1px solid #ffd700;
    /* Цвет из UI Kit */
}

.account__container .history .history__item-upper-status.not-paid {
    background: #f53f4a;
    /* Цвет из UI Kit */
    border: 1px solid #f53f4a;
    /* Цвет из UI Kit */
}

.account__container .history .history__item-upper-number {
    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    text-align: left;
}

@media screen and (max-width: 800px) {
    .account__container .history .history__item-upper-number {
        font-size: 14px;
        font-weight: 400;
        line-height: 16.94px;
        text-align: left;
    }

    .account__container .history .history__item-upper-status {
        padding: 2px 6px;
    }
}

@media screen and (max-width: 1100px) {
    .header__burger--text {
        display: none !important;
    }
}

.common-home .instagram picture:nth-child(6) {
    display: none;
}

@media screen and (max-width: 600px) {
    .common-home .instagram .instagram__container {
        padding-left: 0;
        padding-right: 0;
    }

    .common-home .instagram picture:nth-child(6) {
        display: block;
    }

    .iSearchBox {
        right: 55px !important;
    }
}

.instagram__button {
    border-radius: 3px;
}

.common-home .instagram .instagram__text {
    text-decoration: underline !important;
}

.common-home .instagram .instagram__column {
    flex-wrap: wrap;
}

.iSearchBox {
    background: #f2f3f4 !important;
    padding: 0 !important;
}

.iSearchBox li {
    border: none !important;
}

.iSearchHeading {
    display: none !important;
}

@media screen and (max-width: 991px) {
    .common-home .blog,
    .common-home .cards4,
    .common-home .categories,
    .common-home .future,
    .common-home .instagram,
    .common-home .season {
        margin-top: 48px;
    }

    .header {}

    .iSearchBox {
        top: 46px !important;
    }

    .bottom-header__search.open {
        top: 18px !important;
    }
}

@media screen and (max-width: 587px) {
    /* .common-home .cards4-carousel1{
        margin-left: -20px;
    } */

    /* .common-home  .cards4-carousel1.owl-carousel {
        overflow: visible;
    } */

    /* .common-home  .cards4-carousel1.owl-carousel {
        overflow: visible;
    }

    .common-home .cards4-carousel1 .owl-stage {
        display: flex;
    }

    .common-home .cards4-carousel1 .owl-item {
        position: relative;
    }
     */

    .cards4-carousel1 .owl-stage {
        padding-left: 0 !important;
    }

    .cards4-carousel1 .cards4__item {
        min-width: 165px;
    }
}

@media screen and (max-width: 392px) {
    /*
    .common-home  .cards4-carousel1 .owl-item {
        transform: translateX(-20px);
    }
    */
}

.iSearchPrice {
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 24.2px !important;
    text-align: left !important;
}

.isearch__model {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 16.94px !important;
    text-align: left !important;
    color: #bebebe;
}

.isearch__stock {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 16.94px !important;
    text-align: left !important;
}

.isearch__stock.in {
    color: #34b853 !important;
}

.pagination .pagination__link {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    color: #121313;
    margin-right: 14px;
}

@media (max-width: 575px) {
    .showmore {
        margin-top: 47px;
        margin-bottom: 60px;
    }
    .showmore__pages {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }

    .showmore__button {
        padding: 18px 43px;
        max-width: 100%;
        font-size: 16px;
        text-align: center;
        margin-top: 40px;
        width: 350px;
    }

    .showmore__text {
        font-size: 12px;
        line-height: 18px;
    }

    .pagination .pagination__link {
        font-size: 14px;
        font-weight: 500;
        line-height: 21px;
        margin-right: 12px;
    }
}

@media (max-width: 390px) {
    .showmore__button {
        width: 100%;
    }
}

.catalog__arrow-field-link {}

.catalog__arrow-field {
    display: none;

    padding: 19px 19px 22px;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;
    margin-left: -19px;
}

.catalog__arrow {
    width: 5px;
    height: 8px;
}

.catalog__title-text {}

@media (max-width: 991px) {
    .catalog__title {
        display: flex;
        align-items: center;
    }

    .catalog__arrow-field {
        display: flex;
    }

    .product-category .navpage--holder {
        display: none;
    }
}

.checkout-cart .total {}

.checkout-cart .total__text {}

.checkout-cart .total__button {}

.checkout-cart .total__button:hover img {
    filter: invert(100%);
    -webkit-filter: invert(100%);
}

@media (max-width: 768px) {
    .checkout-cart .total {
        padding-left: 20px;
        padding-right: 20px;

        margin-top: 24.5px;
    }

    .checkout-cart .total a {
        width: 100%;
    }
    .checkout-cart .total__button {
        width: 100%;
    }

    .checkout-cart .total__text {
        font-size: 14px;
        font-weight: 400;
        line-height: 16.94px;
    }

    .checkout-cart .total__button {
        margin-top: 23px;
    }
}

.checkout-cart .cart__scale {
    width: calc(100% - 20px);
}

@media (max-width: 800px) {
    .cart__scale {
        height: 4px;
    }

    .cart__scale-point {
        width: 26px;
        height: 26px;
    }

    .cart__scale-point img {
        max-width: 18px;
    }
}

@media (max-width: 800px) {
    .cart__group {
        margin-top: 35px;
    }

    .cart__info-row {
        margin-top: 27px;
    }

    .checkout-cart .history {
        margin-top: 0;
    }

    .checkout-cart .navpage--holder {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .menu__mobile {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .menu__mobile {
        display: block;
    }

    .menu__lower {
        display: none !important;
    }

    .menu {
        overflow-y: scroll;
    }
}

.menu__mobile-circle .header__right-sector-likes {
    display: none;
}

.menu__mobile {
    padding-bottom: 60px;
}

.product-category .categories__row-center-button-holder-mobil {
    display: none;
}

@media (max-width: 768px) {
    .product-category .ocf-option-values {
        position: relative;
        background: #f2f3f4;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .product-category .ocf-option-values label a {
        font-size: 12px !important;
    }
    .product-category .ocf-option-values input[type="checkbox"] {
        margin-right: 10px;
    }
    .product-category .ocf-option-values .badge {
        font-size: 12px;
    }
    .product-category .categories__row-center-button-holder {
        margin-top: 14px;
        display: none;
    }
    .product-category .categories__row-center-button-holder-mobile {
        margin-top: 14px;
    }
    .product-category .ocfilter-option .ocf-option-name {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 768px) {
    .product-category .catalog__container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 991px) {
    .menu {
        top: 64px;
    }
}

@media screen and (max-width: 768px) {
    .product-category .categories__row-left {
        display: none;
    }
    .product-category .mobile__filter {
        width: auto;
        color: #121313;
    }
    .product-category .mobile__filter span {
        margin-left: 12px;
    }
    .product-category .mobile__filter-icon {
        margin-right: 10px;
    }
    .product-category .categories__row {
        flex-direction: column;
        justify-content: center;
    }
    .product-category .categories__row-right {
        margin-top: 0 !important;
        position: absolute;
        right: 20px;
    }
}

.product-category .categories__row-right-popup-row svg {
    transform: rotateZ(180deg);
}

.product-category .cards4-1 {
    margin-top: 48px;
}

@media screen and (max-width: 991px) {
    .product-category .cards4-1 {
        margin-top: 28px !important;
    }
}

.product-category .cards4__item-upper-upper {
    z-index: 4;
}

.product-isearch .categories {
    margin-top: 75px;
}

@media screen and (max-width: 991px) {
    .product-isearch .categories {
        margin-top: 40px;
    }
}

.studio-addresses__item {
    background: #f2f3f4;
}

.information-studio .studio-page__title h1 {
    font-size: 35px;
    font-weight: 400;
    line-height: 42.36px;
    text-align: left;
}

.information-studio .studio__page {
    padding-bottom: 0 !important;
}

.information-studio .footer {
    margin-top: 96px !important;
}

@media screen and (max-width: 991px) {
    .information-studio .studio-page__title h1 {
        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;
    }

    .information-studio .footer {
        margin-top: 60px !important;
    }
}

@media screen and (max-width: 768px) {
    .card-hover-button,
    .card-hover-row {
        display: none !important;
    }

    .card-hover {
        background: none !important;
    }
}

.capsule-popup-block .history__item-size {
    display: none;
}

.product-category .history__item-size {
    display: none;

    margin-top: 12px;
}

.product-category .history__item-size span {
    color: #121313;
}

@media screen and (max-width: 800px) {
    .product-isearch .cards4__items {
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 35px !important;
    }

    .product-category .history__item-size {
        display: block;

        font-size: 12px;
        font-weight: 600;
        line-height: 18px;
        text-align: left;
        color: #bebebe;
    }
}

@media screen and (max-width: 576px) {
    .product-isearch .cards4__items {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .product-category .catalog__title {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product__navpage {
        display: none;
    }

    #product {
        margin-top: 0;
    }
}

.search__arrow-field {
    display: none;

    padding: 19px 19px 22px;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;
    margin-left: -19px;
}

.search__arrow {
    width: 5px;
    height: 8px;
}

@media (max-width: 991px) {
    .search__title {
        display: flex;
        align-items: center;
    }

    .search__arrow-field {
        display: flex;
    }
}

@media (max-width: 768px) {
    .product-isearch .navpage--holder {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .product-category .categories__row-right {
        margin-top: 0 !important;
        position: absolute;
        right: 20px;
        top: 23px;
    }

    .product-category span.fw500 {
        color: #bebebe;
    }
    .product-category .categories__row-right-filter {
        /* font-size: 12px; */
        font-size: 11px;
    }
}

.cards4__item-upper-upper {
    z-index: 15;
}

@media screen and (max-width: 800px) {
    .capsule-popup .history__part:nth-child(6),
    .product-category .history__part:nth-child(6) {
        display: flex;
        align-items: start;
        height: 100%;
    }

    .capsule-popup .history__part:nth-child(6) .history__delete-button,
    .product-category .history__part:nth-child(6) .history__delete-button {
        background: #121313;
    }

    .capsule-popup .history__part:nth-child(6) .history__delete-button img,
    .product-category .history__part:nth-child(6) .history__delete-button img {
        filter: invert(100%);
        -webkit-filter: invert(100%);
    }
}

.product-category .categories__row-right-popup {
    display: none;
    /* Другие стили для попапа */
}

.product-category .categories__row-right-popup.show {
    display: block;
    /* Можете добавить анимации открытия при необходимости */
}

.product-category .categories__row-right-popup {
    top: 0;
    right: -40px;
}

.product-category .categories__row-right-popup {
    background-color: #ffffff;
    padding: 23px 40px 26px;
}

@media screen and (max-width: 800px) {
    .checkout-cart .history__part:nth-child(6),
    .product-category .history__part:nth-child(6) {
        display: flex;
        align-items: start;
        height: 100%;
        width: 100%;
        justify-content: end;
    }

    .checkout-cart .history__delete-button,
    .product-category .history__delete-button {
        background: #121313;
    }

    .checkout-cart .history__delete-button img,
    .product-category .history__delete-button img {
        filter: invert(100%);
        -webkit-filter: invert(100%);
    }

    .checkout-cart .history__item-row,
    .product-category .history__item-row {
        margin-top: 12px;
        align-items: center;
    }

    .checkout-cart .history__counter,
    .product-category .history__counter {
        position: absolute;
        right: 0;
        bottom: 14px;
    }

    .product-category .history__counter {
        bottom: 28px;
    }

    .checkout-cart .history__sides,
    .product-category .history__sides {
        position: relative;
    }

    .checkout-cart .history__item-price,
    .product-category .history__item-price {
        margin-top: 24px;
    }

    .checkout-cart .history__counter .product-category .history__counter {
        width: 87px;
    }

    .checkout-cart .history__part:nth-child(2) .history__texts {}
}

@media screen and (max-width: 374px) {
    .checkout-cart .history__item-row,
    .product-category .history__item-row {
        flex-direction: row;
    }
}

@media screen and (max-width: 768px) {
    .categories__row-right-popup-row {
        font-size: 11px;
        line-height: 21px;
        margin-top: 16px;
        color: #121313;
        display: flex;
        align-items: center;
        white-space: nowrap;
    }
}

.product-category .categories__row-right-popup {
    background-color: #f2f3f4;
    padding: 23px 40px 26px;
}

@media screen and (max-width: 768px) {
    .product-category .categories__row-right-popup {
        background-color: #ffffff;
        padding: 11px 36px 23px 21px;
    }
}

@media screen and (max-width: 768px) {
    .product-category .mobile__filter {
        margin-top: 0 !important;
    }

    .categories__row-center {
        margin-bottom: 0;
    }
    .product-category .categories__row-right {
        margin-top: 0 !important;
        position: absolute;
        right: 20px;
        top: 10px;
    }
    .product-category .categories__row-right-popup {
        top: -11px !important;
        right: -36px !important;
    }
}

.menu__submenu-popup-circles-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 10px;

    margin-top: 20px;
}

.menu__submenu-popup-circles-row a {
    display: inline-flex;
    flex-direction: column;

    align-items: center;
}

@media screen and (max-width: 991px) {
    .menu__outer {
        overflow-y: scroll;
        max-height: 600px;
        padding-right: 10px;
    }

    .menu {
        padding-right: 10px;
    }
}

@media screen and (max-width: 500px) {
    .common-home .instagram__column {
        flex-direction: column;
        margin-top: 20px;
        align-items: start;
    }

    .common-home .instagram__text {
        margin-left: 0;
    }

    .common-home .instagram__button {
        margin-top: 20px;
    }
}

.information-contact .contact__info .info__item .item__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    text-align: left;

    color: #121313;

    padding-bottom: 10px;

    border-bottom: 1px solid #121313;
}

.information-contact .contact__info .info__item .item__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;

    color: #bebebe;
}

.information-contact .contact__info .info__item .item__text a {
    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    text-align: left;

    color: #121313;

    padding-bottom: 10px;

    border-bottom: 1px solid #121313;
}

.information-contact .contact__info .info__item .item__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    text-align: left;

    color: #bebebe;
}

.information-contact .info__item .link__block {}

.information-contact .info__tel .item__text {
    padding-bottom: 0;
    border-bottom: none !important;
}

.information-contact .button__contact {
    width: 100%;

    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: center;
    border-radius: 3px;
}

.information-contact .button__contact {}

.information-contact .line__page {
    display: none;
}

.information-contact .input__block {}

.information-contact .link__block {}

.information-contact .container {
    padding-left: 0 !important;
    padding-right: 0 !important;

    margin-left: 0;
    margin-right: 0;
}

.information-contact .contacts__right-title {
    margin-top: 111px;
    font-size: 35px;
    font-weight: 500;
    line-height: 42.36px;
    text-align: left;
}

@media screen and (max-width: 650px) {
    .information-contact .contacts__right-title {
        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;
    }
}

.information-contact .contacts__cols .contacts__col:last-child {
    margin-left: 60px;
}

@media screen and (max-width: 1280px) {
    .information-contact .contacts__cols .contacts__col:last-child {
        margin-left: 200px;
    }
}

@media screen and (max-width: 800px) {
    .information-contact .contacts__cols .contacts__col:last-child {
        margin-left: 60px;
    }
}

@media screen and (max-width: 650px) {
    .information-contact .contacts__cols .contacts__col:last-child {
        margin-left: 0;
        margin-top: 40px;
    }
}

.information-contact ul.breadcrumb {
    margin-top: 30px;
}

.information-contact .information__title {
    margin-bottom: 0;
}

.information-contact .contact__description {
    margin-top: 81px;
}

@media screen and (max-width: 650px) {
    .information-contact .contact__description {
        margin-top: 60px;
    }
}

.info__item-title {}

@media (min-width: 992px) {
    .information-contact .container {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .information-contact .container {
        max-width: unset !important;
    }
}

.information-contact .footer {
    margin-top: 0;
}

@media screen and (max-width: 650px) {
    .information-contact .footer {
        margin-top: 60px;
    }
}

@media (min-width: 576px) {
    .information-contact .container {
        max-width: unset !important;
    }
}

.information-contact .contact__page {
    margin-bottom: 0;
}

.information-contact .contact__description a {
    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    text-align: left;
    color: #121313;
    margin-left: 14px;
    text-decoration: underline;
}

@media screen and (max-width: 650px) {
    .information-contact .contact__description a {
        margin-left: 14px;
        font-size: 14px;
        font-weight: 400;
        line-height: 16.94px;
        text-align: left;
    }
}

.information-contact .contact__form .form-horizontal {}

.information-contact .contact__form form .form__group input[type="text"],
.information-contact .contact__form form .form__group input[type="email"],
.information-contact .contact__form form .form__group textarea {
    padding: 18px 21px 19px 21px !important;
    color: #121313 !important;
    border: 1px solid #121313 !important;
    font-family: "Inter" !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 17.69px !important;
    text-align: left !important;
    border-radius: 3px !important;
    background-color: #f2f3f4 !important;

    height: 55px !important;

    max-width: unset !important;
}

.information-contact .contact__form form .group__block:first-child .form__group {
    width: 100% !important;
}

.information-contact .contact__form form .group__block:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
}

@media screen and (max-width: 650px) {
    .information-contact .contact__form form .form__group input[type="text"],
    .information-contact .contact__form form .form__group input[type="email"],
    .information-contact .contact__form form .form__group textarea {
        padding: 14px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        line-height: 15.48px !important;

        height: 43px !important;
    }

    .information-contact .contact__form form .group__block:first-child {
        grid-template-columns: 1fr;
        row-gap: 14px;
        margin-bottom: 14px;
    }
}

@media (max-width: 992px) {
    .information-contact .contact__form form .group__block:first-child .form__group {
        margin-bottom: 14px;
    }
}

@media (max-width: 650px) {
    .information-contact .contact__form form .group__block:first-child .form__group {
        margin-bottom: 0;
    }
}

@media (max-width: 1280px) {
    .information-contact .contacts__right-title {
        margin-top: 40px;
    }

    .information-contact .contact__description {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .product-category .ocf-option-values {
        position: relative;
        background: #ffffff;
        width: 100% !important;
    }
    .product-category .ocf-option-values {
        padding: 0 0 14px;
    }
}
/* catalog-carousel */
.product-category .catalog-carousel {
    display: none;
}
@media (max-width: 800px) {
    .product-category .catalog__right {
        display: none;
    }
    .product-category .catalog-carousel {
        display: block;
    }
    .product-category .owl-carousel .owl-item img {
        width: 100%;
        transition: 0.3s linear;
    }
    .product-category .catalog-carousel__item {
        border: 1px solid #f2f3f4;
        /* height: 315px; */
        height: max-content;
        width: 100%;
        position: relative;
        overflow: hidden;
        padding: 55px 0 0;
    }
    .product-category .catalog__images-col-img {
        margin: 0;
    }
    .product-category .item {
        position: relative;
        overflow: hidden;
    }

    .product-category .owl-nav {
        position: absolute;
        top: 45%;
        width: 100%;
    }

    .product-category button.owl-prev {
        position: absolute;
        left: 20px;
    }

    .product-category button.owl-next {
        position: absolute;
        right: 20px;
    }

    .product-category .owl-item.active.center img {
        transform: scale(1.54);
    }
    .product-category .catalog__images-col-text {
        margin-top: 19px;
        margin-left: 20px;
        margin-bottom: 17px;
        font-size: 14px;
        font-weight: 400;
        line-height: 16.94px;
        text-align: left;
    }

    .product-category .owl-theme .owl-dots .owl-dot span {
        width: 10px;
        height: 2px;
        margin: 10px 5px;
        background: #12131380 !important;
    }

    .product-category .owl-theme .owl-dots .owl-dot.active span,
    .product-category .owl-theme .owl-dots .owl-dot:hover span {
        background: #121313 !important;
    }
    .product-category .owl-carousel.owl-drag .owl-item {
        height: max-content;
    }
}

.information-contact .contact__info .info__item .item__text a:not(.information-contact .contact__info .info__item .item__text a:first-child) {
    margin-top: 19px;
}

.contact__info .info__item .item__text a:not(:last-child) {
    margin-bottom: 0 !important;
}

.information-contact .contact__info .info__item {
    padding: 0 !important;
}

.information-contact .link__block .footer__col-text svg {
    margin-right: 0;
}

.information-contact .info__item.contacts__col .link__block {
    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    text-align: left;
}

@media screen and (max-width: 650px) {
    .information-contact .contact__info .info__item .item__text,
    .information-contact .contact__info .info__item .item__text a {
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        text-align: left;
    }

    .information-contact .contacts__group-icon {
        max-width: 8px;
    }

    .information-contact .contacts__cols {
        flex-direction: column;
        margin-top: 40px;
    }

    .information-contact .contact__info {
        flex-direction: column;
    }

    .information-contact .contact__info .info__item .item__text a {
        max-width: max-content;
    }

    .information-contact .contact__info .info__item .item__text {
        max-width: max-content;
    }

    .information-contact .contacts__group-icon--time {
        max-width: 14px;
    }

    .information-contact .link__block {
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        text-align: left;
    }

    .information-contact .info__item.contacts__col .link__block {
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        text-align: left;
    }

    .information-contact .button__contact input {
        font-size: 14px !important;
        font-weight: 500 !important;
        line-height: 15.48px !important;

        height: 43px !important;
    }
}

.information-contact .information__title {
    margin-bottom: 0 !important;
}

.information-contact .contact__info .info__item .item__title {
    margin-top: 0 !important;
}

.contacts__arrow-field {
    display: none;
    padding: 19px 19px 22px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: -19px;
}

.information-contact .information__title {
    justify-content: start !important;
}

@media screen and (max-width: 991px) {
    .information-contact .breadcrumb {
        display: none;
    }

    .contacts__arrow-field {
        display: flex;
    }

    .information-contact .information__title {
        display: flex;
        flex-direction: row !important;
        align-items: center !important;
    }
}

.information-contact .contact__info .info__item {
    flex-basis: auto !important;
    width: auto !important;
}

.info__item .link__block a {
    width: 40px;
    height: 40px;
}

.information-contact .contact__description a {
    text-decoration: underline !important;

    margin-left: 34px;

    position: relative;
}

.information-contact .contact__description p {
    position: relative;

    display: flex;
    align-items: center;
}

.information-contact .contact__description p img {
    position: absolute;
}

.information-contact .contact__form form .form__group textarea {
    height: 55px;
    overflow: hidden;
}

@media screen and (max-width: 650px) {
    .information-contact .contact__form form .form__group textarea {
        height: 43px;
    }

    .contact__description .info__item-title {
        margin-bottom: 20px !important;
    }

    .information-contact .contact__description p img {
        max-width: 20px;
        top: 2px;
    }

    .information-contact .info__item-title {
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        text-align: left;
    }
}

.tmdqc-tmdcheckout .form__group {
    position: relative;
}

.tmdqc-tmdcheckout .select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: url("/catalog/view/theme/brainlab/image/arrow-select.svg");
}

.tmdqc-tmdcheckout .form__group.not-label .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-0%);
    width: 40px;
    background-image: url("/catalog/view/theme/brainlab/image/arrow-select.svg");
    background-size: 13px;
    background-position: calc(100% - 15px);
    background-repeat: no-repeat;
    pointer-events: none;
}

.tmdqc-tmdcheckout .form__group.select__group.not-label .select2-selection__arrow {
    transform: translateY(-50%);
}

@media screen and (max-width: 1300px) {
    .tmdqc-tmdcheckout .order__right {
        padding-left: 0;
        padding-right: 0;
    }

    .tmdqc-tmdcheckout .order__bonuses,
    .tmdqc-tmdcheckout .order__button-outer,
    .tmdqc-tmdcheckout .order__call,
    .tmdqc-tmdcheckout .order__items-outer,
    .tmdqc-tmdcheckout .order__pack,
    .tmdqc-tmdcheckout .order__total {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 991px) {
    .tmdqc-tmdcheckout .order__bonuses,
    .tmdqc-tmdcheckout .order__button-outer,
    .tmdqc-tmdcheckout .order__call,
    .tmdqc-tmdcheckout .order__items-outer,
    .tmdqc-tmdcheckout .order__pack,
    .tmdqc-tmdcheckout .order__total {
        padding-left: 20px;
        padding-right: 20px;
    }

    .tmdqc-tmdcheckout .navpage--holder {
        display: none;
    }
}

.blog-latest {}

@media screen and (min-width: 991px) {
    .menu__submenu-popup {
        display: none !important;
    }
}

.tmdqc-tmdcheckout {
    overflow-x: hidden;
}

.cards4__item-video {
    display: block;
    width: 100%;

    top: 0;

    object-fit: cover;
}

.item__left-img:not(.item__left-outer:first-child .item__left-img) {
    margin-top: 19px;
}

.contact__info .info__item {
    max-width: 65%;
}

.blog-latest .campaigns__blocks .col-12.col-sm-4.col-md-4.col-lg-4.col-xl-4 {
    padding-left: 0 !important;
    padding-right: 0 !important;

    max-width: 100%;
}

.campaigns__blocks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    column-gap: 15px;
}

@media screen and (max-width: 991px) {
    .campaigns__blocks {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 550px) {
    .campaigns__blocks {
        grid-template-columns: 1fr;
    }
}

.campaigns__blocks .article__block {
    margin-bottom: 0;
}

.instagram__photos .instagram__photo-outer {
    cursor: pointer;
}

.item .item__for-carousel {
    width: 100%;
}

.main__block {
    z-index: 17;
}

.order__item-size-mobile {
    display: none;
}

.tmdqc-tmdcheckout .order__left .order__items-outer {
    display: none;
}

@media screen and (max-width: 991px) {
    .tmdqc-tmdcheckout .order__left .order__items-outer {
        padding-left: 0;
    }

    .tmdqc-tmdcheckout .order__form .control-label {
        margin-bottom: 17px;
    }

    .tmdqc-tmdcheckout .order__right .order__items-outer {
        display: none;
    }

    .tmdqc-tmdcheckout .order__left .order__items-outer {
        display: block;
    }

    .tmdqc-tmdcheckout .order__item-article {
        font-size: 12px;
        line-height: 14.52px;
    }

    .tmdqc-tmdcheckout .order__item-row-last {
        flex-direction: column-reverse;
        align-items: start;
    }

    .tmdqc-tmdcheckout .order__item-row-last .order__item-price {
        margin-top: 19px;
    }

    .tmdqc-tmdcheckout .order__item-row-last .order__item-size {
        min-width: unset;
        height: auto;

        width: fit-content;
        padding-left: 0;
        padding-right: 0;
        border-radius: 0;
        display: inline-flex;

        background: none;
        font-size: 12px;
        font-weight: 500;
        line-height: 18px;
        text-align: left;

        color: #121313;
    }

    .tmdqc-tmdcheckout .order__item-counter {
        position: absolute;

        bottom: 0;
        right: 0;
    }

    .order__item-size-mobile {
        display: inline;

        font-size: 12px;
        font-weight: 600;
        line-height: 18px;
        text-align: left;

        margin-right: 4px;

        color: #bebebe;
    }

    .tmdqc-tmdcheckout .form__group .form__control {
        height: 43px;
    }

    .tmdqc-tmdcheckout .order__item-right {
        position: relative;
    }

    .tmdqc-tmdcheckout .order__item-price {
        font-size: 14px;
        line-height: 16.94px;
        font-weight: 500;
    }
    /*
    .tmdqc-tmdcheckout .order__item-row{
        flex-direction: column-reverse;
    } */

    .tmdqc-tmdcheckout .order__input-group-row {
        margin-top: 24px;
    }

    .tmdqc-tmdcheckout .form__group .form__control {
        font-size: 14px;
        line-height: 15.48px;
    }

    .tmdqc-tmdcheckout .order__input-text {
        font-size: 16px;
        line-height: 19.36px;
    }

    .tmdqc-tmdcheckout .order__delivery-title {
        font-size: 16px;
        line-height: 19.36px;
    }

    .choose__block span,
    .order__form .ship__popover {
        font-size: 12px;
        line-height: 14.52px;
        margin-left: 9px;
    }

    .tmdqc-tmdcheckout .panel__heading {
        font-size: 16px;
        line-height: 19.36px;
    }

    .tmdqc-tmdcheckout .panel__heading .panel__heading-sub {
        font-size: 12px !important;
        line-height: 14.52px !important;
    }

    .order__form .control-label {
        font-size: 12px;
        line-height: 14.52px;
    }

    #tmd_payment_method .panel__heading {
        margin-top: 24px;
    }

    .tmdqc-tmdcheckout .form__novapochta input {
        font-size: 14px;
        line-height: 15.48px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 14px !important;
        line-height: 15.48px !important;
    }

    .form__novapochta input {
        font-size: 14px;
        line-height: 15.48px;
    }

    .panel__body .choose__block:first-child {
        margin-top: 20px;
    }

    .tmdqc-tmdcheckout .order__total-text {
        font-size: 16px;
        line-height: 19.36px;
    }

    .tmdqc-tmdcheckout .order__total-number {
        text-align: right;
    }

    .tmdqc-tmdcheckout .order__total-final-text {}

    .tmdqc-tmdcheckout .order__form .control-label {
        font-weight: 400;
    }

    .tmdqc-tmdcheckout .order__pack-right {
        margin-left: 24px;
    }

    .tmdqc-tmdcheckout .order__bonuses-use-row {
        margin-top: 20px;
    }

    .tmdqc-tmdcheckout .order__bonuses-use-tip {
        margin-top: 14px;
    }

    .tmdqc-tmdcheckout .order__total-final-value {
        font-weight: 500;
        line-height: 24.2px;

        font-size: 20px;
    }

    .tmdqc-tmdcheckout .order__call {
        margin-top: 24px;
    }

    .tmdqc-tmdcheckout .order__bonuses-label {
        margin-left: 9px;
    }

    .tmdqc-tmdcheckout .preloader-img1 {
        max-width: 287px;
    }

    .tmdqc-tmdcheckout .preloader-img3 {
        max-height: 570px;
    }

    .tmdqc-tmdcheckout .order__pack-label {
        margin-bottom: 0;
        margin-left: 9px;
    }
}

.future__video--mobile {
    display: none;
}

@media screen and (max-width: 800px) {
    .future__video--mobile {
        display: block;
    }

    .future__video--desktop {
        display: none;
    }
}

.header {
    position: relative;
}

.header__placement {
    display: none;
}

.common-home .header__placement {
    display: block;
}

.common-home .header {
    position: fixed;
}

@media screen and (max-width: 991px) {
    .header__placement {
        height: 64px;
    }
}

.menu__lower--3 .menu__lower-cols,
.menu__lower--4 .menu__lower-cols,
.menu__lower--5 .menu__lower-cols,
.menu__lower--7 .menu__lower-cols {
    grid-template-rows: repeat(3, auto) !important;
}

.menu__lower--6 .menu__lower-cols,
.menu__lower--10 .menu__lower-cols {
    grid-template-rows: repeat(2, auto) !important;
}

.menu__mobile-circle-holder {
    position: relative;

    cursor: pointer;
}

.menu__mobile-circle-popup {
    position: absolute;

    border-radius: 55px;
    border: 1px solid #121313;

    background: #fff;

    padding: 4px;

    z-index: 2;

    display: none;

    top: -5px;
    left: -5px;
}

.menu__mobile-circle-popup-circle {
    width: 55px;
    height: 55px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;

    transition: 0.3s linear;

    margin-top: 4px;
}

.menu__mobile-circle-popup-circle:hover {
    background: #f2f3f4;
}

.menu__mobile-circle-popup-circle.active {
    background: #f2f3f4;
}

.menu__mobile-circle-popup {
    display: none;
    /* остальные стили для попапа */
}
.menu__mobile-circle-popup.active {
    display: block;
}

.menu__mobile-circle-popup a:first-child .menu__mobile-circle-popup-circle {
    margin-top: 0;
}

.main__block .card-hover-colors {
    max-width: 100px;
    margin-left: 14px;
}

.main__block .card-hover-colors .owl-stage {
    display: flex;
}

.information-partnership ul.breadcrumb {
    display: none;
}

.information-partnership .container {
    padding-left: 0;
    padding-right: 0;

    max-width: unset;
}

.information-partnership .partnership__banner {
    margin-top: 0;
}

.information-partnership .partnership--section {
    padding-left: 40px;
    padding-right: 40px;
}

.information-partnership .partnership__banner-logo {
    display: none;
}

.information-partnership .partnership__banner-title {
    font-size: 35px;
    font-weight: 400;
    line-height: 42.36px;
    text-align: left;
    color: #121313;
    max-width: 680px;
}

.information-partnership .partnership__banner-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;
    color: #121313;
    margin-top: 40px;
    max-width: 387px;
}

.information-partnership .partnership-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    padding: 18px 30px;
    background-color: #121313;
    border: 1px solid #121313;
    transition: 0.3s linear;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    color: #f2f3f4;
    border-radius: 3px;
    width: fit-content;
}

.information-partnership .partnership-btn:hover {
    background-color: #f2f3f4;
    color: #121313;
}

.information-partnership .partnership__banner-btn-wrapper {
    margin-top: 0;
}

.information-partnership .partnership__banner-content {
    padding: 0;
    max-width: unset;
    background: none;
}

.information-partnership .partnership__banner {
    padding: 0 0 0 40px;
}

.information-partnership .partnership__banner {
    min-height: 733px;
}

.information-partnership .partnership-title {
    font-size: 35px;
    font-weight: 500;
    line-height: 42.36px;
    text-align: left;
    color: #121313;
}

.information-partnership .partnership__advantages-card-title {
    margin-top: 24px;
    font-size: 20px;
    font-weight: 600;
    line-height: 24.2px;
    text-align: center;
    color: #121313;
}

.information-partnership .partnership__advantages-card-description {
    margin-top: 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: center;
    color: #121313;
    max-width: 285px;
}

.information-partnership .partnership__advantages-card-image img {
    margin-bottom: 0;

    max-width: 150px;
}

.information-partnership .partnership__advantages-card-image {
    margin-bottom: 0;
}

.information-partnership .partnership__advantages-card {
    padding: 0;
}

.information-partnership .partnership__advantages-head {
    margin-bottom: 30px;
}

.information-partnership #subscribes {
    display: none;
}

.information-partnership .partnership__feedback {
    margin-bottom: 0;
}

.information-partnership .partnership__works {
    padding-right: 0;
}

.information-partnership .partnership__works-collapse-toggle {
    font-size: 24px;
    font-weight: 400;
    line-height: 29.05px;
    text-align: left;
    color: #121313;
}

.information-partnership .partnership__works-collapse-body {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;
    color: #121313;
}

.information-partnership .partnership__works-collapse-item:first-child {
    border-top: none;
}

.information-partnership .partnership__works-collapse-item {
    border-bottom: 1px solid #121313;
}

.information-partnership .partnership__works-content {
    max-width: unset;
}

.information-partnership .partnership__works-image img {
    max-width: 493px;
    width: 100%;
}

.information-partnership .partnership__models-head {
    display: flex;
    justify-content: space-between;
    max-width: unset;

    margin-bottom: 52px;
}

.information-partnership .partnership__models-description {
    color: #121313;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;
    max-width: 605px;

    margin-left: 20px;
}

.information-partnership .partnership__models-title {
    font-weight: 400;
}

.information-partnership .partnership__services,
.information-partnership .partnership__works {
    margin-top: 120px;
}

@media screen and (max-width: 1366px) {
    .information-partnership .partnership__banner {
        min-height: 600px;
    }
}

@media screen and (max-width: 1200px) {
    .information-partnership .partnership__works {
        padding-left: 0;
    }

    .information-partnership .partnership__works-content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .information-partnership .partnership__works-collapse-toggle-icon {
        max-width: 6px;
    }

    .information-partnership .partnership__works-collapse-item {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .information-partnership .partnership__models-description {
        margin-top: 24px;

        margin-left: 0;
    }

    .information-partnership .partnership__models-head {
        align-items: start;
        flex-direction: column;

        margin-bottom: 40px;
    }

    .product-category .categories__row-right-popup {
        top: -23px;
        right: -40px;
    }
}

@media screen and (max-width: 991px) {
    .information-partnership .partnership__banner {
        padding-left: 0;
        padding-right: 0;
    }

    .information-partnership .partnership__banner-content {
        padding-left: 20px;
        padding-right: 20px;

        margin-top: 60px;
    }

    .information-partnership .partnership--section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .information-partnership .partnership__banner {
        flex-direction: column-reverse !important;
    }

    .information-partnership .partnership__banner-title {
        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;
    }

    .information-partnership .partnership__banner-text {
        margin-top: 24px;
    }

    .information-partnership .partnership-btn {
        margin-top: 40px;
        width: 100%;
        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .information-partnership .partnership__banner {
        min-height: auto;
    }

    .information-partnership .partnership-title {
        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
    }

    .information-partnership .partnership__advantages-head {
        margin-bottom: 40px;
    }

    .information-partnership .partnership__advantages-card-title {
        font-size: 20px;
        font-weight: 600;
        line-height: 24.2px;
    }

    .information-partnership .partnership__advantages-card-description {
        margin-top: 14px;
    }

    .information-partnership .partnership__advantages-cards {
        gap: 40px;
    }

    .information-partnership .partnership__feedback {
        margin-top: 60px;
    }

    .information-partnership .partnership__works {
        padding-left: 0;
        padding-right: 0;
    }

    .information-partnership .partnership__works-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .information-partnership .partnership__works-collapse-toggle {
        font-size: 16px;
        font-weight: 400;
        line-height: 19.36px;
        text-align: left;
    }

    .information-partnership .partnership__advantages,
    .information-partnership .partnership__models,
    .information-partnership .partnership__services,
    .information-partnership .partnership__works {
        margin-top: 60px;
    }
}

.account-register .registration input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"] {
    border: 1px solid #000000;
}

.account-register .registration__form-row {
    margin-top: 0;
}

.account-register .registration__form {
    margin-top: 51px;
}

@media screen and (max-width: 991px) {
    .account-register .registration__form {
        margin-top: 0;
    }

    /* .account-register .registration__title{
        display: none;
    } */

    .account-register .registration__right {
        margin-top: 8px;
    }

    .account-register .registration__form-row {
        grid-template-columns: 1fr;
    }
}

.account-login .registration__form {
    margin-top: 16px !important;
}

.registration__form-input-outer {
    position: relative;

    display: flex;
    align-items: center;
}

.registration__form-input-eye,
.registration__form-input-eye-open {
    position: absolute;

    right: 20px;

    cursor: pointer;

    margin-top: 16px;
}

.registration__form-input-eye {
    display: none;
}

.registration__form-input-eye-open {
    right: 19px;
}

@media screen and (max-width: 991px) {
    .account-login .registration__form {
        margin-top: 32px;
    }

    /* .account-login .registration__title{
        display: none;
    }
        */
}

/*
 .cards4__related-carousel{
  display: block;
}

 */

.order__button .card-hover-button-cart {
    display: none;

    transition: 0.3s linear;
}

.order__button:hover .card-hover-button-cart {
    filter: invert(100%);
    -webkit-filter: invert(100%);
}

.order__button-outer .order__button {
    border-radius: 3px;
}

@media screen and (max-width: 991px) {

    .order__button-outer .order__button {
        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;

        padding-top: 14px;
        padding-bottom: 14px;
    }

    .order__button .card-hover-button-cart {
        display: inline-block;
    }

}

.owl-carousel.cards4__related-carousel {
    margin-top: 40px;
}

@media screen and (max-width: 600px) {

    .owl-carousel.cards4__related-carousel {
        margin-top: 20px;
    }
}

.account-forgotten .registration__form {
    margin-top: 52px;
}

.account-forgotten .registration__form-submit {
    margin-top: 52px;
}

.account-forgotten .registration__form-input {
    margin-top: 0;
}

@media screen and (max-width: 991px) {
    .account-forgotten .registration__form {
        margin-top: 24px;
    }

    .account-forgotten .registration__form-submit {
        margin-top: 24px;
    }

    .account-forgotten .registration__form-input,
    .account-login .registration__form-button-gray,
    .account-login .registration__form-input,
    .account-login .registration__form-submit {
        height: 43px;
    }

    .account-register .registration__title {
        margin-top: 12px;
    }

    .account-forgotten .registration__form-button-gray,
    .account-forgotten .registration__form-submit,
    .account-register .registration__form-input,
    .account-register .registration__form-submit {
        height: 43px;

        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;

    }

    .account-forgotten .registration__form-button-gray,
    .account-forgotten .registration__form-submit,
    .account-login .registration__form-submit,
    .account-register .registration__form-submit {
        padding-top: 0;
        padding-bottom: 0;

        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;
    }
}

@media screen and (max-width: 550px) {
    .account-forgotten .registration__form {
        margin-top: 16px;
    }
}

.registration__img--desktop {
    border-radius: 6px;
}

@media (max-width: 800px) {
    .cart__group {
        padding-right: 26px;
    }
}

.favorites__title {
    display: flex;
    align-items: center;
}

.favorites__arrow-field {
    display: none;
    padding: 19px 19px 22px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: -19px;
}

@media (max-width: 991px) {
    .favorites__arrow-field {
        display: flex;
    }

    .account-wishlist .navpage--holder {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .item__center-upper-tag {
        padding: 2px 5px;
    }
}

@media screen and (max-width: 991px) {
    .cards4__item-upper-upper {
        padding-left: 14px;

        padding-top: 14px;

        padding-right: 14px;
    }
}

.information-partnership .partnership__services-content {
    max-width: 664px;
    width: 100%;
}

.information-partnership .partnership-text.partnership__services-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;
    margin-top: 62px;
}

.information-partnership .partnership__services-notify {
    margin-top: 20px;

    font-weight: 600;
}

.information-partnership .partnership-text {
    color: #121313;
}

.information-partnership .partnership-text b,
.information-partnership .partnership-text strong {
    font-weight: 600;
    color: #bebebe;
}

@media screen and (max-width: 991px) {
    .information-partnership .partnership__services-content {
        max-width: 100%;
    }

    .information-partnership .partnership-text.partnership__services-text {
        margin-top: 40px;
    }
}

.information-partnership .partnership__feedback-wrapper {
    flex-direction: column-reverse;
    background: #FFF;

    padding: 0;
}

.information-partnership .partnership__feedback-col {
    background: #F2F3F4;
}

.information-partnership .partnership__feedback-col:first-child {

    padding: 40px;

}

.information-partnership .partnership__feedback-col:nth-child(2) {
    padding: 28px 40px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.information-partnership .speak__left {
    max-width: 512px;
}

.information-partnership .partnership__feedback-col-link {
    border-bottom: 1px solid #121313;

    padding-bottom: 14px;
}

.information-information-38 .upper__text {
    display: block;
}

.information-information-38 .upper {
    display: flex;
    width: 100%;

    margin-top: 60px;

    padding-left: 40px;
    padding-right: 40px;
}

.information-information-38 .upper__container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding-left: 0 !important;
    padding-right: 0 !important;
}

.information-information-38 .upper__title {
    font-size: 35px;
    font-weight: 400;
    line-height: 42.36px;
    text-align: left;
}

.information-information-38 .upper__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;

    max-width: 679px;
}

.information-information-38 .big-photo {
    width: 100%;

    margin-top: 60px;
}

.information-information-38 .information__title {
    margin-bottom: 0;
    margin-top: 0;
}

.information-information-38 .nav-holder {
    padding-left: 40px;
    padding-right: 40px;
}

/* OPT */

.information-information-38 .opt {
    display: flex;
    justify-content: center;

    margin-top: 60px;
}

.information-information-38 .opt__container {
    width: 100%;
}

.information-information-38 .opt__sides {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.information-information-38 .opt__right {
    margin-left: 60px;

    width: 100%;
}

.information-information-38 .opt__title {
    color: #121313;

    font-size: 35px;
    font-weight: 400;
    line-height: 42.36px;
}

.information-information-38 .opt__text {
    margin-top: 75px;

    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;

    color: #121313;
}

.information-information-38 .opt__button {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px 78px;

    border-radius: 3px;

    color: #F2F3F4;

    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    text-align: center;

    background-color: #121313;

    margin-top: 88px;

    width: fit-content;
}

.information-information-38 .opt__sides:not(.opt__sides:first-child) {
    margin-top: 27px;
}

.information-information-38 .opt__sides:nth-child(2n) .opt__right {
    margin-right: 40px;
}

/* .opt__sides:nth-child(2n-1) .opt__img{
  margin-left: 40px;
} */

.information-information-38 .opt__img {
    width: 100%;
}

/* international */

.information-information-38 .international {
    margin-top: 60px;

    display: flex;
    justify-content: center;
}

.information-information-38 .international__container {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.information-information-38 .international__title {
    font-size: 35px;
    font-weight: 400;
    line-height: 42.36px;

}

.information-information-38 .international__text {
    margin-top: 40px;

    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;

    color: #121313;
}

.information-information-38 .international__img {
    margin-top: 30px;

    max-width: 718px;
    width: 100%;
}

.information-information-38 .speak__block img {
    margin: 0;

}

.information-information-38 .big-photo {
    margin-top: 69px;
}

/* SPEAK */

.information-information-38 .speak {
    display: flex;
    justify-content: center;

    margin-top: 120px;
}

.information-information-38 .speak__container {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.information-information-38 .speak__block {
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #F2F3F4;

    padding: 40px;
}

.information-information-38 .speak__left {
    max-width: 491px;
}

.information-information-38 .speak__title {
    font-size: 35px;
    font-weight: 400;
    line-height: 42.36px;
    text-align: left;

    color: #121313;
}

.information-information-38 .speak__text {
    margin-top: 40px;

    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;

    color: #121313;
}

.information-information-38 .speak__right {
    display: flex;
    align-items: center;

    margin-left: 60px;
}

.information-information-38 .speak__group {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 277px;

    padding-bottom: 10px;

    border-bottom: 1px solid #121313;
}

.information-information-38 .speak__group-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    text-align: left;
    color: #121313;

    margin-left: 20px;
    margin-right: 13px;

}

.information-information-38 .speak__col .speak__group:last-child {
    margin-top: 40px;
}

.information-information-38 .speak__col {
    margin-left: 60px;
}

.information-information-38 .speak__col:first-child {
    margin-left: 0;
}

.information-information-38 .speak__group--no-decor {
    border: none;

    width: auto;
}

.information-information-38 .speak__group-social {
    display: flex;
    align-items: center;

    margin-left: 40px;
}

.information-information-38 .speak__group-social--first {
    margin-left: 0;
}

.information-information-38 .speak__group-social p {
    margin-left: 5px;

    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;

    color: #121313;
}

.information-information-38 .information__title {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.information-information-38 h2 {
    color: #121313;
}

@media screen and (max-width: 1399px) {
    .information-information-38 .speak__block {
        flex-direction: column;
        align-items: start;
    }

    .information-information-38 .speak__right {
        margin-left: 0;
        margin-top: 40px;
    }
}

@media screen and (max-width: 1240px) {

    .information-information-38 .opt {
        padding-left: 40px;
        padding-right: 40px;
    }

    .information-information-38 .opt__sides {
        flex-direction: column;
    }

    .information-information-38 .opt__sides:nth-child(2n-1) .opt__img {
        margin-left: 0;
    }

    .information-information-38 .opt__sides:nth-child(2n) {
        flex-direction: column-reverse;
    }

    .information-information-38 .opt__right {
        margin-left: 0;
    }

    .information-information-38 .opt__sides:nth-child(2n) .opt__right {
        margin-right: 0;
    }

    .information-information-38 .opt__right {
        margin-top: 60px;
    }

    .information-information-38 .opt__text {
        margin-top: 40px;
    }

    .information-information-38 .opt__button {
        margin-top: 40px;
    }

    .information-information-38 .opt__sides:not(.opt__sides:first-child) {
        margin-top: 40px;
    }
}

@media screen and (max-width: 991px) {

    .information-information-38 .big-photo {
        margin-top: 40px;
    }

    .information-information-38 .opt {
        padding-left: 20px;
        padding-right: 20px;
    }

    .information-information-38 .nav-holder {
        padding-left: 20px;
        padding-right: 20px;

        display: none;
    }

    .information-information-38 .upper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .information-information-38 .upper__container {
        flex-direction: column;
        align-items: start;
    }

    .information-information-38 .upper__title {
        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;

    }

    .information-information-38 .upper__text {
        margin-top: 24px;

        font-size: 14px;
        font-weight: 400;
        line-height: 16.94px;
        text-align: left;

    }

    .information-information-38 .speak__right {
        flex-direction: column;
        align-items: start;
    }

    .information-information-38 .speak__col {
        margin-left: 0;
    }

    .information-information-38 .speak__col2 {
        margin-top: 40px;
    }

    .information-information-38 .speak__container {
        padding-left: 0;
        padding-right: 0;
    }

    .information-information-38 .speak__block {
        padding-left: 20px;
        padding-right: 20px;
    }

    .information-information-38 .speak {
        margin-top: 60px;
    }

    .information-information-38 .opt__right {
        margin-top: 40px;
    }

    .information-information-38 .opt__title {
        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;

    }

    .information-information-38 .opt__text {
        font-size: 14px;
        font-weight: 400;
        line-height: 16.94px;

    }

    .information-information-38 .opt__button {
        padding: 12px 30px;

        font-size: 14px;
        font-weight: 600;
        line-height: 16.94px;

    }

    .information-information-38 .international__container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .information-information-38 .international__title {
        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;

    }

    .information-information-38 .international__text {
        font-size: 14px;
        font-weight: 400;
        line-height: 16.94px;
        text-align: left;

    }

    .information-information-38 .international__img {
        margin-top: 40px;
    }

    .information-information-38 .speak__title {
        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;
    }

    .information-information-38 .speak__text {
        margin-top: 24px;

        font-size: 14px;
        font-weight: 400;
        line-height: 16.94px;
        text-align: left;

    }

    .information-information-38 .speak__group-text {
        font-size: 20px;
        font-weight: 400;
        line-height: 24.2px;

    }
}

.information-information-38 .upper__text--original {
    display: none;
}

.information-information-38 .speak__block p {
    margin-bottom: 0;
}

.capsule-popup-block-lower-buttons {
}

@media screen and (max-width: 991px) {
    .capsule-popup-block-lower-buttons {
        flex-direction: column-reverse;
    }
}

.product-isearch .categories__row-right {
    margin-top: 0;
}

.iSearchBox ul {
    overflow-y: scroll;
    max-height: 533px;
}

.menu__mobile-circle-popup-circle {
    background: #f2f3f4;

    border: none;

}

.menu__mobile-circle-holder .language-select {
    font-weight: 400 !important;
}

.item__tab-panel {
    font-size: 12px;
    line-height: 18px;
}
.item__tabs-content .item__tab-panel {
    display: none;
}
.item__tabs-content .item__tab-panel.active {
    display: block;
    font-size: 12px;
    line-height: 18px;
}
.item__tab-content-characteristic {
    font-weight: 600;
}
.item__tab-content-row {
    font-size: 12px;
    line-height: 18px;
}
.item__tabs-content {
    margin-top: 16px;
}
.item__tab-button.active {
    font-weight: 500;
}
.item__tabs-header {
    overflow-x: scroll;
    display: flex;
    scrollbar-width: none;
}
button.item__tab-button.active {
    border-bottom: 1px solid;
}
button.item__tab-button {
    border: none;
    padding: 12px 6px 8px;
    background: transparent;
    border-bottom: 0.5px solid #F2F3F4;
    white-space: nowrap;
    font-size: 12px;
}

.item__tabs {
    display: none;

    margin-top: 49px;
}

@media screen and (max-width: 991px) {
    .item__tabs {
        display: block;
    }
    .item__accordeon {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .favorites .cards4__items {
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 40px !important;
    }
}

@media screen and (max-width: 600px) {
    .favorites .cards4__items {
        grid-template-columns: 1fr 1fr;

    }

    .favorites .cards4__item {
        min-width: 171px;
    }

}

.information-instagram .inst-feeds__img-outer {
    aspect-ratio: 1 / 1;
}

.information-instagram .inst-feeds__img {
    object-fit: cover;
}

.footer__button-up {
    cursor: pointer !important;
    right: 0 !important;
    position: absolute !important;
    top: auto !important;
    bottom: 36px !important;
}

@media screen and (max-width: 1200px) {
    .footer__lower {
        grid-template-areas: "footer--lower-col-2 footer--lower-col-3" "footer--lower-col-1 ." !important;
    }
}

.information-partnership .partnership__feedback-col-link {
    min-width: 250px;
    justify-content: space-between;
}

.information-partnership .partnership__works-collapse-toggle:before {
    display: none;
}

.information-partnership .partnership-btn {
    margin-top: 40px;
}

.information-partnership .partnership__feedback-form-label {
    display: none;
}

.information-partnership .partnership__feedback-form-submit-wrapper {
    margin-top: 0;
}

.information-partnership .partnership__feedback-form-input {
    border-radius: 3px;
}

@media screen and (max-width: 991px) {
    .information-partnership .partnership__feedback {
        padding-left: 0;
        padding-right: 0;
    }

    .information-partnership .partnership__feedback-form-submit-wrapper {
        flex-direction: row;
    }

    .information-partnership .partnership__feedback-wrapper {
        flex-direction: column;
    }

    .information-partnership .partnership-title.partnership__feedback-title {
        padding-left: 20px;
        padding-right: 20px;
    }

    .information-partnership .partnership__feedback-wrapper {
        margin-top: 24px;
    }

    .information-partnership .partnership__feedback-col:first-child,
    .information-partnership .partnership__feedback-col:nth-child(2) {
        padding: 40px 20px;
        align-items: start;

    }

    .information-partnership .partnership__feedback-col {
        flex-direction: column;
    }

    .information-partnership .partnership__feedback-col-title {
        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;
        margin-bottom: 40px;

    }

    .information-partnership .partnership__feedback-col-description {
        margin-bottom: 40px;
    }

    .information-partnership .partnership__feedback-form-item {
        flex: 0 0 100%;
    }

    .information-partnership .partnership-btn.partnership__feedback-form-submit,
    .information-partnership .partnership__feedback-form-input {
        height: 43px;
    }
}

.account-password .registration__form-input-eye,
.account-password .registration__form-input-eye-open {
    margin-top: 0;
}

.account-password .account__data-col {
    width: calc(50% - 12px);
}

.account-password .account__data-input {
    border: none !important;
}

.account-password .account__data-label {
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
}

@media screen and (max-width: 800px) {
    .account-password .account__data-col {
        width: 100%;
    }

}

.zoom {
    z-index: 1000;
}

.information-galeryImage .season {
    margin-top: 0;
}

@media screen and (max-width: 1200px) {
    .information-galeryImage .upper__container {
        align-items: start;
    }

}

@media screen and (max-width: 991px) {
    .information-galeryImage .season {
        margin-top: 0;
    }
}


.product-category .cards4__item-upper {
    z-index: 1;
}


.upseason a{
    color: #F2F3F4 !important;
}

.upseason a:hover{
    color: #F2F3F4 !important;
}




.cards4__mightlike-carousel{
    margin-top: 40px;
}

@media screen and (max-width: 600px) {
    .cards4__mightlike-carousel {
        margin-top: 20px;
    }
}




.wholesale-upper{
    margin-top: 63px;
}

.wholesale__img{
    margin-top: 60px;
}

.breadcrumb.wholesale-nav{
    padding-left: 40px !important;
    padding-right: 40px !important;

    margin-top: 30px !important;
}


@media screen and (max-width: 1200px) {
    .wholesale-upper{
        align-items: start;
    }
}


@media screen and (max-width: 991px) {
    .wholesale-upper{
        margin-top: 60px;
    }

    .wholesale__img{
        margin-top: 40px;
    }
}

@media screen and (max-width: 800px) {
    ul.breadcrumb.wholesale-nav{
        display: none !important;
    }
}




.item__center-lower-button-socials{
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.item__center-lower-button-social-popup{
    bottom: 59px;

    position: absolute;

    display: none;
    grid-template-columns: 1fr;
    gap: 16px;
}

.item__center-lower-button-social-button{
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    transition: .3s linear;
    margin-right: 15px;
    z-index: 4;
    cursor: pointer;
}


.product-card--out-of-stock video,
.product-card--out-of-stock .cards4__item-img-hovered,
.product-card--out-of-stock .cards4__item-img{
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}


.card-button__outstock{
    color: #121313 !important;
    background: #ffffff !important;
}


.product__pds-img img{
    max-width: 77px;
}



.card-hover-colors .card-hover-color{
    height: 12px !important;
}



.has-error .select2-container--default,
.has-error .np__search{
    border: 1px solid #f53f4a;
}

.product__rating .rating a{
    text-decoration: underline !important;
    color: #000000 !important;
    font-weight: 500;
}


.button__social.item__center-lower-button{
    border-radius: 50%;
    background: #FFFFFF80;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    transition: .3s linear;
    margin-right: 15px;
    z-index: 4;
    cursor: pointer;
}



.button__social.item__center-lower-button:hover,
.button__social.item__center-lower-button:focus{
    background: #FFFFFF;
}

.social__share{
    border-radius: 50%;
    background: #FFFFFF80;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    transition: .3s linear;
    margin-right: 15px;
    z-index: 4;
    cursor: pointer;
}

.social__button .social__share{
    width: 43px;
    height: 43px;
}


.information-information-6 ul.breadcrumb{
    padding-left: 40px;
}



.delivery__arrow-field {
    display: none;

    padding: 19px 19px 22px;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;
    margin-left: -19px;
}

.delivery__arrow {
    width: 5px;
    height: 8px;
}


@media (max-width: 991px) {
    .information-information-6 .delivery__title {
        display: flex;
        align-items: center;
    }

    .delivery__arrow-field {
        display: flex;
    }

    .information-information-6 ul.breadcrumb{
        display: none;
    }
}



@media (min-width: 1200px) {
    .information-studio .container{
        padding-left: 40px;
        padding-right: 40px;
    }
}


@media (min-width: 768px) {
    .information-studio .col-sm-12.col-md-6.col-lg-4.col-xl-4{
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
}



.categories__row-center-button-holder-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .categories__row-center-button-holder-mobile{
        display:block;
    }
}


.social__button .facebok__share.active-social{
    left: -58px;
}

.social__button .twitter__share.active-social{
    left: 0;
}

.social__button .facebok__share,
.social__button .twitter__share{
    opacity: 0;
}

.social__button .facebok__share.active-social,
.social__button .twitter__share.active-social{
    opacity: 1;

    top: -59px;
}



.iti{
    margin-top: 16px !important;
}



.item__mobile-img-group::-webkit-scrollbar{
    height: 0;
}


.item__mobile-img-group{
    max-width: 200px;
}

@media screen and (max-width: 450px) {
    .social__button .facebok__share.active-social{
        left: 0;

        top: -118px;
    }
}


.social__share.active-social:hover{
    background: #fff;
}

.social__share.active-social:hover .button__icon{
    color: #717271;
}



.option__wrap .control-label.item__size-text{
    margin-bottom: 16px;
}



.modal-notify-goods .remodal-close{
    top: 8px;
    right: 16px;
    left: auto;
}



.product-isearch .showmore{
    margin-top: 100px;
}

.product-isearch .showmore__button{
    margin-top: 0;
}

.product-isearch .text__empty{
    padding-left: 20px;
    padding-right: 20px;
}

.product-isearch .showmore__pages a{
    color: #121313;
}

.product-isearch .showmore__button{
    border-radius: 3px;
}

.product-isearch .showmore__button h4{
    font-weight: 600;
    font-size: 16px;
}

.blog-latest .pagination__block .pagination li.pagination__link a{
    color: #121313;
    font-weight: 500;
}


@media screen and (max-width: 991px) {
    .product-isearch .showmore{
        margin-top: 47px;
    }

    .product-isearch .showmore__button h4{
        font-size: 14px;
    }
}


.opt__button a{
    color: #F2F3F4;
}


.opt__button:hover a{
    color: #F2F3F4;
}




.zoom__middle-content-holder{
    display: flex;
    justify-content: center;
}


.zoom__middle-content{
    display: flex;
    justify-content: center;
    align-items: center;
}

.zoom__img{
    width: auto;
    height: 100%;
}





@media screen and (max-height: 850px) {
    .zoom__middle-content{
        max-height: 600px;
    }
}

@media screen and (max-height: 750px) {
    .zoom__middle-content{
        max-height: 520px;
    }
}


@media screen and (max-height: 650px) {
    .zoom__middle-content{
        max-height: 450px;
    }
}


.item__left-video{
    margin-top: 19px;
    width: 100%;
}



.information-capsules .breadcrumb{
    padding-left: 40px;
}

.information-capsules .breadcrumb li a{
    color: #484848;
    font-weight: 500;
}

.information-capsules .breadcrumb li.active{
    color: #a5b4cc;
    font-weight: 500;
}


@media screen and (max-width: 991px) {
    .information-capsules .breadcrumb{
        padding-left: 20px;
    }

    .information-capsules .breadcrumb{
        display: none;
    }
}



.fashion-capsule-popup{
    position: fixed;

    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;

    z-index: 1001;
}

.fashion-capsule-popup-body{
    width: 100%;
    background: #FFFFFF;
    max-width: 1300px;
}

.fashion-capsule-popup-upper{
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-top: 25px;
    padding-bottom: 26px;

    background: #F2F3F4;
}

.fashion-capsule-popup-upper-logo{
    max-width: 167px;
    width: 100%;
}

.fashion-capsule-popup-upper-closer{
    position: absolute;
    right: 35px;

    cursor: pointer;
}

.fashion-capsule-popup-content-holder{
    width: 100%;
    display: flex;
    justify-content: center;

    margin-top: 24px;

    padding-bottom: 15px;

    padding-left: 20px;
    padding-right: 20px;
}

.fashion-capsule-popup-content{
    position: relative;

    display: grid;
    grid-template-columns: 454fr 509fr;

    column-gap: 51px;

    max-height: 620px;
}


.fashion-capsule-popup-content-slider{
    position: relative;
    width: fit-content;
}

.fashion-capsule-popup-content-slider-arrows{
    width: 100%;
    height: 100%;

    top: 0;
    left: 0;
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-left: 14px;
    padding-right: 14px;
}

.fashion-capsule-popup-content-side:nth-child(1){
    justify-content: center;
    display: flex;
}


.fashion-capsule-popup-content-slider-arrow{
    cursor: pointer;
}

.fashion-capsule-popup-content-side:nth-child(2){
    overflow-y: auto;
}

.fashion-capsule-popup-content-side-lower{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 11px;

    text-align: center;
}

.fashion-capsule-popup-content-side-lower-text{
    color: #121313;

    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
}

.fashion-capsule-popup-content-cards{
    display: grid;
    grid-template-columns: 1fr 1fr;

    column-gap: 35px;
    row-gap: 15px;

    max-width: 509px;

}

.fashion-capsule-popup-content-outer{
    width: 100%;
    display: flex;
    justify-content: center;
}

.fashion-capsule-popup-content-card{
    width: fit-content;

    max-width: 237px;
}



.fashion-capsule-popup-content-card-img-content{
    position: relative;
    width: fit-content;
}

.fashion-capsule-popup-content-card-hover{
    position: absolute;


    display: flex;
    flex-direction: column;


    justify-content: end;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);

    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 14px;

    transition: .3s linear;

    opacity: 0;

}


.fashion-capsule-popup-content-card:hover .fashion-capsule-popup-content-card-hover{
    opacity: 1;
}


.fashion-capsule-popup-content-card-sizes{
    display: flex;
    align-items: center;

    overflow-x: auto;
}

.fashion-capsule-popup-content-card-sizes::-webkit-scrollbar{
    height: 10px;
    padding-right: 2px;
}

.fashion-capsule-popup-content-card-size{
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 500;

    text-align: center;

    color: #FFFFFF;

    border: 1px solid #FFFFFF;

    transition: .3s linear;

    cursor: pointer;

    min-width: 36px;
    height: 27px;

    border-radius: 3px;
}



.fashion-capsule-popup-content-card-size:hover{
    background: #121313;
    border: 1px solid #121313;
}

.fashion-capsule-popup-content-card-button{
    width: 100%;

    background: #FFFFFF;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .3s linear;

    margin-top: 14px;

    height: 36px;

    border-radius: 3px;
}

.fashion-capsule-popup-content-card-button:hover{
    background: #121313;
}

.fashion-capsule-popup-content-card-button-text{
    font-size: 14px;
    font-weight: 500;
    text-align: center;

    transition: .3s linear;

    color: #121313;
}

.fashion-capsule-popup-content-card-button-img{
    margin-left: 9px;

    transition: .3s linear;
}



.fashion-capsule-popup-content-card-button:hover .fashion-capsule-popup-content-card-button-text{
    color: #FFFFFF;
}

.fashion-capsule-popup-content-card-button:hover .fashion-capsule-popup-content-card-button-img{
    filter: invert(100%);
    -webkit-filter: invert(100%);
}


.fashion-capsule-popup-content-card-text{
    margin-top: 15px;

    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;

    color: #121313;
}

.fashion-capsule-popup-content-card-price{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    color: #121313;

    margin-top: 4px;
}




.fashion-price-old{
    font-size: 12px;
    line-height: 18px;
    text-align: center;

    font-weight: 400;

    color: #A5B4CD;

    text-decoration: line-through;

}

.fashion-price-new{
    color: #F53F4A;

    margin-left: 4px;
}


.fashion-popup-carousel-holder{
    display: none;
}


.fashion-capsule-popup-content-item{
    display: none;
}

.fashion-capsule-popup-content-item.active{
    display: block;
}


.fashion-capsule-popup-content-side:nth-child(1){
    position: relative;
}

.fashion-capsule-popup-content-side-slider-area{
    height: fit-content;

    position: sticky;
    top: 0px;
}


.fashion-capsule-popup-content-item{
    max-height: 620px;
    height: 100%;
    width: 100%;

    overflow: auto;

}



.fashion-capsule-popup-content-slider-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 8px;

    width: 100%;
    max-width: 454px;
}

.fashion-capsule-popup-content-slider-grid-column{
    display: flex;
    gap: 6px;
    flex-direction: column;
}

.fashion-capsule-popup-content-slider-grid-column:nth-child(2){
    flex-direction: column-reverse;
}

.fashion-capsule-popup-content-slider-grid-column-row{
    display: grid;

    grid-template-columns: 1fr 1fr;
    column-gap: 6px;
}

.fashion-capsule-popup-content-slider-grid-column-row-img{
    width: 100%;
    max-width: 113px;
}

.fashion-capsule-popup-content-slider-grid-column-img{
    width: 100%;
    max-width: 234px;
}


.fashion-popup-carousel .fashion-capsule-popup-content-card-button-holder{
    width: 100%;

    display: flex;
    justify-content: center;

    padding: 5px 17px;

    transition: .3 linear;

    margin-top: 18px;
}

.fashion-popup-carousel .fashion-capsule-popup-content-card-button{
    display: flex;
    justify-content: center;

    padding: 5px 17px;

    border-radius: 3px;

    border: 1px solid #121313;
    color: #FFFFFF;

    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    text-align: center;

    background: #121313;

    cursor: pointer;
}

.fashion-capsule-popup-content-card-button.triggered{
    border: 1px solid #121313;
    color: #121313;

    background: #FFFFFF;
}


.fashion-capsule-popup .fashion-capsule-popup-content-slider-photo{
    max-height: 580px;
    object-fit: contain;

    height: 100%;
}





@media screen and (max-width: 1200px){


    .fashion-capsule-popup-content{
        max-height: unset;
    }


    .fashion-popup-carousel-holder{
        display: block;
    }

    .fashion-capsule-popup-content-holder{
        padding-left: 0;
        padding-right: 0px;
    }

    .fashion-capsule-popup-content-side:nth-child(1){
        padding-left: 20px;
        padding-right: 20px;
    }

    .fashion-capsule-popup{
        padding: 20px;
    }

    .fashion-capsule-popup-content{
        display: flex;
        flex-direction: column;
        align-items: center;

        width: 100%;

    }

    .fashion-capsule-popup-content-item{
        overflow: unset;
        max-height: unset;
    }

    .fashion-capsule-popup-content-holder{
        overflow-y: scroll;
        overflow-x: hidden;

        max-height: 600px;

        height: 100%;
    }

    .fashion-capsule-popup-content-slider-photo{
        max-width: 353px;
        width: 100%;
    }

    .fashion-capsule-popup-content-side:nth-child(2){
        width: 100%;

        display: flex;

        overflow: unset;

        margin-top: 23px;
    }

    .fashion-capsule-popup-content-side-upper{
        width: 100%;
    }

    .fashion-capsule-popup-content-side{
        width: 100%;
    }

    .fashion-capsule-popup-content-cards{
        display: flex;

        row-gap: 0;
        column-gap: 0;
        height: fit-content;
    }

    .fashion-capsule-popup-content-side-lower{
        justify-content: start;
    }

    .fashion-capsule-popup-content-side-lower-text{
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
    }

    .fashion-capsule-popup-content-card-img{
        max-width: 260px;
    }


    .fashion-capsule-popup-content-cards{
        display: none;
    }

    .fashion-popup-carousel.owl-carousel .owl-nav {
        width: calc(100vw - 44px);
        position: absolute;
        top: 47%;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        pointer-events: none; /* Для предотвращения перекрытия */
    }

    .fashion-popup-carousel.owl-carousel .owl-prev,
    .fashion-popup-carousel.owl-carousel .owl-next {
        position: relative;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        padding: 10px;
        border-radius: 50%;
        cursor: pointer;
        pointer-events: all; /* Для кликабельности кнопок */
    }

    .fashion-popup-carousel.owl-carousel .owl-prev {
        left: 20px; /* Позиционируем внутри flex-контейнера */
    }

    .fashion-popup-carousel.owl-carousel .owl-next {
        right: 20px; /* Позиционируем внутри flex-контейнера */
    }

    .fashion-capsule-popup-content-card{
        max-width: unset;
        width: 100%;
    }

    .fashion-capsule-popup-content-card-img{
        max-width: unset;
        width: 100%;
    }

    .fashion-capsule-popup-content-card-img-content{
        width: 100%;
    }
}


@media screen and (max-height: 768px){
    .fashion-capsule-popup-content-holder{
        max-height: 550px;
    }

    .fashion-capsule-popup-content{
        max-height: 550px;
    }

    .fashion-capsule-popup .fashion-capsule-popup-content-slider-photo {
        max-height: 500px;
    }
}


@media screen and (max-height: 650px){
    .fashion-capsule-popup-content-holder{
        max-height: 440px;
    }

    .fashion-capsule-popup-content{
        max-height: 440px;
    }

    .fashion-capsule-popup .fashion-capsule-popup-content-slider-photo {
        max-height: 400px;
    }
}


@media screen and (max-width: 991px){
    .fashion-capsule-popup .fashion-capsule-popup-content-slider-photo {
        max-height: 400px;
    }
}



.information-capsules .fashion{
    display: flex;
    justify-content: center;

    margin-top: 60px;

    width: 100%;

    overflow-x: clip;
}

.information-capsules .fashion__container{
    width: 100%;
}

.information-capsules .fashion__title{
    font-size: 35px;
    font-weight: 400;
    line-height: 42.36px;

    color: #121313;

    text-align: center;
}


.information-capsules .fashion__view{
    margin-top: 40px;

    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.information-capsules .fashion__button{
    padding: 4px 10px 5px 10px;

    border: 1px solid #D9D9D9;
    border-radius: 3px;

    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: center;

    cursor: pointer;
    transition: .3s linear;

    width: fit-content;

    margin-top: 40px;
}


.information-capsules .fashion__button.active{
    background: #121313;
    border: 1px solid #121313;
    color: #FFFFFF;
}


.information-capsules .fashion__button:hover{
    background: #121313;
    border: 1px solid #121313;
    color: #FFFFFF;
}


.information-capsules .fashion__center{
    margin-left: 300px;
    margin-right: 300px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.information-capsules .fashion__line{
    position: absolute;

    z-index: 43;

    left: -235px;

    pointer-events: none;
}

.information-capsules .fashion__line1{
    width: 68px;
    height: 300px;
}

.information-capsules .fashion__line2{
    width: 68px;
    height: 300px;

    left: auto;
    right: -221px;
}

.information-capsules .fashion__button-col{
    display: flex;
    flex-direction: column;
}


.information-capsules .fashion__button-col1{
    align-items: end;
}


.information-capsules .fashion__button-col1 .fashion__button:nth-child(2),
.information-capsules .fashion__button-col1 .fashion__button:nth-child(4){
    margin-right: 60px;
}

.information-capsules .fashion__button-col1 .fashion__button:nth-child(3){
    margin-right: 105px;
}

.information-capsules .fashion__button-col2 .fashion__button:nth-child(2),
.information-capsules .fashion__button-col2 .fashion__button:nth-child(4){
    margin-left: 60px;
}

.information-capsules .fashion__button-col2 .fashion__button:nth-child(3){
    margin-left: 105px;
}

.information-capsules .fashion__cards{
    position: relative;
}


.information-capsules .fashion__swiper{
    display: block;

    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: .0s linear;

}

.information-capsules .fashion__swiper.active--swiper{

    pointer-events: auto;
    opacity: 1;

    display: block;

    position: relative;
    transition: .3s linear;
}

.information-capsules .swiper,
.information-capsules .swiper2,
.information-capsules .swiper3,
.information-capsules .swiper4,
.information-capsules .swiper5,
.information-capsules .swiper6,
.information-capsules .swiper7,
.information-capsules .swiper8,
.information-capsules .swiper9,
.information-capsules .swiper10 {
    width: calc(190px * 1.3)  !important;
    height:  calc(296px * 1.3)  !important;
}




/* ELEGANT */



.information-capsules .elegant{
    display: flex;
    justify-content: center;

    margin-top: 90px;

    width: 100%;
}

.information-capsules .elegant__container{
    display: flex;
    justify-content: space-between;

    width: 100%;


    padding-right: 40px;
    padding-left: 40px;
}

.information-capsules .elegant__title{
    font-size: 35px;
    font-weight: 400;
    line-height: 42.36px;
    text-align: left;

    color: #121313;
}

.information-capsules .elegant__text{
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;

    color: #121313;

    max-width: 494px;

    margin-right: 120px;
}



/* GRAY */


.information-capsules .gray{
    display: flex;
    justify-content: center;

    margin-top: 60px;

    width: 100%;
}

.information-capsules .gray__container{
    display: grid;
    grid-template-columns: 1fr 1fr;

    column-gap: 2px;

    width: 100%;
}

.information-capsules .gray__block{
    background: #F2F3F4;

    display: flex;
    align-items: center;

    padding: 9px 40px;


    width: 100%;
}

.information-capsules .gray__right{
    margin-left: 8px;
}

.information-capsules .gray__number{
    font-size: 200px;
    font-weight: 300;
    line-height: 242.05px;
    text-align: left;
}

.information-capsules .gray__title{
    font-size: 35px;
    font-weight: 400;
    line-height: 42.36px;
    text-align: left;
}

.information-capsules .gray__text{
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;

    margin-top: 16px;

    max-width: 321px;
}


/* PHOTOS */


.information-capsules .photos{
    display: flex;
    justify-content: center;

    margin-top: 40px;

    width: 100%;
}

.information-capsules .photos__container{
    width: 100%;
}


.information-capsules .photos-row{
    display: flex;
    width: 100%;
}



.information-capsules .photos-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; /* 4 колонки по умолчанию */
    grid-template-rows: auto;
}

.information-capsules .photos-row > *:nth-child(1),
.information-capsules .photos-row > *:nth-child(2),
.information-capsules .photos-row > *:nth-child(3),
.information-capsules .photos-row > *:nth-child(4) {
    grid-column: span 1;
}

.information-capsules .photos-row > *:nth-child(5),
.information-capsules .photos-row > *:nth-child(6) {
    grid-column: span 1;
}

.information-capsules .photos-row > *:nth-child(7) {
    grid-column: span 2;
}

.information-capsules .photos-row > *:nth-child(8),
.information-capsules .photos-row > *:nth-child(9){
    grid-column: span 1;
}


.information-capsules .photos-row > *:nth-child(9n+1),
.information-capsules .photos-row > *:nth-child(9n+2),
.information-capsules .photos-row > *:nth-child(9n+3),
.information-capsules .photos-row > *:nth-child(9n+4) {
    grid-column: span 1;
}

.information-capsules .photos-row > *:nth-child(9n+5),
.information-capsules .photos-row > *:nth-child(9n+6) {
    grid-column: span 1;
}

.information-capsules .photos-row > *:nth-child(9n+7) {
    grid-column: span 2;
}

.information-capsules .photos-row > *:nth-child(9n+8),
.information-capsules .photos-row > *:nth-child(9n+9){
    grid-column: span 1;
}



.information-capsules .photos-row2{
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
}


.information-capsules .photos-row3{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

.information-capsules .photos-photo{
    width: 100%;

    height: auto;
}

.information-capsules .photos-photo--big{

}


.information-capsules .photos__button-holder{
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.information-capsules .photos__button{
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;

    color: #F2F3F4;

    background: #121313;

    border-radius: 3px;

    padding: 18px 36px;

    transition: .3s linear;
    cursor: pointer;

    border: 1px solid #121313;
}

.information-capsules .photos__button:hover{
    color: #121313;

    background: #F2F3F4;
}


.information-capsules .elegant2{
    margin-top: 120px;
}





@media screen and (max-width: 1480px){
    .information-capsules .elegant__text{
        margin-right: 0;
    }

    .information-capsules .elegant{
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 1300px){
    .information-capsules .fashion__center{
        margin-left: 100px;
        margin-right: 100px;
    }

    .information-capsules .fashion__line1{
        left: -100px;
    }

    .information-capsules .fashion__line2{
        right: -100px;
    }
}


.information-capsules .gray__title--mobile{
    display: none;
}




@media screen and (max-width: 1200px){
    .information-capsules .gray__number{
        display: flex;
        align-items: center;

        font-size: 120px;
        font-weight: 300;
        line-height: 145.23px;
        text-align: left;


        font-size: 120px;
        font-weight: 300;
        line-height: 145.23px;
        text-align: left;


        padding: 0;
    }

    .information-capsules .gray__block{
        padding: 20px;
    }

    .information-capsules .gray__title{
        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;

        display: none;

    }

    .information-capsules .gray__text{
        font-size: 14px;
        font-weight: 400;
        line-height: 16.94px;
        text-align: left;

        margin-left: 0;
        margin-top: 0;
    }

    .information-capsules .gray__block{
        flex-direction: column;
        align-items: start;
    }

    .information-capsules .gray__title--mobile{
        display: inline-block;

        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;

        margin-left: 20px;

    }
}

.information-capsules .fashion__mobile-buttons{
    display: none;

    overflow-x: scroll;



    padding-bottom: 10px;

    margin-top: 40px;
}




.information-capsules .fashion__mobile-button{
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;

    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;

    padding: 7px 10px;

    cursor: pointer;
    transition: .3s linear;

    border: 1px solid  #D9D9D9;
    color: #121313;

    border-radius:  5px;

    white-space: nowrap;
}

.information-capsules .fashion__mobile-button.active{
    border: 1px solid  #121313;
    color:  #FFFFFF;
    background: #121313;
}

.information-capsules .fashion__mobile-button:hover{
    border: 1px solid  #121313;
    color:  #FFFFFF;
    background: #121313;
}


.information-capsules .photos-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;

    max-height: 720px;
}

.looks__photos .photos__photo{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media screen and (max-width: 1440px){
    .information-capsules .swiper, .information-capsules .swiper2, .information-capsules .swiper3, .information-capsules .swiper4,
    .information-capsules .swiper5, .information-capsules .swiper6,
    .information-capsules .swiper7, .information-capsules .swiper8, .information-capsules .swiper9,
    .information-capsules .swiper10 {
        width: 190px  !important;
        height:  296px  !important;
    }

    .information-capsules .fashion__center{
        margin-left: 250px;
        margin-right: 250px;
    }
}


@media screen and (max-width: 1280px){
    .information-capsules .fashion__center{
        margin-left: 200px;
        margin-right: 200px;
    }
}

@media screen and (max-width: 1180px){
    .information-capsules .fashion__center{
        margin-left: 150px;
        margin-right: 150px;
    }
}


@media screen and (max-width: 991px){

    .information-capsules .fashion__mobile-buttons{
        display: flex;
    }

    .information-capsules .fashion__swiper img{

    }

    .information-capsules .elegant{
        padding-left: 20px;
        padding-right: 20px;
    }

    .information-capsules .elegant__container{
        flex-direction: column;


        padding-right: 20px;
        padding-left: 20px;
    }

    .information-capsules .elegant__title{
        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;

    }

    .information-capsules .elegant__text{
        font-size: 14px;
        font-weight: 400;
        line-height: 16.94px;
        text-align: left;

        margin-top: 20px;

        max-width: 100%;

    }

    .information-capsules .fashion__container{
        padding-left: 20px;
        padding-right: 20px;
    }

    .information-capsules .fashion__title{
        font-size: 24px;
        font-weight: 400;
        line-height: 29.05px;
        text-align: left;
    }

    .information-capsules .fashion__button-col{
        display: none;
    }

    .information-capsules .elegant{
        margin-top: 50px;
    }

    .information-capsules .elegant2{
        margin-top: 60px;
    }

    .information-capsules .photos__button-holder{
        margin-top: 40px;

        padding-left: 20px;
        padding-right: 20px;
    }

    .information-capsules .photos__button{
        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;

        padding-top: 14px;
        padding-bottom: 14px;
        width: 100%;
    }
}

@media screen and (max-width: 800px){
    .information-capsules .gray__container {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 0px;
        row-gap: 2px;
    }
}


.benefit__button{
    cursor: pointer;
}



.swiper-cards .swiper-slide{
    width: 100%;
    height: 100%;
    object-fit: cover;
}







.information-capsules-view .navpage--holder{
    padding-left: 40px;
}

@media screen and (max-width: 991px){
    .information-capsules-view .navpage--holder{
        padding-left: 20px;

        display: none;
    }
}


.information-capsules-view .upper__container{
    padding-left: 0;
    padding-right: 0;
}


.information-capsules-view .breadcrumb li a{
    color: #484848;
    font-weight: 500;
}

.information-capsules-view .breadcrumb li.active{
    color: #a5b4cc;
    font-weight: 500;
}


.capsule-view{

}



.capsule-view__arrow-field {
    display: none;

    padding: 19px 19px 22px;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;
    margin-left: -19px;
}

.capsule-view__arrow {
    width: 5px;
    height: 8px;
}


@media (max-width: 991px) {
    .capsule-view__title {
        display: flex;
        align-items: center;
    }

    .capsule-view__arrow-field {
        display: flex;
    }
}



.photos__button{

}




@media (max-width: 768px) {
    .product-category .catalog__text + p {
        padding-left: 20px;
    }
}

.fashion__swiper .swiper {
    width: calc(190px * 1.3)  !important;
    height:  calc(296px * 1.3)  !important;
}



@media screen and (max-width: 1440px){
    .fashion__swiper .swiper {
        width: 190px  !important;
        height:  296px  !important;
    }
}



.information-capsules .fashion__mobile-buttons::-webkit-scrollbar {
    height: 10px;

    width: 1px;
}

.information-capsules .fashion__mobile-buttons::-webkit-scrollbar-thumb{
    background: transparent;
}


.fashion__count{
    color: #BEBEBE;

    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;

    margin-top: 20px;

    display: none;
}

@media screen and (max-width: 991px) {
    .information-capsules .fashion__mobile-buttons{
        padding-bottom: 0;
    }

    .information-capsules .fashion__mobile-buttons{
        margin-top: 14px;
    }

    .fashion__count{
        display: block;
    }
}

.information-capsules .elegant{
    padding-right: 0px;
    padding-left: 0px;
}


@media screen and (max-width: 991px) {
    .information-capsules .elegant {
        flex-direction: column;
        padding-right: 0px;
        padding-left: 0px;
    }
}



.information-capsules .photos-row-mobile  {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.information-capsules .photos-row-mobile > *:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}
.information-capsules .photos-row-mobile > *:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}
.information-capsules .photos-row-mobile > *:nth-child(3) {
    grid-area: 1 / 3 / 2 / 4;
}
.information-capsules .photos-row-mobile > *:nth-child(4) {
    grid-area: 1 / 4 / 2 / 5;
}
.information-capsules .photos-row-mobile > *:nth-child(5) {
    grid-area: 2 / 1 / 3 / 2;
}
.information-capsules .photos-row-mobile > *:nth-child(6) {
    grid-area: 2 / 2 / 3 / 3;
}
.information-capsules .photos-row-mobile > *:nth-child(7) {
    grid-area: 2 / 3 / 4 / 5;
}
.information-capsules .photos-row-mobile > *:nth-child(8) {
    grid-area: 3 / 1 / 4 / 2;
}
.information-capsules .photos-row-mobile > *:nth-child(9) {
    grid-area: 3 / 2 / 4 / 3;
}



.information-capsules .photos-row-mobile{
    display: none;
}


.information-capsules .photos__button-holder--mobile{
    display: none;
}




.capsule__block-button-buy-all--mobile{
    display: none;
}

.benefit__button--mobile{
    display: none;
}

@media screen and (max-width: 991px) {

    .capsule__block-button-buy-all--mobile{
        display: flex;
    }

    .benefit__button--mobile{
        display: flex;
    }

    .capsule__block-button-buy-all--desktop{
        display: none;
    }

    .benefit__button--desktop{
        display: none;
    }

    .information-capsules .photos-row-mobile{
        display: grid;
    }

    .information-capsules .photos-row-desktop{
        display: none;
    }

    .information-capsules .photos__button-holder--desktop{
        display: none;
    }

    .information-capsules .photos__button-holder--mobile{
        display: flex;
    }

    .benefit__button-holder{
        display: none;
    }


    .fashion-popup-carousel .cards4__item-img{
        max-width: unset;
    }
}


.main__block-lower-prices{

}

.main__block-lower-price--special{
    color: #A5B4CD;

    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
    text-align: left;
    text-decoration: line-through;

    margin-right: 4px;
}

.main__block-lower-price--special .currency__symbol{
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 12px !important;
    text-align: left;
}




@media screen and (max-width: 800px) {
    .catalog__images-col-img:hover{
        position: relative;
    }
}

.information-capsules-view .photos--mobile{
    display: none;
}

.information-capsules-view .looks__photos--mobile{
    display: none;
}


@media screen and (max-width: 1200px) {
    .information-capsules-view .capsule__block-buttons a{
        width: 100%;
    }

    .information-capsules-view .photos--desktop{
        display: none;
    }

    .information-capsules-view .photos--mobile{
        display: grid;
    }

    .information-capsules-view .looks__photos--desktop{
        display: none;
    }

    .information-capsules-view .looks__photos--mobile{
        display: grid;
    }
}



.blogpage{

}

.blogpage p, .blogpage ul li, .blogpage ol li{
    margin-top: 60px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    padding-left: 40px;
    padding-right: 40px;

    color: #121313;
}

.blogpage ul li,
.blogpage ol li{
    margin-top: 20px;
}

.blogpage ul,
.blogpage ol{
    margin-top: 60px;
}

.blogpage h2, .blogpage__title,
.blogpage h3,
.blogpage h4,
.blogpage h5,
.blogpage h6{
    font-size: 35px;
    font-weight: 700;
    line-height: 42.36px;
    text-align: left;
    max-width: 1100px;
    margin-top: 60px;
    padding-left: 40px;
    padding-right: 40px;

    color: #121313;

    text-transform: uppercase;
}

.blogpage h3{
    font-size: 32px;
    line-height: 36px;
}

.blogpage h4{
    font-size: 28px;
    line-height: 32px;
}

.blogpage h5{
    font-size: 24px;
    line-height: 28px;
}

.blogpage h6{
    font-size: 20px;
    line-height: 24px;
}

.blogpage img{

}

.blogpage p a,
.blogpage ul li a,
.blogpage ol li a{
    color: #A5B4CD;
}

.blogpage p a:hover,
.blogpage ul li a:hover,
.blogpage ol li a:hover{
    text-decoration: underline !important;
}

.blogpage p img{
    max-width: 400px;
    width: 100%;
    height: auto;
}

@media screen and (max-height: 800px) {
    .blogpage p img{
        max-width: 300px;
    }
}


@media screen and (max-height: 600px) {
    .blogpage p img{
        max-width: 250px;
    }
}

@media screen and (max-width: 991px) {
    .blogpage p,
    .blogpage ul li,
    .blogpage ol li{
        margin-top: 24px;
        font-size: 14px;
        font-weight: 500;
        line-height: 21px;

        padding-left: 20px;
        padding-right: 20px;
    }


    .blogpage ul,
    .blogpage ol{
        margin-top: 24px;
    }

    .blogpage ul li,
    .blogpage ol li{
        margin-top: 20px;
    }

    .blogpage h2, .blogpage__title,
    .blogpage h3,
    .blogpage h4,
    .blogpage h5,
    .blogpage h6{
        margin-top: 40px;
        font-size: 20px;
        line-height: 24.2px;

        padding-left: 20px;
        padding-right: 20px;
    }

    .blogpage h3, .blogpage h4{
        font-size: 20px;
        line-height: 24.2px;
    }


    .blogpage h5, .blogpage h6{
        font-size: 18px;
        line-height: 22px;
    }

}


.blog__sides:nth-child(2n - 1){
    flex-direction: row-reverse;
}


.blog__sides .blog__content{
    padding-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .blog__sides:nth-child(2n - 1){
        flex-direction: column-reverse;
    }


    .fashion-capsule-popup--desktop{
        display: none  !important;
    }
}

@media screen and (min-width: 991px) {
    .fashion-capsule-popup--mobile{
        display: none !important;
    }
}

.blog-category .blog{
    margin-top: 60px;
}

.menu__submenu-popup-circles-row{
    padding-bottom: 40px;
}


.menu__submenu-popup-circle-group .menu__submenu-popup-circle img{
    max-height: 24px;
    max-width: 24px;
}


@media screen and (min-width: 769px) and (max-width: 1200px){
    .item .item__sides .item__right{
        max-width: 355px;
    }
}

.item .item__sides .thumb-item{
    min-width: 196px;
}


@media screen and (max-width: 1200px){
    .item .item__sides .thumb-item{
        min-width: 130px;
    }
}

@media screen and (max-width: 991px){
    .item .item__sides .thumb-item{
        min-width: 75px;
    }
}



@media screen and (max-width: 1300px){
    .fashion__line{
        display: none;
    }
}


@media screen and (max-width: 768px){
    .fashion-popup-carousel .card-hover-button, .card-hover-row{
        display: flex !important;
    }

    .fashion-popup-carousel  .card-hover{
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.3) 100%) !important;
    }
}

@media screen and (max-width: 991px){
    .fashion-capsule-popup-content-card{
        max-width: unset;
    }

    /* .fashion-popup-carousel .owl-item{
        width: 300px !important;
    } */

    .fashion-popup-carousel .cards4__item-video{
        max-width: 300px;
    }
}


.fashion-popup-carousel{
    max-width: 991px;
}
