*,
*:before,
*:after {
    box-sizing: inherit;
}

.svg-sprite {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    width: 0;
    visibility: hidden;
    opacity: 0;
}

.icon {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    flex-shrink: 0;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html.behavior-auto {
    scroll-behavior: auto;
}

html,
body {
    display: flex;
    flex-direction: column;
}

body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: var(--main-color);
    background: #fff;
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
}

html.is-noscroll body {
    position: fixed !important;
    left: 0;
    right: 0;
    margin-right: var(--scrollbarWidth);
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
    color: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

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

img {
    vertical-align: middle;
    border-style: none;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

b, strong {
    font-weight: bold;
}

hr {
    box-sizing: content-box;
    height: 0;
    margin: 1em 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    clear: both;
}

textarea {
    max-width: 100%;
    min-width: 100%;
    overflow: auto;
    resize: vertical;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

th {
    text-align: inherit;
}

a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 10px 0;
}

ul,
ol,
dl,
pre,
table,
figure,
address,
fieldset,
blockquote {
    margin: 0 0 16px 0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
    letter-spacing: 0.3px;
    font-weight: 600;
    line-height: 1.2;
    color: inherit;
    margin: 0 0 16px 0;
}

h1, .h1,
h2, .h2 {
    font-size: 28px;
    line-height: 34px;
}

h3, .h3 {
    font-size: 21px;
}

h4, .h4 {
    font-size: 15px;
}

h5, .h5 {
    font-size: 12px;
}

h6, .h6 {
    font-size: 10.2px;
}

.text p,
.text ul,
.text ol {
    margin-bottom: 10px;
}

.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
    margin-bottom: 10px;
}

.text * + h2,
.text * + h3,
.text * + h4,
.text * + h5,
.text * + h6 {
    margin-top: 30px;
}

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

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

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

.text-decoration {
    text-decoration: underline !important;
}

.fs-1 {
    font-size: 1em !important;
}

.fs-2 {
    font-size: 1.25em !important;
}

.fs-3 {
    font-size: 1.5em !important;
}

.fs-4 {
    font-size: 1.75em !important;
}

.fs-5 {
    font-size: 2em !important;
}

.nowrap {
    white-space: nowrap !important;
}

.color-red {
    color: var(--error-color) !important;
}

.date {
    font-size: 0.8em;
    color: var(--secondary-color);
}

.captcha img {
    display: block;
    max-width: none;
}

.form-check {
    line-height: 20px;
    margin-bottom: 1rem;
}

.form-check_inline {
    display: inline-block;
    margin: 1px 15px 1px 0;
}

.form-check__label {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.form-check__input {
    position: absolute;
    opacity: 0;
}

.form-check__text {
    display: block;
    position: relative;
    padding: 0 0 0 26px;
}

.form-check__text small {
    color: var(--secondary-color);
    font-size: 0.8em;
}

.form-check__subtext {
    display: block;
    color: var(--secondary-color);
    font-size: 0.8em;
}

.form-check__input:disabled + .form-check__text {
    opacity: 0.5;
    cursor: default;
    cursor: not-allowed;
}

.form-check__text:before,
.form-check__text:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    transition: 0.15s ease-in-out;
}

.form-check__text:before {
    width: 18px;
    height: 18px;
    border: 1px solid var(--form-border);
    border-radius: 4px;
    background: #fff;
}

.form-check__input[type=radio] + .form-check__text:before {
    border-radius: 50%;
}

.form-check__input[type=radio] + .form-check__text:after {
    width: 10px;
    height: 10px;
    margin: 4px 0 0 4px;
    background: var(--link-color);
    border-radius: 50%;
    opacity: 0;
}

.form-check__input[type=checkbox] + .form-check__text:after {
    width: 10px;
    height: 6px;
    margin: 4px 0 0 4px;
    border-style: solid;
    border-color: var(--main-color);
    border-width: 0 0 2px 2px;
    opacity: 0;
    transform: rotate(-45deg);
}

.form-check__input:checked ~ .form-check__text:after {
    opacity: 1;
}

.form-check__icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid #ced4da;
    box-shadow: 0 0 0 1px #fff inset;
}

.form-check__input:checked ~ .form-check__icon {
    border-color: #17a2b8;
    box-shadow: 0 0 0 1px #17a2b8, 0 0 0 1px #fff inset;
}

.form-check__icon ~ .form-check__text:before,
.form-check__icon ~ .form-check__text:after {
    display: none;
}

.form-check_dl .form-check__label {
    display: block;
}

.form-check_dl .form-check__text {
    display: flex;
    align-items: flex-end;
}

.form-check__dt {
    flex-grow: 1;
    background-image: linear-gradient(to right, var(--border-color) 50%, #fff 50%);
    background-size: 5px 1px;
    background-position: left bottom 6px;
    background-repeat: repeat-x;
}

.form-check__dt > span {
    background: #fff;
    padding-right: 5px;
}

.form-check__dd {
    padding-left: 5px;
    white-space: nowrap;
    color: #17a2b8;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 2px;
}

.form-label-inline {
    margin-bottom: 0;
    padding-top: 7px;
}

.form-label[for] {
    cursor: pointer;
}

.form-control {
    display: block;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    transition: 0.15s ease-in-out;
    width: 100%;
    font-size: 14px;
    line-height: 25px;
    padding: 9px 15px;
    border: 1px solid var(--form-border);
    border-radius: 0;
    background-color: #fafafa;
    color: var(--main-color);
    height: 45px;
}

.form-control-sm {
    font-size: 12px;
    line-height: 18px;
    padding: 5px 10px;
    height: 30px;
}

.form-control::placeholder {
    color: #555;
}

.form-control:focus::placeholder {
    color: transparent;
}

select.form-control {
    max-width: 100%; 
    margin: 0;
    padding-right: 25px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23383838' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px 8px;
}

select.form-control::-ms-expand {
    display: none;
}

.form-control[type=file] {
    overflow: hidden;
}

.form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer;
}

.form-control::file-selector-button,
.form-control::-webkit-file-upload-button {
    font: inherit;
    padding: 6px 12px;
    margin: -6px -12px;
    margin-right: 12px;
    color: currentColor;
    background: none;
    pointer-events:none;
    border: none;
    border-right: 1px solid var(--form-border);
    border-radius: 0;
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button,
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: var(--grey-bg);
}

textarea.form-control {
    height: auto;
}

.form-control[disabled],
.form-control.disabled {
    background-color: var(--grey-bg);
    border-color: var(--form-border);
    cursor: default;
    cursor: not-allowed;
}

.form-check__input:disabled + .form-check__text {
    cursor: default;
    cursor: not-allowed;
}

.form-control.error,
.form-check__input.error ~ .form-check__text:before {
    border-color: var(--error-color);
}

label.error {
    display: block;
    color: var(--error-color);
    font-size: 10px;
    line-height: 1rem;
    margin-bottom: -1rem;
}

.link {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline;
    text-align: left;
    vertical-align: middle;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: var(--main-color);
}

.link:hover {
    color: var(--theme-color);
}

.btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    line-height: 25px;
    padding: 9px 16px;
    color: var(--main-color);
    background-color: #fff;
    border: 1px solid #fff;
    text-transform: uppercase;
    border-radius: 50px;
}

.btn:focus {   
    outline-offset: -2px;
}

.btn:active {
    outline: 0;
    background-image: none;
}

.btn-primary {
    border-color: var(--theme-color);
    background-color: var(--theme-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.btn-link {
    color: var(--link-color);
    font-weight: 400;
    cursor: pointer;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
    color: var(--link-hover-color);
    text-decoration: underline;
    background-color: transparent;
}

.btn.disabled,
.btn[disabled] {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .65;
    box-shadow: none;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0;
}

.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
}

.btn-block {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.btn-block + .btn-block {
    margin-top: 5px;
}

input[type="number"],
.count-field {
    width: 120px;
}

input[type="number"] {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.count-field {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.count-field input[type="number"] {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

.count-field__control {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    width: 30px;
    height: 100%;
    top: 0;
    color: var(--main-color);
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.count-field__control._minus {
    left: 0;
}

.count-field__control._plus {
    right: 0;
}

.count-field__control._plus .icon {
    transform: rotate(180deg);
}

.alert {
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
    align-items: baseline;
}

.alert a {
    color: inherit;
}

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

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b;
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

.close-btn {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    border: none;
    background: none;
    padding: 0;
    width: 34px;
    height: 34px;
}

.close-btn:before,
.close-btn:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    border-bottom: 2px solid;
    margin: -1px 0 0 -7px;
    transform: rotate(45deg);
}

.close-btn:after {
    transform: rotate(-45deg);  
}

.fancybox-close-btn {
    position: absolute;
    right: 5px;
    top: 9px;
}

body:not(.compensate-for-scrollbar) .compensate-for-scrollbar {
    margin-right: 0 !important;
}

.popup-window:not(.fancybox-content) {
    display: none;
}

.popup-window,
.popup-window.fancybox-content {
    width: 420px;
    overflow: visible;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.popup-window__header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    padding-right: 30px;
    border-bottom: 1px solid var(--border-color);
}

.popup-window__title {
    font-size: 20px;
    line-height: 20px;
    margin: 0;
}

.popup-window__footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.tooltip-icon {
    cursor: help;
    margin: 0 2px;
}

.ui-tooltip {
    border: none !important;
    box-shadow: none;
    background: #000;
    color: #fff;
    font-size: 12px;
    line-height: 1.3;
    border-radius: 2px;
    font-family: inherit;
    padding: 6px;
    max-width: 250px;
}

.ui-slider-handle {
    cursor: pointer !important;
    outline: none !important;
}

.preloader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.1);
}

.preloader:before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    left: 50%;
    top: 50%;
    margin: -25px;
    border: 4px solid rgba(0,0,0,0.15);
    border-right-color: #000;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.slick-slider {
    display: block;
}

.slick-slide > div > * {
    max-width: none;
    vertical-align: top;
}

.slick-slide a {
    outline: none !important;
}

.slick-dots {
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li button {
    width: 20px;
    height: 20px;
    border: none;
    background: none;
    padding: 0;
    position: relative;
    cursor: pointer;
    outline: none;
    text-indent: -9999px;
    color: #fff;
}

.slick-dots li button:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    margin: -5px;
    border-radius: 50%;
    background: #e2e2e2;
}

.slick-dots li.slick-active button:before {
    background: #2c764e;
}

.slick-arrow {
    padding: 0;
    position: absolute;
    text-indent: -9999px;
    z-index: 11;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    color: var(--theme-color);
    outline: none !important;
    cursor: pointer;
    border: none;
    background: none;
    transition: 0.15s ease-in-out;
}

.slick-arrow:hover {
    color: var(--main-color);
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-arrow.slick-disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.slick-arrow:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    left: 50%;
    top: 50%;
    margin: -5px;
    border-style: solid;
    border-width: 0 0 2px 2px;
}

.slick-prev:after {
    transform: translateX(2px) rotate(45deg);
}

.slick-next:after {
    transform: translateX(-2px) rotate(225deg);
}

.container {
    max-width: 1560px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
}

.header {
    flex-shrink: 0;
    background: #fff;
    padding-top: 144px;
}

.header__main {
    background: #fff;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1001;
}

.header a {
    text-decoration: none;
}

.header__top {
    font-size: 12px;
    line-height: 24px;
    white-space: nowrap;
}

.header__top a:hover {
    color: var(--theme-color);
}

.header__top-inner {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 5px 0;
}

.nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.nav li {
    margin-right: 24px;
}

.top-contacts {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.top-contacts li {
    margin-right: 16px;
}

.top-contacts li._social {
    margin-right: 10px;
}

.top-contacts li:last-child {
    margin-right: 0;
}

.top-contacts li._social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--light-grey-bg);
    border-radius: 50%;
}

.top-contacts li._social a:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.header__nav {

}

.header__contacts {

}

.header__content {
    background: var(--theme-color);
}

.header__content-inner {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.header__logo {
    margin-right: 40px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 22.5px;
    font-weight: 500;
}

.logo img {
    width: auto;
    height: 100px;
}

.logo div {
    width: 12em;
}

.header__search {
    flex-grow: 1;
}

.header__search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.header__search-input {
    border-color: #fff;
    border-radius: 100px;
    padding-right: 50px;
}

.header__search-btn {
    position: absolute;
    right: 3px;
    top: 3px;
    border: none;
    padding: 0;
    background: url('../images/search_black.svg') center center no-repeat;
    background-size: 18px;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.header__search label.error {
    display: none !important;
}

.header__control {
    flex-shrink: 0;
}

.control {
    display: flex;
}

.control__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    font-size: 21px;
    border: none;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 1em;
    padding: 0;
    position: relative;
    cursor: pointer;
    color: inherit;
    border-radius: 50%;
    margin-left: 35px;
}

.control__btn:hover {
    color: inherit;
    background-color: rgba(0, 0, 0, .03);
}

.control__btn_menu {
    background-image: url('../images/menu.svg');
    display: none;
}

.control__btn_search {
    background-image: url('../images/search_black.svg');
    display: none;
}

.control__btn_favorite {
    background-image: url('../images/wishlist.svg');
    background-size: 1.2857em;
}

.control__btn_basket {
    background-image: url('../images/bag.svg');
    background-size: 1.0952em;
}

.control__btn-count {
    position: absolute;
    background: #222;
    height: 17px;
    width: 17px;
    text-align: center;
    font-size: 12px;
    top: 3px;
    color: #fff;
    line-height: 17px;
    right: -6px;
    font-weight: 600;
    border-radius: 50%;
}

.control__btn-count > span {
    display: none;
}

.header__menu {

}

.menu-popup__bg,
.menu-popup__close,
.menu-popup__mob-content {
    display: none;
}

.menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.menu > li {
    flex-grow: 1;
    min-width: 1px;
    position: relative;
}

.menu > li > a {
    display: block;
    text-align: center;
    padding: 10px;
    color: inherit;
}

.menu > li:hover > a {
    color: inherit;
    background: var(--light-grey-bg);
}

.menu__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    width: 62px;
    margin: 0 auto;
}

.menu__icon img {
    flex-shrink: 0;
    max-width: 100%;
    max-height: 100%;
}

.menu__text {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu__toggle-btn {
    display: none;
}

.menu__dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 250px;
    min-width: max(100%, 250px);
    padding: 10px;
    border: 4px solid var(--light-grey-bg);
    background: #fff;
    z-index: 1001;
    display: none;
}

.menu > li:last-child .menu__dropdown {
    left: auto;
    right: 0;
}

@media (min-width: 992px) {
    .menu > li:hover .menu__dropdown {
        display: block;
    }
}

.menu__sublist {
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu__sublist > li > a {
    color: inherit;
    display: block;
    padding: 10px 23px;
    font-size: 13px;
    text-align: left;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.menu__sublist > li > a:hover {
    background: var(--light-grey-bg);
}

.footer {
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.footer a {
    text-decoration: none;
}

.footer__content {
    padding: 58px 0;
}

.footer__section {
    margin-bottom: 15px;
}

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

.footer__section-title {
    font-size: 16px;
    margin: 0 0 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer__section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__section ul li {
    padding: 4px 0;
}

.footer__menu a:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 6px;
    height: 6px;
    color: #808080;
    border-style: solid;
    border-width: 0 1px 1px 0;
    transform: rotate(-45deg);
    margin-right: 10px;
}

.footer__social {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.footer__social li {
    margin-right: 5px;
}

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

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-grey-bg);
    border-radius: 50%;
    font-size: 18px;
}

.footer__social a:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.footer__bottom {
    border-top: 1px solid var(--border-color);
    padding: 23px 0;
}

.basket-popup-wrapper {
    position: relative;
}

.basket-popup {
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    width: 400px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 15%);
    font-size: 13px;
    line-height: 16px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: 0.35s ease-in-out;
    z-index: 10001;
    border-radius: 23px;
}

html.is-basket-open .basket-popup,
.basket-popup-wrapper:hover .basket-popup {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
}

.basket-popup.is-empty {
    display: none;
}

.basket-popup__content {
    max-height: 270px;
    overflow-y: auto;
}

.basket-popup__item {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 40px 14px 20px;
    position: relative;
    min-height: 90px;
    display: flex;
}

.basket-popup__item-image-wrapper {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket-popup__item-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    flex-shrink: 0;
}

.basket-popup__item-content {
    flex-grow: 1;
    min-width: 1px;
}

.basket-popup__item-title {
    margin-bottom: 10px;
    font-weight: 600;
}

.basket-popup__item-title a {
    text-decoration: none;
}

.basket-popup__item-title a:hover {
    color: inherit;
}

.basket-popup__item-info {
    display: flex;
    justify-content: space-between;
}

.basket-popup__item-remove {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: var(--main-color);
}

.basket-popup__footer {
    background: var(--light-grey-bg);
}

.basket-popup__total {
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.basket-popup__btn-row {
    text-align: center;
    padding: 20px;
}

.search {
    position: fixed;
    z-index: 10001;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    padding-top: 84px;
    display: none;
}

html.is-search-open .search {
    display: block;
}

.search__main {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 84px;
    padding: 18px 0 17px;
    overflow-y: scroll;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
}

.search__content {
    height: 100%;
    padding: 18px 0;
    overflow-y: scroll;
}

.search__main-inner,
.search__content-inner {
    max-width: 828px;
    margin: 0 auto;
}

.search__form {

}

.search__form label.error {
    display: none !important;
}

.search__input-wrapper {
    position: relative;
}

.search__input {
    padding-right: 40px;
}

.search__btn {
    border-radius: 0;
}

.search__clear {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0;
    background: none;
    border-color: transparent;
}

.search__result {

}

.search__result .autocomplete-suggestions {
    width: 100% !important;
}

.search__result-title {
    margin-bottom: 10px;
}

.search__result-title:not(:first-child) {
    margin-top: 24px;
}

.search__result-item {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.2;
    margin-left: 15px;
}

.search__result-link {
    text-decoration: none;
}

.content {
    flex-grow: 1;
    padding: 0 0 40px;
}

.main-slider-section {
    margin-bottom: 40px;
    --bs-gutter-x: 20px;
}

.main-slider-wrapper {
    position: relative;
}

.main-slider-wrapper:before {
    content: '';
    display: block;
    padding-top: 397px;
}

.main-slider {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--light-grey-bg);
}

.main-slider .slick-list,
.main-slider .slick-track,
.main-slider .slick-slide,
.main-slider .slick-slide > div {
    height: 100% !important;
}

.main-slider .slick-arrow {
    margin: 0;
    top: 0;
    height: 100%;
    width: 40px;
    color: #fff;
}

.main-slider .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 3px 0;
}

.slick-dots li button:before {
    border: 1px solid #fff;
    background: none;
}

.slick-dots li.slick-active button:before {
    background: #fff;
    transform: scale(1.3);
}

.main-slider__item {
    display: block;
    vertical-align: top;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.main-slider__item + .main-slider__item {
    display: none;
}

.main-slider__image {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-slider__image-text {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 42px;
    line-height: 1.24;
    font-weight: bold;
    padding: 0 65px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, rgba(55, 80, 66, 0.5) 35.96%, rgba(114, 176, 142, 0.2) 100%);
}

.main-slider__image-text-content {
    display: block;
    max-width: 15em;
}

.main-slider__image-text-title {
    display: block;
    font-size: .62em;
    line-height: 1.3;
    margin-bottom: .8em;
    letter-spacing: 0.08em;
}

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

.main-benefits__item {
    margin-bottom: 40px;
}

.main-benefits__icon {
    margin-bottom: 10px;
}

.main-benefits__icon {
    color: red;
}

.main-benefits__title {
    font-weight: 500;
    margin-bottom: 5px;
}

.main-benefits__text {
    font-size: 14px;
    line-height: 1.2;
    max-width: 16em;
    margin: 0 auto;
    color: var(--secondary-color);
    font-weight: 300;
}

.main-catalog {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.main-catalog__item {
    display: block;
    flex: 0 0 auto;
    width: 20%;
    padding: 10px;
}

.main-catalog__image {
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-catalog__image:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.page-text {
    max-width: 100%;
}

.content-top-breadcum {
    background: #f2f2f2 url('../images/content-top-bg.jpg') center center no-repeat;
    background-size: cover;
    padding: 60px 0;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.content-top-breadcum:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

.page-title {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 5px;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 25px;
}

.breadcrumb > li {
    display: inline-block;
    white-space: nowrap;
    line-height: 14px;
}

.breadcrumb i {
    font-size: 15px;
}

.breadcrumb > li + li:before {
    content: "\f101";
    padding: 0 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}

.rating {
    --w-star: 15px;
    --h-star: var(--w-star);
    display: inline-flex;
    vertical-align: middle;
    position: relative;
    width: calc(5 * var(--w-star));
    height: var(--h-star);
}

.rating_lg {
    --w-star: 30px;
}

.rating__bg,
.rating__bg span {
    background-position: 0 0;
    background-repeat: repeat-x;
    background-size: var(--w-star) var(--h-star);
}

.rating__bg {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.49906 1L9.66188 5.086L14.0606 5.966L10.9988 9.371L11.5547 14L7.49906 12.019L3.44344 14L3.99938 9.371L0.9375 5.966L5.33625 5.086L7.49906 1Z' fill='%23E2E2E2'/%3E%3C/svg%3E");
}

.rating__bg span {
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.49906 1L9.66188 5.086L14.0606 5.966L10.9988 9.371L11.5547 14L7.49906 12.019L3.44344 14L3.99938 9.371L0.9375 5.966L5.33625 5.086L7.49906 1Z' fill='%2317A2B8'/%3E%3C/svg%3E");
}

.rating__alert {
    display: none;
    position: absolute;
    left: 0;
    width: 250px;
    bottom: 100%;
    margin-bottom: 5px;
}

.rating__star {
    display: block;
    border: none;
    background: none;
    padding: 0;
    width: var(--w-star);
    height: var(--h-star);
    position: relative;
    z-index: 1;
    text-indent: -9999px;
    cursor: pointer;
    outline: none !important;
}

.rating__star[data-value="1"].is-active ~ .rating__bg span {
    width: 20% !important;
}

.rating__star[data-value="2"].is-active ~ .rating__bg span {
    width: 40% !important;
}

.rating__star[data-value="3"].is-active ~ .rating__bg span {
    width: 60% !important;
}

.rating__star[data-value="4"].is-active ~ .rating__bg span {
    width: 80% !important;
}

.rating__star[data-value="5"].is-active ~ .rating__bg span {
    width: 100% !important;
}

.rating__star[data-value="1"]:hover ~ .rating__bg span {
    width: 20% !important;
}

.rating__star[data-value="2"]:hover ~ .rating__bg span {
    width: 40% !important;
}

.rating__star[data-value="3"]:hover ~ .rating__bg span {
    width: 60% !important;
}

.rating__star[data-value="4"]:hover ~ .rating__bg span {
    width: 80% !important;
}

.rating__star[data-value="5"]:hover ~ .rating__bg span {
    width: 100% !important;
}

label + .rating_lg {
    vertical-align: text-bottom;
}

.sticker {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    background: #ff0000;
    color: #fff;
    font-weight: 400;
    text-align: center;
    font-size: 13px;
    line-height: 15px;
    padding: 4px;
    letter-spacing: 0px;
    text-transform: capitalize;
    border-radius: 50px;
    min-width: 48px;
}

.item {
    width: 100%;
    display: flex;
    font-size: 14px;
    line-height: 20px;
}

.item__main {
    width: 100%;
    position: relative;
    padding: 15px;
    background: #fff;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: .2s ease-in-out;
}

.item__stickers {
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 1;
}

.item__control {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
}

.item__favorite-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    background: none;
    font-size: 22px;
}

.item__favorite-btn.is-active i {
    font-weight: 600;
    color: #ff0000;
}

.item__image-field {
    display: block;
    position: relative;
    margin: -15px -15px 0;
    overflow: hidden;
}

.item__image-field:before {
    content: '';
    display: block;
    padding-top: 82%;
}

.item__image-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item__image-field img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    flex-shrink: 0;
    backface-visibility: hidden;
    transform: scale(1.00001);
    transition: .2s ease-in-out;
}

.item:hover .item__image-field img {
    transform: scale(1.1);
}

.item__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item__title {
    margin: 0 0 10px;
    word-break: break-word;
    min-height: 40px;
}

.item__title a {

}

.item__status-row {
    display: flex;
    justify-content: space-between;
    margin: auto 0 10px;
    font-size: 12px;
    line-height: 18px;
}

.item__status {
    white-space: nowrap;
}

.item__sku {
    color: #999;
    margin-left: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item__sku:hover {
    overflow: visible;
    background: #fff;
}

.item__footer {

}

.item__price {
    font-size: 16px;
    font-weight: 500;
}

.item__price-value {
    margin-right: 0.3em;
    white-space: nowrap;
}

.item__price-old {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    white-space: nowrap;
}

.item__btn-field {
    margin-top: 15px;
}

.item__btn {
    width: 100%;
}

@media (min-width: 992px) {
    .item:hover .item__main {
        padding-bottom: 80px;
        margin-bottom: -65px;
        z-index: 999;
        border-color: #fff;
        box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 10%);
    }

    .item__btn-field {
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: 20px;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
    }

    .item:hover .item__btn-field {
        transition: all 500ms ease-in-out;
        opacity: 1;
        visibility: visible;
    }
}

.item-inline {
    display: flex;
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color);
    color: inherit;
    text-decoration: none;
}

.item-inline__image-field {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-right: 15px;
    flex-shrink: 0;
}

.item-inline__image-field img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    flex-shrink: 0;
}

.item-inline__content {
    flex-grow: 1;
    min-width: 1px;
    align-self: center;
}

.item-inline__category {
    font-size: 13px;
    line-height: 16px;
    color: var(--secondary-color);
}

.item-inline__title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.item-inline__title a {
    text-decoration: none;
}

.item-inline__price {
    font-weight: bold;
    font-size: 16px;
    align-self: center;
    white-space: nowrap;
    margin-left: 10px;
}

.title {
    text-align: center;
    margin: 60px 0 30px;
}

.blog-item {
    text-align: center;
    margin-bottom: 30px;
}

.blog-item__image {
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.blog-item__image:before {
    content: '';
    display: block;
    padding-top: 50%;
}

.blog-item__image:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: 0.25s ease-in-out;
}

.blog-item__image:hover:after {
    opacity: 1;
}

.blog-item__date {
    margin: -19px 0 10px;
    position: relative;
}

.blog-item__date > span {
    display: inline-block;
    vertical-align: top;
    background-color: var(--theme-color);
    padding: 7px 15px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

.blog-item__title {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.blog-item__text {
    margin-bottom: 5px;
    color: #808080;
    font-size: 14px;
}

.blog-item__more {
    text-decoration: underline;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    display: inline-block;
    padding: 9px 25px;
}

.catalog-section {
    display: flex;
    margin: 0 calc(-1 * var(--catalog-gutter)) 40px;
}

.catalog-section__aside {
    flex: 0 0 22%;
    max-width: 22%;
    padding: 0 var(--catalog-gutter);
    word-break: break-word;
    order: -1;
}

.catalog-section__main {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 var(--catalog-gutter);
}

.catalog-section._with-aside .catalog-section__main {
    flex: 0 0 78%;
    max-width: 78%;
}

.catalog-section__aside-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    line-height: 16px;
    border: 1px solid var(--border-color);
    color: #333;
}

.catalog-section__aside-list li {
    border-bottom: 1px solid var(--border-color);
}

.catalog-section__aside-list li:last-child {
    border-bottom: none;
}

.catalog-section__aside-list a {
    display: block;
    padding: 18px 15px;
}

.catalog-section__aside-list a:hover,
.catalog-section__aside-list a.is-active {
        background: #fafafa;
}

.catalog-section__header {
    
}

.catalog-section__content {

}

.catalog,
.catalog-slider {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--catalog-gutter));
}

.catalog__item,
.catalog-slider__item {
    display: flex;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 var(--catalog-gutter);
}

.catalog__item {
    margin-bottom: calc(2 * var(--catalog-gutter));
}

@media (min-width: 1200px) {
    .catalog-section._with-aside .catalog-section__main .catalog__item {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.catalog-slider-section {
    margin-bottom: 40px;
}

.catalog-slider-section__title {
    margin-right: 80px;
}

.catalog-slider.slick-slider {
    display: block;
}

.catalog-slider .slick-list {
    padding: 8px 0 73px;
    margin: -8px 0 -73px;
}

.catalog-slider .slick-track {
    display: flex;
    margin: 0;
}

.catalog-slider .slick-slide {
    display: flex;
    flex-shrink: 0;
    height: auto;
}

.catalog-slider .slick-slide > div {
    display: flex;
    width: 100%;
}

.slick-slide .catalog-slider__item {
    display: flex !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

.catalog-slider .slick-arrow {
    top: -59px;
    margin-top: 0;
    left: auto;
    right: 0;
}

.catalog-slider .slick-prev {
    margin-right: 40px;
}

.catalog-slider .slick-next {

}

@media (min-width: 992px) {
    .main-slider-section .catalog-slider-section {
        border: 1px solid var(--light-grey-bg);
        margin: 0;
    }

    .main-slider-section .catalog-slider-section .title {
        display: none;
    }

    .main-slider-section .catalog-slider {
        margin: 0;
        display: block;
    }

    .main-slider-section .catalog-slider .slick-list {
        padding: 0;
        margin: 0;
        display: block;
    }

    .main-slider-section .catalog-slider__item {
        vertical-align: top;
        width: 100% !important;
        max-width: none;
        padding: 0;
        display: block;
    }

    .main-slider-section .catalog-slider__item + .catalog-slider__item {
        display: none;
    }

    .main-slider-section .catalog-slider .slick-arrow {
        color: #4D4D4D;
        top: 50%;
        margin-top: -20px;
    }

    .main-slider-section .catalog-slider .slick-prev {
        margin-right: 0;
        left: 0;
    }

    .main-slider-section .catalog-slider .slick-next {
        right: 0;
    }

    .main-slider-section .catalog-slider .slick-dots {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0;
    }

    .main-slider-section .catalog-slider .slick-dots li button:before {
        border-color: #CBCBCB;
    }

    .main-slider-section .catalog-slider .slick-dots li.slick-active button:before {
        border-color: #545252;
        background: #545252;
    }
}

.special-item {
    display: block;
    color: inherit !important;
    text-decoration: none !important;
    position: relative;
    height: 395px;
    width: 100%;
    overflow: hidden;
    padding: 24px 29px 0;
}

.special-sticker {
    position: absolute;
    right: 0;
    top: 0;
}

.special-sticker__inner {
    display: block;
    position: relative;
    width: 98px;
    height: 95px;
    background: #ff0000;
    color: #fff;
    clip-path: polygon(100% 0, 100% 75%, 52% 100%, 0 75%, 0 0);
    font-weight: 600;
    font-size: 14px;
    line-height: 125%;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 19px 5px 0;
}

.special-sticker__inner:after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -11px;
    bottom: 22px;
    width: 21px;
    height: 21px;
    background: url('../images/special-sticker.svg') 0 0 no-repeat;
    background-size: 100% 100%;
}

.special-item__title {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.03em;
    margin-right: 80px;
    height: 80px;
    overflow: hidden;
    word-wrap: break-word;
}

.special-item__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    max-width: 200px;
    margin: 0 auto;
}

.special-item__image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    flex-shrink: 0;
}

.special-item__price {
    text-align: center;
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 0.03em;
    margin-top: 3px;
}

.special-item__price-old {
    color: var(--secondary-color);
    text-decoration: line-through;
    font-size: 0.7em;
    line-height: 1.3;
    display: block;
}

@media (min-width: 992px) {
    .filter-btn {
        display: none;
    }
}

.filter-popup__bg,
.filter-popup__close {
    display: none;
}

.filter__form {

}

.filter__form-header {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color);
}

.filter__form-content {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 11px 0;
}

.filter__form:not(.is-changed) .filter__reset-btn {
    display: none;
}

.filter__section {
    position: relative;
    margin: 4px 8px 4px 0;
}

.filter__section-title {
    font-size: 13px;
    line-height: 25px;
    font-weight: 400;
    margin: 0;
    cursor: pointer;
    padding: 1px 26px 2px 9px;
    position: relative;
    user-select: none;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    transition: box-shadow .2s;
}

@media (min-width: 992px) {
    .filter__section-title:hover {
        border: 1px solid transparent;
        box-shadow: 0 4px 10px 0 rgb(0 0 0 / 15%);
    }
}

.filter__section-title:after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -1px;
    border-style: solid;
    border-width: 3px 3px 0;
    border-color: currentColor transparent;
}

.filter__section.is-open .filter__section-title:after {
    transform: rotate(180deg);
}

.filter__form-header .filter__section-title {
    border-color: transparent;
    box-shadow: none;
    padding-left: 0;
}

.filter__section-reset {
    position: absolute;
    right: 0;
    z-index: 1;
    top: 0;
    height: 100%;
    padding: 0;
    border: none;
    background: #fff;
    border-left: 1px solid var(--border-color);
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: red;
}

.filter__section:not(.is-changed) .filter__section-reset {
    display: none;
}

.filter__section-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 1px 12px 1px rgb(0 0 0 / 12%);
    border-radius: 3px;
    white-space: nowrap;
}

.filter__section-content .link {
    display: block;
    width: 100%;
    padding: 10px 15px;
    color: inherit;
}

.filter__section-content .link:hover {
    background: #f8f9fb;
}

.filter__section.is-open .filter__section-content {
    display: block;
}

.filter .form-check {
    margin: 0;
}

.filter .form-check__label {
    display: block;
}

.filter .form-check__text {
    padding: 10px 15px 10px 40px;
}

.filter .form-check__text:hover {
    background: #f8f9fb;
}

.filter .form-check__text:before,
.filter .form-check__text:after {
    top: 11px;
    left: 10px;
}

.filter__range {
    padding: 8px 15px;
    width: 220px;
}

.filter .form-group {
    margin: 0 0 5px;
}

.filter__reset-btn {
    margin: 4px 0;
    font-size: 13px;
    line-height: 25px;
    font-weight: 400;
    cursor: pointer;
    padding: 1px 9px 2px;
    position: relative;
    user-select: none;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    transition: box-shadow .2s;
    text-transform: none;
    color: red;
}

@media (min-width: 992px) {
    .filter__reset-btn:hover {
        border: 1px solid transparent;
        box-shadow: 0 4px 10px 0 rgb(0 0 0 / 15%);
    }
}

.catalog-section__aside .item,
.catalog-section__aside .blog-item {
    font-size: 14px;
    line-height: 18px;
    margin: 0 0 20px;
}

.catalog-section__aside .item {
    display: block;
}

.catalog-section__aside .item__main,
.catalog-section__aside .blog-item {
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.catalog-section__aside .item__main {
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    background: none;
    border: none;
    transition: .2s ease-in-out;
}

.catalog-section__aside .item__image-field,
.catalog-section__aside .blog-item__image {
    flex: 0 0 auto;
    width: 80px;
    border: 1px solid var(--border-color);
    margin: 0 15px 0 0;
}

.catalog-section__aside .item__image-field:before,
.catalog-section__aside .blog-item__image:before {
    padding-top: 100%;
}

.catalog-section__aside .item__image-wrapper {
    margin: 5px;
}

.catalog-section__aside .item__content,
.catalog-section__aside .blog-item__content {
    display: block;
    flex-grow: 1;
    min-width: 1px;
}

.catalog-section__aside .item__title {
    min-height: 0;
    margin: 0 0 5px;
}

.catalog-section__aside .item__status-row {
    font-size: 11px;
    line-height: 16px;
    margin: 0 0 5px;
}

.catalog-section__aside .item__price {
    font-size: 14px;
}

.catalog-section__aside .blog-item__date {
    margin: 0 0 3px;
}

.catalog-section__aside .blog-item__date > span {
    background: none;
    padding: 0;
    border-radius: 0;
    text-align: left;
    font-size: 11px;
    line-height: 16px;
    color: var(--secondary-color);
}

.catalog-section__aside .blog-item__title {
    font-size: inherit;
    line-height: inherit;
    font-weight: normal;
    margin-bottom: 0;
}

.catalog-section__aside .item__stickers,
.catalog-section__aside .item__control,
.catalog-section__aside .item__btn-field,
.catalog-section__aside .item__sku,
.catalog-section__aside .blog-item__image:after,
.catalog-section__aside .blog-item__text,
.catalog-section__aside .blog-item__more {
    display: none;
}

.catalog-section__aside h2 {
    font-size: 20px;
    line-height: 1.3;
    margin: 32px 0 15px;
}

.pagination {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    display: block;
    border-radius: 0;
    margin-bottom: 20px;
}

.pagination__arrow,
.pagination__link {
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    position: relative;
    text-align: center;
    height: 40px;
    line-height: 38px;
    min-width: 40px;
    border: 1px solid var(--border-color);
}

.pagination__link {
    color: var(--secondary-color);
    padding: 0 5px;
    margin: 0 5px;
}

.pagination__link:hover,
.pagination__link.is-active {
    text-decoration: none;
    color: var(--main-color);
}

.pagination__link.is-active {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}

.pagination__arrow {
    text-indent: -9999px;
    color: #000;
}

.pagination__arrow_prev {
    margin-right: 4px;
}

.pagination__arrow_next {
    margin-left: 4px;
}

.pagination__arrow:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    left: 50%;
    top: 50%;
    margin: -4px;
    border-style: solid;
    border-width: 0 0 1px 1px;
}

.pagination__arrow_prev:after {
    transform: translateX(2px) rotate(45deg);
}

.pagination__arrow_next:after {
    transform: translateX(-2px) rotate(225deg);
}

.pagination__dott {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

.product {
    margin-bottom: 40px;
}

.product__meta {
    margin-bottom: 10px;
}

.product__meta-item {
    display: inline-block;
    margin-right: 10px;
}

.product__main {
    display: flex;
    margin: 0 -10px 40px;
}

.product__image-section {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
}

.product__gallery {
    position: relative;
}

.product__stickers {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}

.product__control {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 5px;
}

.product__control .sticker {
    margin-right: 5px;
}

.product__favorite-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    background: none;
    font-size: 22px;
}

.product__favorite-btn.is-active i {
    font-weight: 600;
    color: #ff0000;
}

.product-gallery__item,
.product-gallery__thumbs-item {
    display: block !important;
    width: auto !important;
    position: relative;
}

.product-gallery__item:before,
.product-gallery__thumbs-item:before {
    content: '';
    display: block;
    padding-top: calc(502 * 100% / 443);
}

.product-gallery__item-inner,
.product-gallery__thumbs-item-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery__item img,
.product-gallery__thumbs-item img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    flex-shrink: 0;
}

.product-gallery__thumbs-item {
    background: #F9F9F9;
    cursor: pointer;
}

.slick-current .product-gallery__thumbs-item {
    opacity: 0.5;
}

@media (min-width: 992px) {
    .product-gallery {
        display: flex;
        align-items: flex-start;
    }

    .product-gallery__slider-wrapper {
        flex: 0 0 76.24%;
        max-width: 76.24%;
        margin: 0 auto;
    }

    .product-gallery__thumbs {
        order: -1;
        margin-right: 15px;
        flex: 0 0 calc(23.76% - 15px);
        max-width: calc(23.76% - 15px);
        overflow: visible;
    }

    .product-gallery__thumbs .slick-list {
        margin-top: -7px;
        margin-bottom: -7px;
    }

    .product-gallery__thumbs-item {
        margin-top: 7px;
        margin-bottom: 7px;
    }

    .product-gallery__thumbs .slick-arrow {
        width: 48%;
        height: 30px;
        background-color: #F9F9F9;
        color: #333;
        font-size: 12px;
        line-height: 30px;
        top: 100%;
        margin: 23px 0 0;
        transform: none !important;
        opacity: 1 !important;
        cursor: pointer;
    }

    .product-gallery__thumbs .slick-arrow:hover {
        background-color: rgba(133,133,133,.15);
    }
}

.product-gallery__thumbs-item-inner {

}

.product-gallery__slider-wrapper {
    position: relative;
    background: #F9F9F9;
}

.product-gallery__slider .slick-arrow {
    opacity: 0;
}

.product-gallery__slider:hover .slick-arrow {
    opacity: 1;
}

.product-gallery__slider:hover .slick-arrow.slick-disabled {
    opacity: 0.5;
}

.product-gallery__slider .slick-prev {
    left: 0;
}

.product-gallery__slider .slick-next {
    right: 0;
}

.product-gallery__item {

}

.product-gallery__item + .product-gallery__item {
    display: none !important;
}

.product-gallery__item-inner {
    background: #fff;
}

.product__content {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
}

.product__articule {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.product__annotation {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.product__price {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: bold;
}

.product__price-value {
    margin-right: 0.3em;
}

.product__price-old {
    font-weight: normal;
    font-size: 0.8em;
    text-decoration: line-through;
    color: var(--secondary-color);
}

.product__btn-row {
    margin-bottom: 30px;
}

.product__count-field {
    
}

.product__btn-field {
    
}

.product__btn {
    min-width: 180px;
    border-radius: 0;
}

.product__variants {
    margin-bottom: 30px;
}

.product__variants-title {
    font-weight: 500;
    margin-bottom: 5px;
}

.product__variants-thumbs {
    display: flex;
    flex-wrap: wrap;
    margin-top: 7px;
}

.product__variants-thumbs-item {
    margin: 3px 10px 0 0;
    width: 20px;
    height: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid #ced4da;
    box-shadow: 0 0 0 1px #fff inset;
    cursor: pointer;
}

.product__variants-thumbs-item.is-selected {
    border-color: #17a2b8;
    box-shadow: 0 0 0 1px #17a2b8, 0 0 0 1px #fff inset;
}

.product-benefits {
    text-align: center;
    margin-top: -20px;
    font-size: 13px;
    line-height: 1.4;
}

.product-benefits__item {
    margin-top: 20px;
}

.product-benefits__icon {
    color: red;
    margin-bottom: 10px;
}

.product-benefits__title {
    font-weight: 500;
    margin-bottom: 5px;
}

.product-benefits__text {
    color: var(--secondary-color);
    font-weight: 300;
}

.tabs {

}

.tabs__nav {
    margin: 0 -15px 30px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tabs__nav-item {
    margin: 0 15px;    
}

.tabs__nav-link {
    display: block;
    padding: 3px 0;
    text-transform: uppercase;
    position: relative;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    opacity: .7;
    cursor: pointer;
    transition: opacity .25s ease,color .25s ease;
}

.tabs__nav-link:hover,
.tabs__nav-link.is-active {
    opacity: 1;
}

.tabs__nav-link:after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width .4s cubic-bezier(.175,.885,.32,1.15);
}

.tabs__nav-link.is-active:after {
    right: auto;
    left: 0;
    width: 100%;
}

.tabs__content {

}

.tabs__item {
    display: none;
}

.tabs__item.is-open {
    display: block;
}

.data-table {
    width: 100%;
}

.data-table td {
    vertical-align: bottom;
    padding: 0 0 10px 0;
}

.data-table td:first-child {
    vertical-align: baseline;
}

.data-table td:first-child > span {
    display: block;
    margin-right: 5px;
    padding-right: 10px;
    background-image: linear-gradient(to right, var(--border-color) 50%, #fff 50%);
    background-size: 5px 1px;
    background-position: left bottom 6px;
    background-repeat: repeat-x;
}

.data-table td:first-child > span > span {
    background: #fff;
    padding-right: 5px;
}

.data-table td:last-child > span {
    display: inline-block;
}

.add-review {
    margin-bottom: 20px;
}

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

.add-review__open-btn {

}

.add-review__content {
    display: none;
}

.add-review__form {
    max-width: 500px;
    margin: 0 auto;
}

.reviews {

}

.reviews__content {

}

.review {

}

.review__main {
    display: flex;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    padding-bottom: 30px;
}

.review__header {
    flex: 0 0 150px;
    padding-right: 20px;
}

.review__author {
    font-weight: 500;
    margin-bottom: 2px;
}

.review__rating {
    margin-bottom: 5px;
}

.review__date {
    font-size: 12px;
    color: var(--secondary-color);
}

.review__content {

}

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

.review__replay {
    margin-left: 150px;
}

.basket {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
}

.basket__cell {
    padding: 10px 15px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.basket__cell:first-child {
    padding-left: 0;
}

.basket__cell:last-child {
    padding-right: 0;
}

.basket__cell_head {
    font-weight: 500;
}

.basket__cell_image {
    width: 115px;
}

.basket__cell_title {
    width: 100%;
    text-align: left;
}

.basket__image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

.basket__image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    flex-shrink: 0;
}

.basket__title {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
}

.basket__title a {
    text-decoration: none;
}

.basket__subtitle {
    color: var(--secondary-color);
}

.basket__price-old {
    white-space: nowrap;
    text-decoration: line-through;
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 1.2;
}

.basket__price,
.basket__total-price {
    white-space: nowrap;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
}

.basket__count {
    width: 80px;
    text-align: center;
    margin: 0 auto;
}

.basket__count-num {
    font-size: 16px;
    font-weight: 500;
}

.basket-footer {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

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

.basket-footer__total-main {
    font-size: 24px;
    line-height: 1.3;
    font-weight: bold;
}

.basket-footer__total-info {
    color: var(--secondary-color);
}

.basket-footer__buttons {
    display: flex;
    align-items: center;
}

.basket-footer__buttons-item {
    margin: 0 0 0 20px;
}

.basket-footer__cupon {
    max-width: 250px;
    min-width: 170px;
    margin: 6px 0;
}

.basket-footer__button {

}

.order {
    margin-bottom: 40px;
}

.order__title {
    margin: 0 0 40px;
}

.order__form {

}

.order__content {

}

.order__step {

}

.order__step-title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 15px 0;
}

.order__delivery-type {

}

.order__delivery-type-title {
    margin-bottom: .5rem;
}

.order__delivery-type-section {

}

.order__delivery-type-section-content {
    display: none;
}

.order__delivery-type-section.is-open .order__delivery-type-section-content {
    display: block;
}

.order__delivery-type-address-list {
    padding-left: 25px;
}

.order__delivery-type-address-list .form-check {
    margin: 0.5rem 0;
}

.order__total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    margin: 1rem 0;
}

.order__total-title {

}

.order__total-value {
    font-size: 18px;
}

.order__btn-row {
    margin-top: 24px;
    text-align: center;
}

.order__btn {

}

.account {
    margin-bottom: 40px;
}

.account__title {
    margin-bottom: 15px;
}

.history {
    margin-bottom: 40px;
}

.history__title {
    margin-bottom: 15px;
}

.history__list {

}

.history__item {
    border: 1px solid var(--border-color);
    margin-bottom: 5px;
}

.history__item-header {
    display: flex;
    flex-wrap: wrap;
    cursor: pointer;
    position: relative;
    background: #f5f5f5;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 15px 10px 40px;
}

.history__item-header:hover {
    background: #f0f0f0;
}

.history__item-header:before {
    content: '';
    position: absolute;
    left: 12px;
    top: 15px;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
}

.history__item.is-open .history__item-header:before {
    transform: rotate(45deg);
    top: 13px;
}

.history__item-info {
    white-space: nowrap;
}

.history__item-id {
    font-weight: bold;
    width: 18%;
}

.history__item-date {
    width: 18%;
}

.history__item-status {

}

.history__item-price {
    font-weight: bold;
    margin-left: auto;
}

.history__item-content {
    display: none;
    border-top: 1px solid var(--border-color);
    padding: 0 15px;
}

.history__item.is-open .history__item-content {
    display: block;
}

.history__item .basket {
    margin-bottom: -1px;
}

.social_fixed {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 30;
}
.social_fixed .fab {
    color: #fff;
    display: block;
    background: #ddc9ad;
    margin-bottom: 2px;
    padding: 10px;
    font-size: 18px;
}
.social_fixed .fa {
    color: #fff;
    display: block;
    background: #ddc9ad;
    margin-bottom: 2px;
    padding: 10px;
    font-size: 18px;
}