@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'MontserratThin';
    src: url('../fonts/Montserrat-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'MontserratExtraLight';
    src: url('../fonts/Montserrat-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'MontserratLight';
    src: url('../fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'MontserratLightItalic';
    src: url('../fonts/Montserrat-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'MontserratMedium';
    src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'MontserratSemiBold';
    src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'MontserratBold';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'MontserratExtraBold';
    src: url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'MontserratBlack';
    src: url('../fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #282832;
    position: relative;
}
form .btn {
border-radius: 10px;
    border: 1px solid #232976;
}


div.podzagolform
{
    font: 400 14px 'MontserratSemiBold';
    line-height: 150%;
    margin-top: 30px;
    padding-right: 80px;
}
div.zagolform
{
    font: 700 44px 'MontserratBold';
    line-height: 54px;
}
h1 {
    font: 700 44px 'MontserratBold';
    line-height: 54px;
    text-transform: uppercase;
    color: #1D1D1B;
    margin-bottom: 12px;
}

h1.smaller-h1 {
    line-height: 29px;
    font: 700 24px 'MontserratBold';
    color: #454551;
    margin-bottom: 34px;
}

h1.black-h1 {
    color: #1D1D1B;
}

.h1-with-link {
    margin-bottom: 0 !important;
}

.h1-wrap {
    margin-bottom: 34px;
}

.checkout-h1,
.checkout-h1+a {
    display: inline-block;
    vertical-align: middle;
}

.checkout-h1+a {
    margin: 0 0 30px 30px;
}

h2,
.h2 {
    font: 600 21px 'MontserratSemiBold';
    margin-bottom: 30px;
    color: #A6CE39;
}

h2.h2-gray,
.h2.h2-gray {
    line-height: 26px;
    color: #C4C4C4;
    margin-bottom: 19px;
}

h2.h2-black,
.h2.h2-black {
    font-size: 20px;
    color: #1D1D1B;
    letter-spacing: 0.05em;
    margin-bottom: 22px;
}

.intro-text+h2.h2-black {
    padding-top: 12px;
}

ul+h2.h2-black {
    margin-top: 12px;
}

p {
    font-family: 'MontserratLight', sans-serif;
    line-height: 23px;
    letter-spacing: 0.05em;
    margin-bottom: 22px;
}

a {
    text-decoration: none;
    outline: none !important;
}

.download-link {
    font-size: 14px;
    color: #71718A !important;
    padding-left: 31px;
    background: url(../img/cloud.png) 0 0 no-repeat;
}

.download-link:hover {
    color: #81A423 !important;
    background: url(../img/cloud-green.png) 0 0 no-repeat;
}

img {
    text-decoration: none;
    border: 0px
}

label span.asterisk {
    color: #D94D88;
}

input,
textarea,
button {
    border: none;
    outline: none !important;
}

input::-ms-clear {
    display: none;
}

textarea {
    resize: none;
    overflow: auto;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

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

.flex-wrap {
    -khtml-box-lines: multiple;
    -webkit-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-nowrap {
    -khtml-box-lines: single !important;
    -webkit-box-lines: single !important;
    -ms-flex-wrap: nowrap !important;
    -webkit-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-dir-col {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.flex-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex-around {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.flex-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.flex-start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.flex-align-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.flex-align-baseline {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}

.flex-align-end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

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

.text-center {
    text-align: center;
    margin-bottom: 15px;
}

@media screen and (max-width: 1199px) {
    .review-carousel-section .text-center {
        padding-top: 15px;
        margin-bottom: 0px;
    }
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.img-fluid {
    max-width: 100%;
}

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

.hidden {
    display: none;
}

.btn,
.arrow {
    cursor: pointer;
    outline: none;
}

.btn {
    display: block;
    width: 200px;
    height: 40px;
    background: #A6CE39;
    text-align: center;
    text-transform: uppercase;
    color: #fff !important;
    font-size: 13px;
    font-family: 'MontserratSemiBold', sans-serif;
    line-height: 40px;
    border-radius: 40px;
    border: 1px solid #A6CE39;
}

.btn-shadow {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}

.btn-shadow:hover {
    box-shadow: none;
}

.goto-span {
    display: inline-block;
    color: #81A423;
    margin: 0 2px 0 9px;
}

.goto-link {
    color: #81A423 !important;
    text-decoration: underline;
}

.goto-link:hover {
    text-decoration: none;
}

.slick-vertical .slick-slide {
    border: none;
}

.slick-arrow,
.slick-slide,
button,
input,
textarea {
    outline: none !important;
}

.checkbox-container {
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 16px;
    margin-bottom: 29px;
    font-size: 12px;
}

.two-col-layout__main .checkbox-container {
    margin-bottom: 0 !important;
}

.checkbox-container input {
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: transparent;
    margin-right: 13px;
    border: 1px solid #000;
    position: relative;
    top: 1px;
}

input:checked~.checkmark {
    background: url(../img/consent-check.png) 1.4px 2.9px no-repeat;
}

.error+.checkmark {
    border-color: red;
}

.slick-arrow {
    cursor: pointer;
}

.top-slider .slick-slide img {
    width: 100%;
}

.slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    list-style: none;
}

.slick-dots li:last-child {
    margin-right: 0 !important;
}

.slick-dots li button {
    border: none !important;
    outline: none !important;
    font-size: 0;
    background: none;
    cursor: pointer;
}

#mbl-search,
#mbl-btn,
#sidebar-btn {
    display: none;
}

.container {
    width: 1920px;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 310px;
}

.pagenav-btn {
    position: fixed;
    right: 40px;
    bottom: 90px;
    z-index: 100;
}

.pagenav-btn>div {
    width: 16px;
    height: 18px;
    cursor: pointer;
}

.pagenav-btn__up {
    background: url(../img/side-arrow-up.png) 50% 0 no-repeat;
}

.pagenav-btn__down {
    background: url(../img/side-arrow-down.png) 50% 0 no-repeat;
}

.fixed-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 349px;
    z-index: 990;
    height: 1000px;
    height: calc(var(--vh, 1vh) * 100);
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    padding: 0 0 96px 0;
}

.fixed-sidebar__logo {
    width: 195px;
    height: 151px;
    margin-bottom: 9px;
}

.fixed-sidebar__logo a {
    display: block;
}

.sidebar-logo-mbl {
    display: none;
}

.fixed-sidebar__nav {
    padding-right: 30px;
    margin-bottom: 69px;
}

.fixed-sidebar__nav ul {
    list-style: none;
}

.fixed-sidebar__offer {
    width: 270px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.fixed-sidebar__offer__text {
    font-size: 13px;
    font-family: 'MontserratLight', sans-serif;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}

.sidebar-menu>li {
    position: relative;
    min-height: 26px;
    margin-bottom: 19px;
    padding-top: 6px;
}

.sidebar-menu>li>a {
    display: block;
    padding-left: 99px;
    font-family: 'MontserratLight', sans-serif;
    font-size: 15px;
    line-height: 20px;
    color: #282832 !important;
    position: relative;
}

.sidebar-menu>li>a img {
    position: absolute;
    left: 49px;
    top: 50%;
    margin-top: -15px;
}

.sidebar-menu>li>a img:nth-child(2) {
    display: none;
}

.sidebar-menu>li>a:hover img:nth-child(1) {
    display: none;
}

.sidebar-menu>li>a:hover img:nth-child(2) {
    display: block;
}


/* .sidebar-menu > li:first-child > a {
    background: url(../img/svg/office-furniture.svg) 49px 0 no-repeat;
    min-height: 26px;
    margin-bottom: 19px;
    padding-top: 6px;
}

.sidebar-menu > li:first-child > a:hover,
.sidebar-menu > li:first-child > a:focus {
    background: url(../img/svg/office-furniture-color.svg) 49px 0 no-repeat;
}

.sidebar-menu > li:nth-child(2) > a {
    background: url(../img/svg/armchairs.svg) 50px 0 no-repeat;
    min-height: 28px;
    margin-bottom: 21px;
    padding-top: 4px;
}

.sidebar-menu > li:nth-child(2) > a:hover,
.sidebar-menu > li:nth-child(2) > a:focus {
    background: url(../img/svg/armchairs-color.svg) 50px 0 no-repeat;
}

.sidebar-menu > li:nth-child(3) > a {
    background: url(../img/svg/soft-furniture.svg) 48px 0 no-repeat;
    min-height: 23px;
    margin-bottom: 19px;
}

.sidebar-menu > li:nth-child(3) > a:hover,
.sidebar-menu > li:nth-child(3) > a:focus {
    background: url(../img/svg/soft-furniture-color.svg) 48px 0 no-repeat;
}

.sidebar-menu > li:nth-child(4) > a {
    background: url(../img/svg/partitions.svg) 50px 0 no-repeat;
    min-height: 29px;
    margin-bottom: 20px;
    padding-top: 2px;
}

.sidebar-menu > li:nth-child(4) > a:hover,
.sidebar-menu > li:nth-child(4) > a:focus {
    background: url(../img/svg/partitions-color.svg) 50px 0 no-repeat;
}

.sidebar-menu > li:nth-child(5) > a {
    background: url(../img/svg/safes.svg) 49px 0 no-repeat;
    min-height: 31px;
    margin-bottom: 19px;
}

.sidebar-menu > li:nth-child(5) > a:hover,
.sidebar-menu > li:nth-child(5) > a:focus {
    background: url(../img/svg/safes-color.svg) 49px 0 no-repeat;
}

.sidebar-menu > li:nth-child(6) > a {
    background: url(../img/svg/house-furniture.svg) 48px 0 no-repeat;
    min-height: 34px;
    margin-bottom: 15px;
    padding-top: 6px;
}

.sidebar-menu > li:nth-child(6) > a:hover,
.sidebar-menu > li:nth-child(6) > a:focus {
    background: url(../img/svg/house-furniture-color.svg) 48px 0 no-repeat;
}

.sidebar-menu > li:nth-child(7) > a {
    background: url(../img/svg/special-furniture.svg) 48px 4px no-repeat;
    min-height: 30px;
    margin-bottom: 18px;
}

.sidebar-menu > li:nth-child(7) > a:hover,
.sidebar-menu > li:nth-child(7) > a:focus {
    background: url(../img/svg/special-furniture-color.svg) 48px 4px no-repeat;
}

.sidebar-menu > li:last-child > a {
    background: url(../img/svg/other.svg) 48px 0 no-repeat;
    min-height: 28px;
    padding-top: 6px;
}

.sidebar-menu > li:last-child > a:hover,
.sidebar-menu > li:last-child > a:focus {
    background: url(../img/svg/other-color.svg) 48px 0 no-repeat;
} */

.sidebar-menu>li>a.active span {
    border-bottom: 2px dashed #81A423;
}

.sidebar-menu>li:hover .sidebar-icon,
.sidebar-menu>li.active .sidebar-icon {
    fill: #81A423;
}

.sidebar-menu>li:hover>a,
.sidebar-menu>li.active>a {
    color: #81A423 !important;
}

.dropdown-menu {
    display: none;
    padding: 0 0 16px 99px;
    margin-top: 20px;
}

.dropdown-menu>li {
    margin-bottom: 7px;
}

.dropdown-menu>li>a {
    font-size: 13px;
    color: #1D1D1B !important;
}

.dropdown-menu>li>a:hover {
    color: #81A423 !important;
}

.main-inner-wrap {
    padding-bottom: 41px;
}

.main-inner {
    padding: 0 145px;
}

.header,
.main {
    width: 1571px;
    max-width: 100%;
    margin-left: auto;
}

.header {
    height: 149px;
    position: relative;
    -webkit-transition: height .5s ease-out;
    transition: height .5s ease-out;
}

.header-inner-wrap {
    position: fixed;
    width: calc(100% - 349px);
    top: 0;
    left: 0;
    background: #fff;
    margin-left: 349px;
    z-index: 900;
}

.header-top {
    padding: 17px 0 15px;
    line-height: 14.63px;
    font-size: 12px;
}

.header-top__mbl-logo {
    display: none;
}

.container-fixed .header-top {
    padding: 11px 0;
}

.header-top__city {
    margin-right: 58px;
    cursor: pointer;
}

.header-top__city span {
    display: inline-block;
    position: relative;
    padding-right: 27px;
}

.header-top__city span::after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    right: 0;
    width: 10px;
    height: 6px;
    background: url(../img/arrow-down.png) 0 0 no-repeat;
}

.header-top__data__hours,
.header-top__data__phone {
    letter-spacing: .05em;
}

.header-top__data__hours {
    margin-right: 44px;
}

.header-top__data__phone {
    color: #282832 !important;
    margin-right: 39px;
    white-space: nowrap;
}

.header-top__data__phone:hover {
    color: #81A423 !important;
}

.header-top__data__link {
    color: #282832 !important;
}

.header-top__data__link:hover {
    color: #81A423 !important;
    text-decoration: underline;
    font-family: 'MontserratMedium', sans-serif;
}

.header-top__user {
    margin-left: auto;
    cursor: pointer;
    padding-left: 24px;
    background: url(../img/user.png) 0 0 no-repeat;
    color: #000;
}

.header-top__user:hover {
    color: #81A423 !important;
}

.header-bottom {
    padding-top: 26px;
}

.container-fixed .header-bottom {
    padding: 0 0 1px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.header-nav {
    margin-right: 6px;
    position: relative;
    top: 6px;
}

.top-menu {
    list-style: none;
}

.top-menu li {
    margin-right: 48px;
}

.top-menu li:first-child {
    margin-right: 28px;
}

.top-menu li a {
    display: block;
    font-size: 16px;
    color: #282832 !important;
    line-height: 19.5px;
    letter-spacing: .05em;
}

.top-menu li a:hover,
.top-menu li a.current {
    color: #81A423 !important;
}

.top-menu li a.current {
    font-family: 'MontserratSemiBold', sans-serif;
}

.header-search {
    width: 292px;
    position: relative;
    top: 8px;
}

.header-search-form {
    position: relative;
}

.header-search-form__input {
    padding-bottom: 7px;
    font: 400 16px 'Montserrat';
    letter-spacing: .05em;
    width: 100%;
    color: #81A423;
    border-bottom: 1px solid #E5E5E5;
}

.header-search-form__input:focus {
    border-color: #A6CE39;
}

.header-search-form__input::placeholder {
    font: 400 13px 'MontserratLightItalic';
    letter-spacing: .05em;
    color: #282832;
}

.header-search-form__input::-webkit-input-placeholder {
    font: 400 13px 'MontserratLightItalic';
    letter-spacing: .05em;
    color: #282832;
}

.header-search-form__input::-moz-placeholder {
    font: 400 13px 'MontserratLightItalic';
    letter-spacing: .05em;
    color: #282832;
}

.header-search-form__input:-ms-input-placeholder {
    font: 400 13px 'MontserratLightItalic';
    letter-spacing: .05em;
    color: #282832;
}

.header-search-form__input:-moz-placeholder {
    font: 400 13px 'MontserratLightItalic';
    letter-spacing: .05em;
    color: #282832;
}

.header-search-form__submit {
    width: 19px;
    height: 19px;
    background: url(../img/search-gray.png) 50% 50% no-repeat;
    position: absolute;
    bottom: 11px;
    right: 0;
    cursor: pointer;
}

.header-search-form__input:focus~.header-search-form__submit {
    background-image: url(../img/search.png);
}

.search-helper,
.title-search-result {
    display: none;
    width: 801px !important;
    max-width: 100%;
    background: #fff;
    position: absolute;
    top: 134px;
    right: 225px;
    padding: 2px 35px 10px 19px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    z-index: 900;
}

.search-helper__item {
    border-bottom: 1px solid #F0F0F0;
    padding: 7px 0 15px;
}

.search-helper__item:last-child {
    border-bottom: none;
}

.search-helper__item__pic {
    display: block;
    width: 98px;
    height: 81px;
    margin-right: 14px;
}

.search-helper__item__info {
    width: 480px;
    max-width: 100%;
    padding-top: 6px;
}

.search-helper__item__info__marking {
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.search-helper__item__info__name {
    font-size: 16px;
    line-height: 26px;
    color: #282832 !important;
    font-family: 'MontserratLight', sans-serif;
}

.search-helper__item__info__name:hover {
    color: #81A423 !important;
}

.search-helper__item__prices {
    text-align: center;
    padding: 26px 34px 0 0;
    margin-left: auto;
}

.search-helper__item__prices__old {
    text-decoration-line: line-through;
    color: #71718A;
    padding-top: 26px;
    margin-bottom: 6px;
}

.search-helper__item__prices__new {
    font-size: 18px;
}

.header-icon-links {
    margin-left: auto;
    margin-right: -15px;
}

.header-icon-links a {
    display: block;
}

.header-cart {
    min-width: 21px;
    height: 19px;
    padding-left: 36px;
    background: url(../img/cart.png) 0 0 no-repeat;
    margin-right: 37px;
}

.header-cart__data {
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #282832 !important;
    position: relative;
    top: 4px;
}

.header-cart__data-mob {
    display: none;
    position: absolute;
    left: 40%;
    top: -10px;
    background: #A6CE39;
    color: #fff;
    border-radius: 50%;
    width: 60%;
    text-align: center;
}

.header-favs,
.header-compare {
    width: 49px;
    height: 49px;
    border-radius: 50%;
}

.header-favs {
    background: url(../img/heart.png) 50% 50% no-repeat;
    margin-right: 30px;
}

.header-favs.active,
.header-favs:hover {
    background: url(../img/heart-pink.png) 50% 50% no-repeat;
}

.header-compare {
    background: url(../img/chart.png) 50% 50% no-repeat;
}

.header-compare.active,
.header-compare:hover {
    background: url(../img/chart-color.png) 50% 50% no-repeat;
}

.content {
    width: 1610px;
    max-width: 100%;
    margin-left: auto;
}

.wrapper {
    width: 1381px;
    max-width: 100%;
    margin-left: 94px;
}

.breadcrumbs {
    color: #454551;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.breadcrumbs a {
    color: #454551 !important;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.top-slider-section {
    position: relative;
    margin-bottom: 28px;
}

.top-slider-section .arrow {
    width: 34px;
    height: 65px;
    position: absolute;
    top: 46.6%;
    z-index: 9;
}

.top-slider-section .slick-prev {
    left: 92px;
    background: url(../img/top-slider-arrow-prev.png) 0 0 no-repeat;
}

.top-slider-section .slick-next {
    right: 93px;
    background: url(../img/top-slider-arrow-next.png) 0 0 no-repeat;
}

.top-slider .slick-dots {
    position: relative;
    bottom: 47px;
}

.top-slider .slick-dots li {
    height: 0;
    ;
}

.top-slider li button {
    width: 39px;
    height: 4px;
    ;
    background: #fff;
    border-radius: 10px;
    margin-right: 25px;
}

.top-slider li.slick-active button {
    width: 117px;
    background: #A6CE39;
}

.indexpage-intro,
.benefits-section {
    width: 1381px;
    max-width: 100%;
    margin: 0;
}

.indexpage-intro {
    line-height: 23px;
    letter-spacing: 0.05em;
    font-family: 'MontserratLight', sans-serif;
    width: 1381px;
    max-width: 100%;
    margin-bottom: 30px !important;
    letter-spacing: 0.05em;
}

.about-benefits-section {
    padding: 24px 0 0 !important;
    margin-bottom: 28px;
}

.benefits-item {
    max-width: 19%;
    padding-top: 62px;
    font-family: 'MontserratLight', sans-serif;
    font-size: 13px;
    line-height: 15.85px;
    background-position: 0 0;
    background-repeat: no-repeat;
    margin-bottom: 48px;
}

.about-benefits-item {
    -webkit-flex-basis: 30%;
    flex-basis: 30%;
    max-width: 30%;
    max-width: unset !important;
    text-align: center;
    background-position: 50% 0;
    margin-bottom: 36px;
}

.about-benefits-item:nth-child(4),
.about-benefits-item:last-child {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.benefits-item.bnf-free {
    background-image: url(../img/svg/bnf1.svg);
}

.benefits-item.bnf-showroom {
    background-image: url(../img/svg/bnf2.svg);
}

.benefits-item.bnf-discount {
    background-image: url(../img/svg/bnf3.svg);
}

.benefits-item.bnf-stock {
    background-image: url(../img/svg/bnf4.svg);
}

.benefits-item.bnf-comfy {
    background-image: url(../img/svg/bnf5.svg);
}

.benefits-item span {
    display: block;
}

.offers-section {
    width: 1477px;
    max-width: 100%;
    margin-left: auto;
    margin-bottom: 38px;
    padding-right: 96px;
}

.page-offers-section {
    padding-right: 0 !important;
    margin-bottom: 21px;
}

.offers {
    overflow: hidden;
}

.offers-section img {
    display: block;
    width: 100%;
    margin-bottom: 4px;
    object-fit: contain;
}

.offers-headliner {
    width: 680px;
    max-width: 49.23968139029689%;
}

.offers-mosaic {
    width: 678px;
    max-width: 49.09485879797248%;
}

.page-offers-headliner,
.page-offers-mosaic {
    width: 617px;
    max-width: 48.96825396825397%;
}

.offers-mosaic__top {
    margin-bottom: 2.2%;
}

.offers-mosaic__bottom a {
    width: 330px;
    max-width: 48.67256637168142%;
}

.offers-list__item {
    margin-bottom: 22px;
    width: 617px;
    max-width: 48.96825396825397%;
}

.offers-list__item__pic {
    margin-bottom: 4px;
}

.offers-list__item__title {
    font-size: 13px;
    font-family: 'MontserratMedium', sans-serif;
    margin-bottom: 4px;
    color: #282832 !important;
}

.offers-list__item__desc {
    font-size: 13px;
    color: #71718A;
}

.offer-page {
    padding-bottom: 22px;
    border-bottom: 1px solid #EBF3F4;
    margin-bottom: 22px;
}

.offer-page h1 {
    margin-bottom: 30px;
}

.offer-page__pic {
    margin-bottom: 15px;
}

.offer-page__text p {
    color: #71718A;
    font-size: 13px;
    line-height: 28px;
    margin: 0;
}

.goback-link {
    display: block;
    padding: 0 0 2px 22px;
    font-family: 'MontserratMedium', sans-serif;
    color: #454551 !important;
    position: relative;
}

.goback-link::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 8px;
    background: url(../img/double-arrow-bg-prev.png) 0 0 repeat-x;
}

.goback-link:hover {
    text-decoration: underline;
}

.tendery_content {
    margin-bottom: 50px;
}
.promo-items-section {
    width: 1477px;
    max-width: 100%;
    padding: 0 96px 0 0px;
    margin-left: 94px;
    margin-bottom: 73px;
}

.promo-tabs {
    margin-bottom: 28px;
}

.promo-item {
    width: 310px;
    max-width: 100%;
    margin-bottom: 48px;
    position: relative;
}

.promo-item-top {
    height: 480px;
    background: #FBF9F9;
    margin-bottom: 7px;
    padding-top: 115px;
}

.promo-item__labelset {
    width: 94px;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 27px;
}

.promo-item__label {
    margin-bottom: 13px;
}

.label {
    display: block;
    float: left;
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 5px;
    color: #fff;
    height: 20px;
    margin-right: 10px;
}

.label-popular {
    background: #00ABE2;
}

.label-new {
    background: #A6CE39;
}

.label-sale {
    background: #A971D5;
}

.promo-item__buttons {
    position: absolute;
    top: 31px;
    right: 11px;
}

.promo-item__buttons>div {
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.promo-item__buttons .fav-btn {
    background: url(../img/heart.png) 50% 50% no-repeat;
    background-size: 21px 19px;
    margin-right: 20px;
}

.promo-item__buttons .fav-btn-active {
    background: url(../img/heart-pink.png) 50% 0 no-repeat;
    background-size: 17px 15px;
}

.promo-item__buttons .compare-btn {
    background: url(../img/chart.png) 50% 50% no-repeat;
    background-size: 20px 15px;
}

.promo-item__buttons .compare-btn.active,
.promo-item__buttons .compare-btn:hover {
    background: url(../img/chart-color.png) 50% 50% no-repeat;
}

.promo-item-top__pic {
    height: 365px;
}

.promo-item-top__pic a {
    display: block;
    text-align: center;
}

.promo-item-btm {
    padding-right: 33px;
}

.promo-item__spec {
    font-size: 11px;
    letter-spacing: 0.05em;
    color: #71718A;
    margin-bottom: 16px;
}

.promo-item__name {
    display: block;
    font-size: 15px;
    font-family: 'MontserratSemiBold', sans-serif;
    margin-bottom: 6px;
    color: #000 !important;
}

.promo-item__name:hover {
    color: #A6CE39 !important;
}

.promo-item__prices {
    color: #71718A;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.promo-item__price-old {
    text-decoration: line-through;
    margin-right: 15px;
}

.promo-item__price-new {
    font-family: 'MontserratSemiBold', sans-serif;
}

.tocart-btn {
    display: block;
    width: 20px;
    min-width: 20px;
    height: 19px;
    background: url(../img/cart.png) 0 0 no-repeat;
    cursor: pointer;
}

.tabs-content>div.noHeight {
    height: 0px;
    overflow-y: hidden;
}

.noHeight .arrows {
    display: none;
}

.promo-tabs a {
    display: block;
    font-family: 'MontserratSemiBold', sans-serif;
    font-size: 21px;
    padding: 10px 0;
    position: relative;
    margin-right: 50px;
    color: #C4C4C4 !important;
}

.promo-tabs a:last-child {
    margin-right: 0;
}

.promo-tabs a.active {
    color: #A6CE39 !important;
}

.promo-tabs a.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #A6CE39;
    margin-top: 10px;
}

.promo-tabs-content {
    position: relative;
}

.promo-tabs-content .slick-dots {
    position: relative;
    top: 5px;
}

.promo-tabs-content .slick-dots li {
    margin-right: 27px;
}

.promo-tabs-content .slick-dots li button {
    border: none !important;
    outline: none !important;
    font: 400 14px 'Montserrat';
    letter-spacing: 0.05em;
    line-height: 16px;
    color: #282832;
    background: none;
    cursor: pointer;
}

.promo-tabs-content .slick-dots li.slick-active button {
    color: #A6CE39;
    font: 600 14px 'MontserratSemiBold';
}

.promo-tabs-content .arrows {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -2px;
    height: 16px;
}

.promo-tabs-content .arrow {
    width: 10px;
    height: 18px;
    z-index: 9;
}

.promo-tabs-content .slick-prev {
    margin-right: 182px;
    background: url(../img/page-arrow-prev.png) 0 0 no-repeat;
}

.promo-tabs-content .slick-next {
    background: url(../img/page-arrow-next.png) 0 0 no-repeat;
}

.review-carousel-section {
    width: 1572px;
    max-width: 100%;
    position: relative;
    margin-bottom: 60px;
    background: #FBF9F9;
    padding: 40px 97px 88px;
}

.ask-link {
    position: absolute;
    top: 35px;
    right: 31px;
    color: #282832 !important;
    padding-left: 22px;
    font-size: 13px;
    font-family: 'MontserratMedium', sans-serif;
    background: url(../img/paper-plane.png) 0 2px no-repeat;
    background-size: 13px 14px;
}

.ask-link:hover {
    color: #A6CE39 !important;
    background: url(../img/paper-plane-green.png) 0 2px no-repeat;
    background-size: 13px 14px;
}

.review-carousel {
    padding-top: 17px;
}

.review-carousel .arrow {
    position: absolute;
    top: calc(50% - 4px);
    width: 8px;
    height: 18px;
}

.review-carousel .slick-prev {
    left: -42px;
    background: url(../img/reviews-arrow-prev.png) 0 0 no-repeat;
    background-size: contain;
}

.review-carousel .slick-next {
    right: 0;
    background: url(../img/reviews-arrow-next.png) 0 0 no-repeat;
    background-size: contain;
}

.review-carousel__item {
    padding-top: 14px;
}

.review-carousel__item__date {
    font-size: 12px;
    color: #71718A;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.review-carousel__item__author {
    font-size: 15px;
    font-family: 'MontserratSemiBold', sans-serif;
    margin-bottom: 11px;
}

.review-carousel__item__text {
    line-height: 23px;
    margin-bottom: 27px;
    width: 350px;
    max-width: 90%;
    font-family: 'MontserratLight';
    letter-spacing: .05em;
}

.review-carousel__item__link {
    position: relative;
    display: inline-block;
    font-family: 'MontserratSemiBold', sans-serif;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #282832 !important;
}

.review-carousel__item__link:hover {
    text-decoration: underline;
}

.review-carousel__item__link:before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    margin-right: 13px;
    background: #282832;
    vertical-align: middle;
}

.clients-section {
    padding-right: 96px;
}

.clients-section.onindexpage {
    margin-bottom: 64px;
}

.clients-section.pt {
    padding-top: 28px;
}

.clients-list {
    width: 1382px;
    max-width: 100%;
    margin-left: auto;
}

.clients-list__item {
    width: 246px;
    max-width: 17.80028943560058%;
    height: 106px;
    margin: 0 2.749638205499276% 31px 0;
}

.clients-list__item a {
    height: 100%;
}

.clients-list__item img {
    width: 100%;
}

.clients-list__item:nth-child(5n) {
    margin-right: 0;
}

.clients-list__item--bordered {
    border: 1px solid #E5E5E5;
}

.catalog {
    margin-bottom: 26px;
}

.catalog-list {
    padding-top: 10px;
}

.catalog-list__item {
    width: 371px;
    max-width: 28.96174863387978%;
    margin-right: 6.557377049180328%;
    margin-bottom: 30px;
}

.catalog-list__item:nth-child(3n) {
    margin-right: 0;
}

.catalog-list__item__top {
    display: block;
    height: 200px;
    margin-bottom: 11px;
    position: relative;
}

.catalog-list__item__name {
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'MontserratBold', sans-serif;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.catalog-list__item__name:hover {
    text-shadow: none;
}

.catalog-list__item__subcats a {
    font-size: 13px;
    line-height: 28px;
    color: #282832 !important;
}

.catalog-list__item__subcats a:hover {
    color: #81A423 !important;
    text-decoration: underline;
}

.catalog-list__item__desc {
    font-size: 13px;
    line-height: 28px;
}

.product-page-top {
    margin-bottom: 37px;
}

.product-page-top.oregon {
    margin-bottom: 70px;
}

.product-gallery {
    width: 711px;
    max-width: 100%;
    margin-right: 20px;
    /* overflow: hidden; */
    position: relative;
}

.series-product-gallery__buttons {
    position: absolute;
    top: 13px;
    right: 20px;
    z-index: 112;
}

.series-product-gallery__buttons>div {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

.series-product-gallery__buttons .fav-btn {
    background: url(../img/heart.png) 50% 50% no-repeat, #fff;
    background-size: 16.55px 14px !important;
    margin-right: 11px;
}

.series-product-gallery__buttons .fav-btn.active,
.series-product-gallery__buttons .fav-btn:hover {
    background: url(../img/heart-pink.png) 50% 50% no-repeat, #A6CE39;
}

.series-product-gallery__buttons .compare-btn {
    background: url(../img/chart.png) 50% 50% no-repeat, #fff;
    background-size: 19.5px 14.4px !important;
}

.series-product-gallery__buttons .compare-btn.active,
.series-product-gallery__buttons .compare-btn:hover {
    background: url(../img/chart-color.png) 50% 50% no-repeat, #fff;
}

.product-gallery-nav {
    width: 70px;
    height: 440px;
    margin-right: 14px;
    padding: 18px 0;
    position: relative;
}

.product-gallery-nav .slick-arrow {
    width: 16px;
    height: 8px;
    left: 27px;
    position: absolute;
    z-index: 90;
    display: block;
    background-size: contain !important;
}

.product-gallery-nav .slick-prev {
    background: url(../img/gallery-nav-arrow-up.png) 0 0 no-repeat;
    top: 0;
}

.product-gallery-nav .slick-next {
    background: url(../img/gallery-nav-arrow-down.png) 0 0 no-repeat;
    bottom: 0;
}

.product-gallery-nav-slider {
    margin: auto 0;
}

.product-gallery-nav-slider .slick-slide:focus .product-image-thumb,
.product-gallery-nav-slider .slick-slide.active .product-image-thumb {
    border: 1px solid #C4C4C4;
}

.product-gallery-nav-slider.milan .slick-slide:focus .product-image-thumb,
.product-gallery-nav-slider.milan .slick-slide.active .product-image-thumb {
    border-color: #B9DB2D;
}

.product-image-thumb {
    width: 70px;
    height: 70px;
    overflow: hidden;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-gallery-slider {
    width: 627px;
    max-width: calc(100% - 84px);
    min-height: 200px;
    position: relative;
}

.product-gallery-slider__pic {
    display: block;
    position: relative;
}

.hover-btn {
    width: 24px;
    height: 24px;
    background: url(../img/plus-gray.png) 50% 50% no-repeat, #fff;
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
}

#hover-btn1 {
    left: 11.16427432216906%;
    bottom: 24.09090909090909%;
}

#hover-btn2 {
    left: 41.62679425837321%;
    top: 45.90909090909091%;
}

#hover-btn3 {
    left: 61.08452950558214%;
    bottom: 22.72727272727273%;
}

#hover-btn4 {
    top: 45.90909090909091%;
    right: 19.93620414673046%;
}

.hover-btn__info {
    display: none;
    position: relative;
    left: -122.5px;
    z-index: 9;
}

.hover-btn__info.move-right {
    left: 0;
}

.hover-btn__info.move-left {
    left: -139.5px;
}

.hover-btn:hover .hover-btn__info {
    display: block;
}

.hover-btn__info-inner {
    position: absolute;
    bottom: 0;
    width: 269px;
    padding-bottom: 11px;
    cursor: default;
}

.hover-btn__info-panel {
    padding: 12px 7px 5px;
    background: #fff;
    box-shadow: 0 0 1px 0 black;
}

.hover-btn__info-panel__pic {
    width: 50px;
    min-width: 50px;
    height: 50px;
    margin-right: 10px;
}

.hover-btn__info-panel__data__link {
    display: block;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-decoration: underline;
    color: #454551 !important;
    margin-bottom: 7px;
}

.hover-btn__info-panel__data__link:hover {
    text-decoration: none;
}

.hover-btn__info-panel__data__price {
    font-family: 'MontserratSemiBold', sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #454551;
}

.hover-btn:hover {
    background: url(../img/plus-white.png) 50% 50% no-repeat, #A6CE39;
}

.product-data__label {
    margin-bottom: 20px !important;
}

.product-data__label:not(:last-child) {
    margin-right: 10px;
}

.product-data {
    width: 529px;
    max-width: 100%;
    position: relative;
}

.product-data__material {
    font-size: 12px;
    color: #454551;
    margin-bottom: 15px;
}

.best-choice {
    display: inline-block;
    font-family: 'MontserratBold', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: #D94D88;
}

.product-data__colorset {
    width: calc(100% + 30px);
}

.product-data__colorset.plain {
    width: 470px;
    max-width: 100%;
}

.product-data__color {
    margin-bottom: 11px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.product-data__color {
    width: 140px;
    margin-right: 40px;
}

.product-data__color {
    position: relative;
}

.product-data__colorset.nowrap .product-data__color {
    width: auto;
    margin-right: 20px;
}

.product-data__color:nth-child(4n) {
    margin-right: 0;
}

.product-data__colorset.nowrap .product-data__color:nth-child(4n) {
    margin-right: 20px;
}

.product-data__color__pic {
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 9px;
    position: relative;
    border: 1px solid #A6CE39;
}

.product-data__color__pic.border {
    border: 4px solid #fff;
}

.product-data__color input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.product-data__color input:checked~.product-data__color__pic,
.selected>.product-data__color__pic {
    border: 3px solid #A6CE39;
}

.product-data__color__pic:after {
    content: "";
    position: absolute;
    top: 7px;
    left: 6px;
    width: 13px;
    height: 10px;
    display: none;
    border-radius: 50%;
    background: url(../img/radio-check-xs.png) 0 0 no-repeat;
}

.product-data__color input.mark:checked~.product-data__color__pic:after {
    display: block;
}

.product-data__color__name {
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 13px;
}

.product-data__colorset.nowrap .product-data__color__name {
    white-space: nowrap;
}

.product-data__color__name.oregon {
    color: #454551;
}

.bigger-sample {
    display: none;
    width: 226px;
    height: 170px;
    border-radius: 10px;
    position: absolute;
    bottom: 40px;
    left: -97px;
    z-index: 990;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: 1px solid lightgray;
}

.product-data__color__link {
    width: 120px;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-decoration: underline;
    color: #454551;
    padding: 7px 0 0 6px;
    cursor: pointer;
}

.product-data__color__link:hover {
    text-decoration: none;
}

.product-data__color-availability {
    line-height: 17px;
    letter-spacing: 0.05em;
    color: #71718A;
    padding-top: 5px;
    margin-bottom: 28px;
}

.product-data__color-availability.plain {
    margin-bottom: 20px;
}

.product-data__color-availability.positive {
    color: #81A423;
    font-size: 13px;
    font-family: 'MontserratMedium', sans-serif;
    margin-bottom: 13px;
}

.open-trim-catalog-link {
    min-height: 23px;
    padding-left: 30px;
    background: url(../img/color-wheel.png) 0 0 no-repeat;
    letter-spacing: 0.05em;
    font-size: 11px;
    color: #454551;
    cursor: pointer;
    margin-bottom: 40px;
}

.open-trim-catalog-link span {
    display: inline-block;
    font-size: 13px;
    text-decoration: underline;
    margin-right: 4px;
}

.open-trim-catalog-link span:hover {
    text-decoration: none;
}

.product-data__see-specification {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.05em;
    text-decoration: underline;
    cursor: pointer;
}

.product-data__see-specification:hover {
    text-decoration: none;
}

.product-data__see-specification span {
    display: block;
}

.product-data__details__group__name {
    font-size: 13px;
    line-height: 28px;
}

.product-option {
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.product-option input {
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.product-option__text {
    margin: 0 10px 17px 0;
    padding: 3px 11px 5px;
    text-align: center;
    font-family: 'MontserratLight', sans-serif;
    font-size: 13px;
    color: #282832;
    line-height: 16px;
    letter-spacing: 0.05em;
    background: #E5E5E5;
    margin-bottom: 17px;
    cursor: pointer;
}

.product-option__text.selected {
    font-family: 'MontserratMedium', sans-serif;
    color: #fff;
    background: #A6CE39;
}

.product-data__old-price {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.05em;
    text-decoration: line-through;
    color: #71718A;
    margin-bottom: 3px;
}

.product-data__old-price.oregon {
    color: #454551;
}

.product-data__new-price {
    font-size: 34px;
    line-height: 41px;
    letter-spacing: 0.05em;
    font-family: 'MontserratSemiBold', sans-serif;
    margin-bottom: 18px;
    color: #454551;
}

.product-data__new-price.oregon {
    color: #454551;
}

.product-data__amount {
    display: none;
    width: 150px;
    margin-right: 34px;
}

.tocart-btn-large,
.tocart-btn2 .oneclick-btn,
.checkout__oneclick-btn,
.checkout__order-btn {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    cursor: pointer;
}

.tocart-btn-large:hover,
.tocart-btn2:hover,
.oneclick-btn:hover,
.checkout__oneclick-btn:hover,
.checkout__order-btn:hover {
    box-shadow: none;
}

.tocart-btn-large,
.tocart-btn2 {
    width: 135px;
    height: 40px;
    line-height: 40px;
    background: url(../img/cart-white.png) 12px 50% no-repeat, #A6CE39;
    margin: 0 20px 22px 0;
    padding: 0 0 0 42px;
    font-family: 'MontserratMedium', sans-serif;
    color: #fff;
}

.tocart-btn2 {
    display: block;
    margin: 0 auto;
    height: 30px;
    line-height: 30px;
}

.oneclick-btn {
    width: 145px;
    height: 40px;
    line-height: 40px;
    font-family: 'MontserratMedium', sans-serif;
    padding: 0 0 0 42px;
    cursor: pointer;
}

.oneclick-btn,
.checkout__oneclick-btn {
    background: url(../img/one-click.png) 14px 10px no-repeat, #fff;
    margin-bottom: 22px;
    line-height: 40px;
    color: #71718A;
}

.oneclick-btn.oregon {
    color: #454551;
}

.checkout__oneclick-btn {
    font-family: 'MontserratMedium', sans-serif;
    margin-right: 30px;
    padding: 0 20px 0 49px;
    border: 1px solid #a6ce39;
}

.product-data__delivery,
.product-data__paymethod {
    font-size: 12px;
    line-height: 13px;
    letter-spacing: 0.05em;
    color: #71718A;
    margin-bottom: 5px;
}

.product-tabs {
    border-bottom: 1px solid #F0F0F0;
}

.product-tabs a {
    position: relative;
    top: 1px;
    padding: 9px 21px 8px 20px;
    text-transform: uppercase;
    color: #71718A !important;
    font-size: 16px;
    background: rgba(181, 181, 181, 0.2);
    line-height: 28px;
}

.product-tabs a.active,
.product-tabs a:hover {
    background: #A6CE39;
    color: #fff !important;
    font-family: 'MontserratMedium', sans-serif;
}

.product-tabs-content {
    padding-top: 20px;
}

.product-properties-col {
    width: 398px;
    max-width: 31.06947697111632%;
    margin-bottom: 30px;
}

.product-properties__item {
    padding-top: 8px;
    border-bottom: 1px dotted #C4C4C4;
}

.product-properties__item__key,
.product-properties__item__value {
    background: #fff;
    position: relative;
    top: 4px;
}

.series-product-page .product-properties__item__key,
.series-product-page .product-properties__item__value {
    color: #454551;
}

.product-properties__item__key {
    font-family: 'MontserratLight', sans-serif;
    padding-right: 2px;
}

.product-properties__item__value {
    padding-left: 2px;
    text-align: right;
}

.product-properties__item__value a {
    color: #282832 !important;
    text-decoration: underline;
}

.product-properties__item__value a:hover {
    text-decoration: none;
}

.product-tabs-content h2 {
    color: #454551;
    font: 500 16px 'MontserratMedium', sans-serif;
    margin-bottom: 10px;
}

.product-tabs-content p {
    color: #454551;
}

.product-tabs-content p:first-child {
    padding-top: 8px;
}

.product-tabs-content p+h2 {
    margin-top: 48px;
}

.colors-gallery {
    margin: 36px 0 20px;
}

.colors-gallery__item {
    width: 6.364359586316627%;
    border-radius: 50%;
    margin-bottom: 20px;
    overflow: hidden;
}

.open-trim-catalog-btn {
    width: 279px;
    padding: 0 0 0 42px;
    background-image: url(../img/color.png);
    background-position: 15px 10px;
    background-repeat: no-repeat;
    font-size: 14px;
    font-family: 'MontserratMedium', sans-serif;
    text-transform: none;
    text-align: left;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    line-height: 39px;
    margin-bottom: 8px;
}

.open-trim-catalog-btn:hover {
    box-shadow: none;
}

.series-price {
    padding-top: 0px;
    margin-bottom: 35px;
}

.series-price h2.h2-gray {
    margin-bottom: 11px;
}

.series-price__nav {
    padding-bottom: 14px;
}

.series-price__nav a {
    font-family: 'MontserratLight', sans-serif;
    font-size: 15px;
    line-height: 18px;
    color: #454551;
    padding: 5px 16px 6px;
    background: transparent;
    text-align: center;
    margin-bottom: 20px;
}

.series-price__nav a:not(:last-child) {
    margin-right:
}

.series-price__nav a:hover,
.series-price__nav a.active {
    font-family: 'MontserratMedium', sans-serif;
    background: #A6CE39;
    border-radius: 30px;
    color: #fff !important;
}

.series-price__group__body {
    padding-top: 5px;
}

.series-price__group__body.noHeight {
    height: 0px;
    overflow-y: hidden;
}

.series-price__group__title {
    text-transform: uppercase;
    color: #71718A;
    text-align: center;
    position: relative;
    font-size: 21px;
    font-family: 'MontserratBold', sans-serif;
    margin-bottom: 19px;
}

.series-price__group__title span {
    display: inline-block;
    position: relative;
    padding: 2px 49px 0 25px;
    background: #fff;
    cursor: pointer;
}

.series-price__group__title:before,
.series-price__group__title span:after {
    content: '';
    display: block;
    position: absolute;
}

.series-price__group__title:before {
    width: 100%;
    height: 1px;
    background: #DADAF3;
    top: 50%;
    left: 0;
}

.series-price__group__title span:after {
    top: 8px;
    right: 16px;
    width: 18px;
    height: 11px;
    background: url(../img/pricelist-down-arrow.png) 0 0 no-repeat;
    background-size: contain !important;
}

.series-price__group__title.active span:after {
    background: url(../img/pricelist-up-arrow.png) 0 0 no-repeat;
}

.category-page {
    margin-bottom: 66px;
}

.category-page__main {
    width: calc(100% - 327px);
    max-width: 100%;
}

.category-page__sidebar {
    width: 300px;
    max-width: 100%;
    position: relative;
    order: 1;
}

.page-sidebar-filter {
    background: #F9F9F9;
    padding-bottom: 62px;
    width: 300px;
    position: relative;
    z-index: 1;
}

.top-fixed {
    position: fixed;
    top: 90px;
}

.bottom-fixed {
    position: fixed;
    bottom: 0;
}

.bottom-static {
    position: absolute;
    bottom: 0;
}

.page-sidebar-filter-inner {
    padding: 19px 20px 0;
}

.sidebar-filter__title {
    font-family: 'MontserratSemiBold', sans-serif;
    font-size: 15px;
    color: #454551;
    margin-bottom: 27px;
}

.category-page__sidebar .sidebar-filter__title {
    margin-bottom: 14px;
}

.sidebar-filter__group__name {
    min-height: 24px;
    padding-left: 31px;
    line-height: 24px;
    background: url(../img/plus-bg.png) 0 0 no-repeat;
    color: #454551;
    font-family: 'MontserratLight', sans-serif;
    margin-bottom: 10px;
    cursor: pointer;
}

.active .sidebar-filter__group__name {
    font-family: 'MontserratMedium', sans-serif;
    background: url(../img/minus-bg.png) 0 0 no-repeat;
    color: #81A423;
}

.sidebar-filter__group__body {
    display: none;
    padding-bottom: 18px;
    max-height: 300px;
    overflow-y: auto;
}

.active .sidebar-filter__group__body {
    display: block;
}

.active .sidebar-filter__group__body::-webkit-scrollbar {
    width: 4px;
    border: 1px solid #d5d5d5;
}

.active .sidebar-filter__group__body::-webkit-scrollbar-track {
    border-radius: 0;
    background: #eeeeee;
}

.active .sidebar-filter__group__body::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: #b0b0b0;
}

.popup .sidebar-filter {
    padding-bottom: 310px;
}

.popup .sidebar-filter__group__body {
    padding: 0 0 15px 31px;
}

.popup .sidebar-filter__group__body a {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #454551 !important;
}

.popup .sidebar-filter__group__body a.active,
.popup .sidebar-filter__group__body a:hover {
    color: #81A423 !important;
    font-family: 'MontserratMedium', sans-serif;
}

.sidebar-filter__buttons {
    padding-top: 5px;
    position: absolute;
    bottom: 0;
}

.sidebar-filter__submit {
    width: 172px;
    height: 57px;
    background: #A6CE39;
    font: 500 14px 'MontserratMedium';
    letter-spacing: 0.05em;
    color: #fff;
    cursor: pointer;
}

.sidebar-filter__submit:disabled {
    background: #bdd67a;
}

.sidebar-filter__reset {
    width: 128px;
    height: 57px;
    font-family: 'MontserratLight';
    color: #454551;
    padding-left: 8px;
    background: url(../img/reset.png) 90px 50% no-repeat;
    line-height: 57px;
    cursor: pointer;
    text-align: left;
}

.recommended {
    padding-top: 56px;
}

.item-card {
    width: 300px;
    max-width: 23.4192037470726%;
    height: 498px;
    margin: 0 1.639344262295082% 30px 0;
}

.item-card.slick-slide {
    margin-right: 0;
    max-width: 100%;
}

.item-card-inner {
    border: 1px solid #E5E5E5;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
}

.item-card-category:not(.item-card-4cols),
.category-page .item-card {
    max-width: 31.44654088050314%;
    margin-right: 2.830188679245283%;
}

.item-card-category {
    height: auto;
    background: #F9F9F9;
}

.item-card.item-card-category {
    border: none;
}

.item-card.item-card-category:not(.item-card-4cols):nth-child(3n) {
    margin-right: 0;
}

.item-card:nth-child(4n) {
    margin-right: 0;
}

.category-page .item-card {
    margin-right: 2.830188679245283%;
}

.category-page .item-card:nth-child(3n) {
    margin-right: 0;
}

.item-card-top {
    height: 228px;
    position: relative;
}

.item-card-category .item-card-top {
    height: 267px;
    background: #fff;
}

.card-checkbox-container {
    position: absolute;
    top: 15px;
    left: 18px;
    margin-bottom: 0;
}

.favorites-actions .card-checkbox-container {
    position: static;
    line-height: 20px;
    font-size: 13px;
    color: #454551;
    margin: 0 25px 0 0;
    white-space: nowrap;
}

.checkmark-card {
    width: 16px;
    height: 16px;
    border: 1px solid #C4C4C4;
    border-radius: 2px;
    background-color: #fff !important;
    margin-right: 12px;
    top: 4px;
}

input:checked~.checkmark-card {
    background-position: 3px 5px;
}

.item-card__labelset {
    position: absolute;
    top: 21px;
    left: 10px;
    width: 190px;
}

.item-card__labelset:after {
    content: '';
    display: block;
    clear: both;
}

.item-card-category .item-card__labelset {
    top: 19px;
    left: 14px;
}

.series-price .item-card__labelset {
    top: 23px;
    left: 10px;
}

.item-card__buttons {
    position: absolute;
    top: 15px;
    right: 14px;
}

.item-card-category .item-card__buttons {
    top: 13px;
}

.item-card .fav-btn,
.item-card .compare-btn,
.item-card .tocart-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

.item-card .fav-btn {
    background: url(../img/heart.png) 50% 50% no-repeat, #fff;
    background-size: 17px 15px;
}

.item-card .compare-btn {
    background: url(../img/chart.png) 50% 50% no-repeat, #fff;
    background-size: 20px 15px;
}

.item-card .tocart-btn {
    position: absolute;
    bottom: 20px;
    right: 14px;
    background: url(../img/cart.png) 50% 50% no-repeat, #fff;
    background-size: 20px 19px;
}

.item-card .fav-btn:hover,
.item-card .fav-btn.active {
    background: url(../img/heart-pink.png) 50% 50% no-repeat, #fff;
}

.item-card .compare-btn:hover,
.item-card .compare-btn.active {
    background: url(../img/chart-color.png) 50% 50% no-repeat, #fff;
}

.item-card .tocart-btn:hover,
.compared-item .tocart-btn:hover {
    background: url(../img/cart-white.png) 50% 50% no-repeat, #A6CE39;
}

.item-card .fav-btn {
    margin-right: 11px;
}

.item-card__pic {
    height: 100%;
    overflow: hidden;
}

.item-card__pic img {
    max-width: 100%;
    max-height: 100%;
}

.item-card-bottom {
    padding: 0 10px;
}

.item-card__marking {
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #454551;
    padding-top: 12px;
    margin-bottom: 16px;
}

.item-card__meta {
    font-size: 11px;
    letter-spacing: 0.05em;
    color: #71718A;
    padding-top: 10px;
    margin-bottom: 15px;
}

.item-card__meta__status {
    margin-right: 6px;
}

.item-card__meta__country {
    margin-left: 8px;
}

.item-card__name {
    display: block;
    font-family: 'MontserratSemiBold', sans-serif;
    font-size: 15px;
    color: #454551 !important;
    margin-bottom: 4px;
    min-height: 40px;
}

.item-card-category .item-card__name {
    margin-bottom: 8px;
}

.item-card__name:hover {
    color: #81A423 !important;
}

.item-card__size {
    min-height: 17px;
    line-height: 17px;
    letter-spacing: 0.05em;
    color: #454551;
    margin-bottom: 19px;
}

.item-card__instock,
.item-card__country {
    font-size: 11px;
    letter-spacing: 0.05em;
    color: #71718A;
}

.item-card__instock {
    margin-bottom: 2px;
    visibility: hidden;
}

.item-card__country {
    margin-bottom: 21px;
}

.item-card__prices {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #71718A;
    margin-bottom: 27px;
}

.item-card-category .item-card__prices {
    margin-bottom: 9px;
}

.item-card__prices__text {
    margin-right: 11px;
}

.item-card__prices__old {
    text-decoration: line-through;
    margin-right: 11px;
    white-space: nowrap;
}

.item-card__prices__new {
    font-family: 'MontserratSemiBold', sans-serif;
    white-space: nowrap;
}

.item-card__description {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #71718A;
    padding-top: 3px;
    margin-bottom: 14px;
}

.more-colors-btn {
    display: block;
    color: #81A423;
    padding-right: 29px;
    text-decoration: underline;
    font-size: 11px;
    letter-spacing: 0.05em;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
}

.more-colors-btn:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    right: 11px;
    width: 12px;
    height: 9px;
    background: url(../img/arrow-down-green.png) 0 0 no-repeat;
}

.more-colors-btn:hover {
    text-decoration: none;
}

.item-card__colors__section {
    padding-bottom: 28px;
}

.item-card__colors {
    /* width: 200px; */
}

.item-card__color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    border: 1px solid #B9DB2D;
}

.item-card__color>img {
    border-radius: 50%;
}

.item-card__color span {
    display: none;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #454551;
    position: absolute;
    left: 0;
    top: 30px;
    width: 100%;
}

.item-card__color.selected {
    border: 3px solid #B9DB2D;
}

.item-card__color.selected span {
    /* display: block; */
}

.compared-top-line {
    padding-top: 18px;
}

.compared-set {
    overflow: auto;
    padding-bottom: 63px;
    margin-bottom: 5px;
}

.compared-set::-webkit-scrollbar {
    height: 4px;
}

.compared-set::-webkit-scrollbar-track {
    background: #FBF9F9;
}

.compared-set::-webkit-scrollbar-thumb {
    background: #A6CE39;
}

.compared-item-card {
    width: 296px;
    height: 384px;
    margin: 0 24px 21px 0;
}

.compared-item-card:first-child {
    margin-right: 26px;
}

.compared-item-card-inner {
    width: 100%;
    height: 100%;
    border: 1px solid #E5E5E5;
}

.compared-item-card-top {
    position: relative;
    height: 267px;
}

.compared-item-card-bottom {
    padding: 0 10px;
    position: relative;
}

.compared-item-card .tocart-btn {
    position: absolute;
    top: 14px;
    right: 22px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-position: 50% 50%;
}

.compared-item-card__pic {
    height: 100%;
}

.compared-item-card__pic img {
    max-height: 100%;
}

.compared-item-card__pic img.plus-xl {
    width: auto;
}

.compared-item-card__buttons {
    position: absolute;
    top: 12px;
    right: 13px;
}

.compared-item-card__buttons>div,
.compared-item-card__buttons>a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

.compared-item-card .fav-btn {
    margin-right: 11px;
    background: url(../img/heart.png) 50% 50% no-repeat, #fff;
    background-size: 17px 15px;
}

.compared-item-card .fav-btn:hover,
.compared-item-card .fav-btn.active {
    background: url(../img/heart-pink.png) 50% 50% no-repeat, #fff;
}

.compared-item-card .compare-btn:hover,
.compared-item-card .compare-btn.active {
    background: url(../img/chart-color.png) 50% 50% no-repeat, #fff;
}

.compared-item-card .delete-btn {
    background: url(../img/trash.png) 50% 50% no-repeat, #fff;
    background-size: 13px 14px;
    display: block;
}

.compared-item-card .delete-btn:hover {
    background: url(../img/trash-black.png) 50% 50% no-repeat, #fff;
    background-size: 13px 14px;
}

.compared-item-card__name {
    display: block;
    font-size: 15px;
    font-family: 'MontserratSemiBold', sans-serif;
    color: #454551;
    margin-bottom: 6px;
}

.compared-item-card__price {
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #71718A;
    margin-bottom: 15px;
}

.compared-item__props__key,
.compared-item__props__value {
    letter-spacing: 0.05em;
    color: #454551;
    margin-bottom: 14px;
}

.compared-item__props__value {
    color: #71718A;
    padding-left: 16px;
}

.compared-filter__btn {
    cursor: pointer;
    height: 28px;
    line-height: 28px;
    font-family: 'MontserratLight', sans-serif;
    letter-spacing: 0.05em;
    font-size: 15px;
    color: #454551;
    border-radius: 30px;
    padding: 0 19px 0 17px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 27px;
    white-space: nowrap;
}

.compared-filter__btn:first-child {
    margin-right: 27px;
}

.compared-filter__btn.active,
.compared-filter__btn:hover {
    font-size: 14px;
    font-family: 'MontserratMedium', sans-serif;
    color: #fff;
    background: #A6CE39;
}

.compared-checkbox-container,
.compared-delete {
    height: 32px;
    color: #454551;
}

.compared-checkbox-container {
    margin: 0 30px 0 0;
    font-size: 13px;
    position: relative;
    top: 5px;
}

.compared-delete {
    width: 119px;
    letter-spacing: 0.05em;
    padding: 0 17px 0 39px;
    font-family: 'MontserratLight', sans-serif;
    background: url(../img/trash.png) 11px 9px no-repeat, #F9F9F9;
    border-radius: 30px;
    cursor: pointer;
}

.compared-delete:hover {
    background: url(../img/trash-black.png) 11px 7px no-repeat, #FBF9F9;
}

.to-compared-text {
    width: 110px;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.05em;
    color: #454551;
    margin: 0 auto;
}

.link-filter {
    padding-top: 22px;
}

.link-filter-tabs-group a {
    display: block;
    height: 28px;
    background: #F9F9F9;
    border-radius: 30px;
    padding: 0 16px;
    line-height: 28px;
    letter-spacing: 0.05em;
    color: #454551;
    font-family: 'MontserratLight', sans-serif;
    text-align: center;
    margin: 0 11px 18px 0;
    white-space: nowrap;
}

.link-filter-tabs-group a.active {
    font-family: 'MontserratMedium', sans-serif;
    color: #fff;
    background: #A6CE39;
}

.link-filter-tabs-group a:hover {
    box-shadow: 0 0 0 1px #A6CE39;
}

.sortby-filter {
    margin-bottom: 24px;
}

.sortby-btn {
    font-family: 'MontserratLight', sans-serif;
    color: #454551;
    position: relative;
    padding-left: 17px;
}

.sortby-btn:not(:last-child) {
    margin-right: 40px;
}

.sortby-btn div {
    display: none;
}

.sortby-btn.active div {
    display: block;
    position: absolute;
    top: 25px;
    left: 0;
    border-radius: 0 0 10px 10px;
    background: white;
    padding: 15px;
    white-space: nowrap;
    z-index: 1;
    box-shadow: 0 0 5px 0px #868686;
}

.sortby-btn>span {
    position: relative;
    padding-right: 12px;
    cursor: pointer;
}

.sortby-btn>span::after {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - 2.5px);
    right: 0;
    width: 8px;
    height: 5px;
    background: url(../img/filter-arrow.png) 0 0 no-repeat;
}

.sortby-btn.active>span::after {
    transform: rotate(180deg);
}

.sortby-btn .checkbox-container {
    margin-bottom: 10px;
    font-size: 14px;
}

.sortby-btn .checkbox-container:last-child {
    margin-bottom: 0;
}

.sidebar-filter__slider__title {
    font-family: 'MontserratLight', sans-serif;
    color: #454551;
    margin-bottom: 9px;
}

.sidebar-filter .ui-widget.ui-widget-content {
    margin: 0 0 28px;
    width: 244px;
    max-width: 100%;
    height: 16px;
    border: none !important;
    border-radius: 0 !important;
    background-color: transparent;
}

.sidebar-filter .ui-slider-range.ui-corner-all.ui-widget-header:first-child {
    width: 100%;
    height: 4px;
    border-radius: 10px !important;
    background: #E5E5E5;
    top: 3px;
}

.sidebar-filter .ui-slider-range.ui-corner-all.ui-widget-header:last-child {
    height: 4px;
    background-color: #A6CE39;
    border-radius: 0 !important;
    position: relative;
    top: 3px;
}

.sidebar-filter .ui-slider-handle.ui-state-default.ui-corner-all {
    width: 16px;
    height: 16px;
    background-color: #A6CE39;
    border: none !important;
    border-radius: 100%;
    margin-left: 0 !important;
    outline: none !important;
}

.sidebar-filter .range-group {
    margin-bottom: 15px;
}

.sidebar-filter .range-text {
    font: 300 14px 'MontserratLight';
    color: #454551;
}

.sidebar-filter .range-input {
    width: 110px;
    height: 36px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    background-color: #fff;
    line-height: 36px;
    padding: 0 12px;
    font: 300 14px 'MontserratLight';
}

.sidebar-filter .range-input:hover,
.sidebar-filter .range-input:focus,
.sidebar-filter .range-input:active {
    border-color: #A6CE39 !important;
}

.color-filter-btn-container {
    /* display: inline-block; */
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0 20px 7px 0;
    margin-right: 0;
}

.filter-checkbox-container.disabled,
.color-filter-btn-container.disabled {
    opacity: 0.5;
}

.color-filter-btn-container input {
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    float: left;
}

.color-filter-btn {
    padding: 3px 30px 3px 3px;
    top: 1px;
    position: relative;
    border-radius: 30px;
}

.color-filter-btn__pic {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 6px;
    flex-shrink: 0;
}

.color-filter-btn__text {
    font-size: 13px;
    color: #454551;
    border-bottom: 1px dashed #454551;
}

input:checked~.color-filter-btn {
    background: #A6CE39;
}

input:checked~.color-filter-btn .color-filter-btn__text {
    color: #fff;
    font-family: 'MontserratMedium', sans-serif;
    border-bottom: none;
}

input:checked~.color-filter-btn:after {
    content: '';
    display: block;
    width: 9px;
    height: 8px;
    background: url(../img/option-cls.png) 0 0 no-repeat;
    position: absolute;
    top: 8px;
    right: 9px;
}

.filter-checkbox-container {
    font-size: 13px;
    padding-left: 4px;
    color: #454551;
    line-height: 16px;
    margin-bottom: 4px;
}

.checkmark-filter {
    width: 16px;
    height: 16px;
    border: 1px solid #C4C4C4;
    border-radius: 2px;
    margin-right: 12px;
    top: 3px;
}

input:checked~.checkmark-filter {
    border: 2px solid #A6CE39;
    background: url(../img/filter-check.png) 1.4px 2.9px no-repeat;
}

.favorites-set {
    margin-bottom: 60px;
}

.favorites-actions {
    margin: 28px 0 29px;
}

.favorites-compare,
.favorites-delete {
    height: 32px;
    padding-left: 37px;
    font-family: 'MontserratLight', sans-serif;
    letter-spacing: 0.05em;
    border-radius: 30px;
    color: #454551;
    cursor: pointer;
}

.favorites-compare {
    width: 127px;
    background: url(../img/chart-xs.png) 9px 7px no-repeat, #FBF9F9;
    margin-right: 39px;
}

.favorites-compare:hover {
    background: url(../img/chart-color.png) 3px -2px no-repeat, #FBF9F9;
}

.favorites-delete {
    width: 119px;
    background: url(../img/trash.png) 10px 7px no-repeat, #FBF9F9;
}

.favorites-delete:hover {
    background: url(../img/trash-black.png) 9px 5px no-repeat, #FBF9F9;
}

.pagination {
    height: 18px;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.alt-pagination {
    height: 46px;
    padding: 14px 0;
}

.pagination a,
.pagination span {
    display: block;
    margin: 0 13px;
}

.alt-pagination a,
.alt-pagination span {
    margin-right: 15px;
}

.pagination a {
    color: #454551 !important;
}

.pagination a:hover,
.pagination span {
    color: #A6CE39 !important;
}

.pagination a.pagination-arrow {
    width: 10px;
    height: 18px;
}

.pagination a.pagination-prev {
    background: url(../img/page-arrow-prev.png) 0 0 no-repeat;
    margin-right: 53px;
}

.pagination a.alt-pagination-prev {
    margin-right: 20px;
}

.pagination a.pagination-next {
    background: url(../img/page-arrow-next.png) 0 0 no-repeat;
    margin-left: 51px;
    margin-right: 0;
}

.pagination a.alt-pagination-next {
    margin-left: 18px;
}

.pagination:not(.alt-pagination)>a:nth-last-child(2),
.pagination:not(.alt-pagination)>span:nth-last-child(2),
.alt-pagination>span:nth-last-child(3),
.alt-pagination>a:nth-last-child(3) {
    margin-right: 0;
}

.alt-pagination-double-arrow {
    width: 10px;
    height: 8px;
}

.alt-pagination-first {
    margin-right: 15px;
    background: url(../img/double-arrow-bg-prev.png) 0 0 repeat-x;
}

.alt-pagination-last {
    margin-left: 15px;
    background: url(../img/double-arrow-bg-next.png) 0 0 repeat-x;
}

.two-col-layout__main {
    width: 940px;
    max-width: 100%;
    margin-left: auto;
    margin-right: 41px;
}

.two-col-layout__main .faq-form-section {
    padding: 15px;
    margin-bottom: 0 !important;
}


.two-col-layout__main .zagolform {
    font: 700 34px 'MontserratBold';
    line-height: 44px;
}

.two-col-layout__main .podzagolform {
    padding-right: 10px;
}

.two-col-layout__main .faq-form__input-group {
    width: 50%;
}

@media (max-width: 1490px) {
    .two-col-layout__main .faq-form-inner {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

.two-col-layout__sidebar {
    width: 300px;
    min-width: 300px;
}

.intro-text {
    line-height: 23px;
    letter-spacing: 0.05em;
    font-family: 'MontserratLight', sans-serif;
    margin-bottom: 22px;
    padding-top: 20px;
}

.intro-text-no-pt {
    padding-top: 0;
}

.structure-menu {
    list-style: none;
    margin-top: 13px;
}

.structure-menu li a {
    display: block;
    padding: 0 20px;
    font-family: 'MontserratLight', sans-serif;
    color: #282832;
    background: #FBF9F9;
}

.structure-menu li a:hover,
.structure-menu li a.active {
    background: #A6CE39;
    color: #fff !important;
    font-family: 'MontserratMedium', sans-serif;
}

.structure-menu li a span {
    display: block;
    padding: 19px 0 18px;
    position: relative;
}

.structure-menu li:not(:last-child) a span::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #E5E5E5;
    position: absolute;
    left: 0;
    bottom: 0;
}

.structure-menu li a:hover span::after,
.structure-menu li a.active span::after {
    display: none;
}

.structure-menu li a.logout-link span {
    padding-left: 24px !important;
    background: url(../img/exit.png) 0 21px no-repeat !important;
}

.staff {
    padding-top: 32px;
}

.staff-list {
    padding-top: 4px;
}

.staff-member {
    width: 32%;
    max-width: 29.25531914893617%;
    font-family: 'MontserratLight', sans-serif;
    margin-bottom: 40px;
}

.staff-member__pic {
    margin-bottom: 10px;
}

.staff-member__name {
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.staff-member__position {
    font-size: 18px;
    font-family: 'MontserratMedium', sans-serif;
    margin-bottom: 10px;
}

.staff-member a {
    display: block;
    letter-spacing: 0.05em;
    color: #282832 !important;
    margin-bottom: 6px;
}

.faq {
    margin-bottom: 38px;
}

.faq h2 {
    margin-bottom: 34px;
}
.faq-form-section {
    background: #232976;
    padding: 25px 27px 0px 28px;
    margin-bottom: 52px;
    color: #fff;
}
.clients-page+.faq-form-section {
    margin-bottom: 11px;
}

.faq-form-section.less-margin {
    margin-bottom: 39px;
}

.faq-form-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media(max-width: 1100px) {
    .faq-form-inner {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .faq-form__input-row .kk input {
        margin: 0;
    }
}

@media(max-width: 768px) {
    .faq-form__right-content {
        flex-direction: column;
    }
    .faq-form-inner .faq-form__input-group {
        width: 100%;
    }
    .faq-form__right .faq-form__input-row {
        flex-direction: column;
        gap: 0;
    }
    .faq-form__right .faq-form__input-row .komp {
        width: 100%;
    }
    .faq-form__right {
        padding-bottom: 20px;
    }
}

.faq-form-section__intro {
    font-size: 16px;
    font-family: 'MontserratSemiBold', sans-serif;
    margin-bottom: 27px;
    color: #fff;
}

.faq-form__left {
    width: 100%;
    max-width: 100%;
}

.two-col-layout__main .faq-form__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-form__right {
    width: 100%;
    max-width: 100%;
}

.faq-form__label {
    display: block;
    font-size: 13px;
    line-height: 23px;
    letter-spacing: 0.05em;
    color: #fff;
}

.faq-form__input {
    display: block;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    padding: 0 12px;
    font: 300 13px 'Montserrat';
    color: #282832;
    letter-spacing: 0.05em;
    margin-bottom: 13px;
    line-height: 40px;
    height: 40px;
}

.faq-form__input::placeholder {
    font: 300 14px 'MontserratLight';
    letter-spacing: 0.05em;
    color: #71718A;
}

.faq-form__input::-webkit-input-placeholder {
    font: 300 14px 'MontserratLight';
    letter-spacing: 0.05em;
    color: #71718A;
}

.faq-form__input::-moz-placeholder {
    font: 300 14px 'MontserratLight';
    letter-spacing: 0.05em;
    color: #71718A;
}

.faq-form__input:-ms-input-placeholder {
    font: 300 14px 'MontserratLight';
    letter-spacing: 0.05em;
    color: #71718A;
}

.faq-form__input:-moz-placeholder {
    font: 300 14px 'MontserratLight';
    letter-spacing: 0.05em;
    color: #71718A;
}

.faq-form__right-content {
    display: flex;
    gap: 10px;
}

.faq-form__input-group {
    width: 33%;
}

.faq-form__input-row .komp {
    width: 50%;
}
.faq-form__input-row {
    display: flex;
    gap: 30px;
}

.faq-form__textarea {
    width: 100%;
    height: 66px;
}

.faq-form__textarea::placeholder {
    padding-top: 12px;
}

.faq-form__textarea::-webkit-input-placeholder {
    padding-top: 12px;
}

.faq-form__textarea::-moz-placeholder {
    padding-top: 12px;
}

.faq-form__textarea:-ms-input-placeholder {
    padding-top: 12px;
}

.faq-form__textarea:-moz-placeholder {
    padding-top: 12px;
}

.faq-form__submit {
    width: 207px;
    max-width: 100%;
    font-family: 'MontserratMedium', sans-serif;
    color: #71718A !important;
    text-transform: none;
    font-size: 14px;
    background: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
}

.faq-form__submit:hover {
    box-shadow: none;
}

.faq-item {
    margin-bottom: 24px;
}

.faq-item__question {
    font-size: 20px;
    font-family: 'MontserratSemiBold', sans-serif;
    line-height: 24px;
    letter-spacing: 0.05em;
    color: #1D1D1B;
    margin-bottom: 9px;
}

.faq p {
    line-height: 23px;
    letter-spacing: 0.05em;
    font-family: 'MontserratLight', sans-serif;
    margin-bottom: 16px;
}

.custom-ul {
    list-style: none;
    padding: 0 0 10px 18px;
}

.custom-ul.xtra-margin {
    margin-bottom: 46px;
}

.custom-ul>li {
    position: relative;
    padding-left: 28px;
    line-height: 20px;
    margin-bottom: 11px;
}

.custom-ul>li::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #A6CE39;
    position: absolute;
    top: 5px;
    left: 0;
}

.custom-ul>li>ul {
    padding: 12px 0 8px 26px;
    list-style: none;
}

.custom-ul>li>ul>li {
    padding-left: 10px;
    position: relative;
    color: #1D1D1B;
    margin-bottom: 15px;
    font-size: 13px;
}

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

.custom-ul>li>ul>li::before {
    content: '-';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    margin-right: 4px;
}

.checkout-list {
    margin-bottom: 30px;
    padding-right: 18px;
}

.checkout-list__item {
    padding: 12px 0 16px;
    border-bottom: 1px solid #F0F0F0;
}

.checkout-list__item__col1 {
    width: 700px;
    min-width: 55.42359461599367%;
    max-width: 55.42359461599367%;
    margin-right: 5.308352849336456%;
}

.checkout-list__item__col2 {
    width: 495px;
    min-width: 39.19239904988124%;
    max-width: 39.19239904988124%;
}

.checkout-list__item__num {
    width: 36px;
    min-width: 36px;
    font-family: 'MontserratLight', sans-serif;
}

.checkout-list__item__pic {
    width: 14%;
    min-width: 14%;
    margin-right: 2%;
}

.checkout-list__item__info {
    width: 68.57142857142857%;
    min-width: 68.57142857142857%;
    margin-right: 3.142857142857143%;
}

.checkout-list__item__info__marking {
    font-size: 12px;
    line-height: 28px;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.checkout-list__item__info__name {
    font-family: 'MontserratLight', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #282832 !important;
}

.checkout-list__item__prices__old {
    font-size: 14px;
    line-height: 28px;
    color: #71718A;
    text-decoration: line-through;
}

.checkout-list__item__prices__new,
.checkout-list__item__sum {
    font-size: 18px;
    line-height: 28px;
    white-space: nowrap;
}

.checkout-list__item__color {
    width: 7.142857142857143%;
    min-width: 7.142857142857143%;
    max-width: 50px;
}

.checkout-list__item__color img {
    width: 100%;
}

.checkout-list__item__prices {
    width: 20.2020202020202%;
    min-width: 20.2020202020202%;
    text-align: center;
    margin-right: 13.13131313131313%;
}

.checkout-list__item__sum {
    min-width: 21.61616161616162%;
    font-size: 18px;
    white-space: nowrap;
}

.checkout-list__item__amount {
    width: 90px;
    min-width: 90px;
    margin-right: 11.11111111111111%;
}

.amount-btn {
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #C4C4C4;
    cursor: pointer;
}

.product-data__amount .amount-btn {
    width: 40px;
    height: 40px;
}

.amount-down {
    background: url(../img/minus-gray.png) 50% 50% no-repeat;
}

.product-data__amount .amount-down {
    background-image: url(../img/minus-gray-lg.png);
}

.amount-up {
    background: url(../img/plus-gray.png) 50% 50% no-repeat;
}

.product-data__amount .amount-up {
    background-image: url(../img/plus-gray-lg.png)
}

.amount-num {
    width: 42px;
    min-width: 42px;
    border: none;
    font: 400 14px 'Montserrat';
    color: #282832;
    text-align: center;
}

.checkout-list__item__delete {
    width: 32px;
    min-width: 32px;
    margin-left: 9.090909090909091%;
}

.delete-item-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: url(../img/trash.png) 50% 50% no-repeat, #F9F9F9;
    cursor: pointer;
}

.delete-item-btn:hover {
    background-image: url(../img/trash-black.png);
}

.checkout-final {
    background: #F9F9F9;
    padding: 24px 31px 22px 36px;
    margin-bottom: 20px;
}

.checkout-final .download-link {
    position: relative;
    top: 20px;
}

.checkout-final__bill {
    letter-spacing: 0.05em;
}

.checkout-final__bill__text {
    font-family: 'MontserratMedium', sans-serif;
    font-size: 24px;
    color: #000;
    margin-right: 14px;
}

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

.checkout-final__bill__sum__before {
    font-size: 13px;
    line-height: 16px;
    color: #71718A;
    margin-bottom: 4px;
}

.checkout-final__bill__sum__before span {
    text-decoration: line-through;
}

.checkout-final__bill__sum__current {
    font-family: 'MontserratSemiBold', sans-serif;
    font-size: 34px;
    line-height: 1;
}

.checkout__order-btn {
    background: #A6CE39;
    padding: 0 19px;
    text-align: center;
    color: #fff;
    font-family: 'MontserratMedium', sans-serif;
    line-height: 40px;
    margin-bottom: 20px;
}

.ordering__main {
    width: calc(100% - 374px);
    max-width: 100%;
}

.ordering__group__title {
    font-family: 'MontserratBold', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #71718A;
    padding: 17px 20px 16px;
    background: #F0F0F0;
}

.ordering__group__body {
    padding: 15px 0 34px;
    background: #fff;
}

.ordering__group:last-child .ordering__group__body {
    padding-bottom: 12px;
}

.ordering-form__options__item {
    padding: 12px 0 12px 20px;
    border-bottom: 1px solid #E5E5E5;
    position: relative;
}

.ordering-form__options__item.height-auto {
    min-height: unset;
}

.ordering-form__input-group {
    width: 269px;
    max-width: 33%;
}

.ordering-form__label {
    display: block;
    font: 500 12px 'MontserratMedium';
    letter-spacing: 0.05em;
    color: #454551;
    margin-bottom: 10px;
}

.ordering-form__input {
    display: block;
    width: 100%;
    height: 36px;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    margin-bottom: 7px;
    font: 300 12px 'MontserratLight';
    color: #454551;
    letter-spacing: 0.1em;
    padding: 12px 11px 9px;
}

.ordering-form__input::placeholder {
    font: 300 12px 'MontserratLight';
    color: #454551;
    letter-spacing: 0.1em;
}

.ordering-form__input::-webkit-input-placeholder {
    font: 300 12px 'MontserratLight';
    color: #454551;
    letter-spacing: 0.1em;
}

.ordering-form__input::-moz-placeholder {
    font: 300 12px 'MontserratLight';
    color: #454551;
    letter-spacing: 0.1em;
}

.ordering-form__input:-ms-input-placeholder {
    font: 300 12px 'MontserratLight';
    color: #454551;
    letter-spacing: 0.1em;
}

.ordering-form__input:-moz-placeholder {
    font: 300 12px 'MontserratLight';
    color: #454551;
    letter-spacing: 0.1em;
}

.ordering-radio-wrap {
    min-height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    letter-spacing: 0.05em;
    color: #000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-left: 34px;
}

.circle-radio-wrap {
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.circle-radio-wrap,
.ordering-form__client-type {
    margin-top: 14px;
}

.account-page__circle-radio-wrap {
    margin-top: 0;
    display: block;
    white-space: nowrap;
}

.account-page__circle-radio-wrap:not(:last-child) {
    margin-right: 50px;
}

.circle-radio-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.circle-radio-wrap input~.circle-radio-pic {
    width: 18px;
    min-width: 18px;
    height: 18px;
    position: relative;
    border: 1px solid #C4C4C4;
    border-radius: 50%;
    margin-right: 6px;
}

.subscription__data .circle-radio-wrap input~.circle-radio-pic {
    margin-right: 10px;
}

.circle-radio-wrap input~.circle-radio-pic:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 3px;
    right: 3px;
    background: #C4C4C4;
    border-radius: 50%;
}

.circle-radio-wrap input:checked~.circle-radio-pic {
    border-color: #A6CE39;
}

.circle-radio-wrap input:checked~.circle-radio-pic:after {
    background: #A6CE39;
}

.circle-radio-pic,
.circle-radio-name {
    display: inline-block;
    vertical-align: middle;
}

.circle-radio-name {
    font-family: 'MontserratMedium', sans-serif;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #454551;
    line-height: 20px;
}

.account-page__circle-radio-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #282832;
    letter-spacing: normal;
}

.ordering-radio-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.ordering-radio-wrap input~.ordering-radio-pic {
    width: 18px;
    height: 18px;
    border: 2px solid #C4C4C4;
    border-radius: 50%;
    margin: 0 13px 0 3px;
    cursor: pointer;
    position: absolute;
    top: 3px;
    left: 0;
}

.ordering-radio-wrap input:checked~.ordering-radio-pic {
    width: 24px;
    height: 24px;
    border: none;
    background: url(../img/order-radio-check.png) 8px 9px no-repeat, #A6CE39;
    margin: 0 10px 0 0;
    top: 1px;
}

.ordering-radio__info-line {
    font-family: 'MontserratMedium', sans-serif;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.05em;
    color: #454551;
    margin: 16px 0;
}

.ordering-radio__info-line.closer {
    padding-left: 34px;
    margin: 5px 0 22px;
}

.ordering-form__fieldset {
    padding-left: 20px;
}

.ordering-form__options__item__cost {
    min-width: 100px;
    padding-right: 20px;
    text-align: right;
    letter-spacing: 0.05em;
    color: #000;
    position: absolute;
    right: 0;
    top: 16px;
}

.ordering-form__options__item__cost.active {
    font-family: 'MontserratSemiBold', sans-serif;
}

.ordering__sidebar {
    width: 339px;
    min-width: 339px;
}

.ordering__sidebar__panel {
    background: #F9F9F9;
    padding: 30px;
    margin-bottom: 34px;
}

.ordering__sidebar__top {
    letter-spacing: 0.05em;
    margin-bottom: 23px;
}

.ordering__sidebar__title {
    font-family: 'MontserratBold', sans-serif;
    text-transform: uppercase;
}

.ordering__sidebar__link {
    font-family: 'MontserratMedium', sans-serif;
    letter-spacing: 0.05em;
    color: #81A423;
    border-bottom: 1px dashed #81A423;
}

.ordering__sidebar__link:hover {
    border-color: transparent;
}

.ordering__sidebar__data {
    letter-spacing: 0.05em;
    text-align: right;
}

.ordering__sidebar__data__row:not(:last-child) {
    margin-bottom: 21px;
}

.ordering__sidebar__data__row_middle {
    font-size: 11px;
}

.ordering__sidebar__data__row_middle div:not(:last-child) {
    margin-bottom: 5px;
}

.ordering__sidebar__data__name,
.ordering__sidebar__data__value__name {
    color: #000;
    margin-bottom: 5px;
}

.ordering__sidebar__data__value__name {
    margin-bottom: 3px;
}

.ordering__sidebar__data__name.data__name__final {
    font-family: 'MontserratMedium', sans-serif;
}

.ordering__sidebar__data__value.data__value__final {
    font-family: 'MontserratSemiBold', sans-serif;
}

.ordering__sidebar__data__value .old-price {
    display: inline-block;
    text-decoration: line-through;
    font-size: 13px;
    color: #71718A;
    margin-right: 8px;
}

.ordering-checkbox-container {
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0.05em;
    color: #454551;
    padding: 0 39px;
    margin-bottom: 30px;
}

.ordering-checkbox-container .checkmark {
    margin-right: 8px;
}

.checkmark-green {
    border-color: #85C03A;
}

input:checked~.checkmark-green {
    background: url(../img/consent-check-green.png) 1.4px 2.4px no-repeat;
}

.ordering-checkbox-container input:checked~.checkmark-green {
    background-position: 1.2px 2.4px;
}

.lift-checkbox-container {
    padding: 0;
    margin: 16px 0 23px;
    font-size: 13px;
    color: #454551;
}

.checkmark-green-bold {
    width: 16px;
    height: 16px;
    border: 2px solid #A6CE39;
    border-radius: 2px;
}

.ordering__group .checkmark-green-bold {
    position: relative;
    top: 3px;
}

input:checked~.checkmark-green-bold {
    background: url(../img/lift-check-green.png) 1.4px 2.4px no-repeat;
}

.ordering-form__submit {
    width: 132px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}

.ordering-form__submit:hover {
    box-shadow: none;
}

.ordering-form__city {
    margin: 21px 0 20px;
    letter-spacing: 0.05em;
    color: #000;
}

.ordering-form__city a {
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
}

.ordering-option__tips {
    display: none;
    padding-bottom: 12px;
}

.selected+.ordering-option__tips {
    display: block;
}

.add-account-details {
    padding-top: 12px;
}

.address__data,
.address__note {
    width: 426px;
    max-width: 47.01986754966887%;
}

.address-label {
    display: block;
    font: 500 12px 'MontserratMedium';
    line-height: 19px;
    letter-spacing: 0.05em;
    color: #454551;
    margin-bottom: 6px;
}

.address-input {
    height: 36px;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    padding: 12px 10px 9px;
    font: 400 12px 'Montserrat';
    line-height: 15px;
    letter-spacing: 0.1em;
    position: relative;
    margin-bottom: 11px;
}

.address-input.w100 {
    width: 100%;
}

.address-input.w25 {
    width: 90px;
}

.address-input.valid {
    background: url(../img/valid-check.png) calc(100% - 10px) 12px no-repeat;
}

.address-input.invalid {
    border-color: #E94444;
    color: #E94444;
}

.address-textarea {
    height: 108px;
}

.delivery-days {
    min-height: 22px;
    padding-left: 42px;
    background: url(../img/truck.png) 0 0 no-repeat;
    margin-top: 23px;
    font-family: 'MontserratBold', sans-serif;
}

.file-input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.file-input+label {
    display: inline-block;
    cursor: pointer;
    font-family: 'MontserratMedium', sans-serif;
    letter-spacing: 0.05em;
    color: #81A423;
    margin-left: 34px;
    border-bottom: 1px dashed #81A423;
}

.pin-link {
    letter-spacing: 0.05em;
    color: #81A423;
    margin-left: 34px;
    padding-left: 16px;
    background: url(../img/pin.png) 0 3px no-repeat;
}

.ordering-radio-name {
    line-height: 24px;
}

.ordering-radio-name .pin-link {
    margin-left: 10px;
    background-position: 0 3px;
}

.pin-link>span {
    font-family: 'MontserratMedium', sans-serif;
    border-bottom: 1px dashed #81A423;
}

.pin-link:hover span {
    border-bottom: none;
}

.portfolio-page {
    padding-right: 20px;
}

.portfolio-intro-text {
    margin-bottom: 30px;
}

.portfolio-layout {
    margin-bottom: 40px;
}

.portfolio-layout img {
    display: block;
}

.portfolio-layout__mosaic__top {
    margin-bottom: 5.5%;
}

.portfolio-layout__headliner,
.portfolio-layout__mosaic {
    width: 617px;
    max-width: 48.92942109436955%;
}

.portfolio-layout__full-width {
    width: 100%;
}

.portfolio-layout__half-width {
    width: 294px;
    max-width: 47.72727272727273%;
}

.portfolio-layout__pic {
    display: block;
    margin-bottom: 16px;
}

.portfolio-layout__project {
    font-size: 13px;
    font-family: 'MontserratMedium', sans-serif;
    margin-bottom: 4px;
}

.portfolio-layout__product {
    color: #71718A;
    font-size: 13px;
    height: 16px;
    overflow: hidden;
}

.clients-page {
    padding-top: 6px;
    margin-bottom: 49px;
}

.clients-page__item {
    margin-bottom: 13px;
}

.clients-page__item__pic {
    width: 153px;
    min-width: 153px;
    height: 69px;
    margin-right: 25px;
}

.clients-page__item__title {
    width: 100%;
    font-family: 'MontserratMedium', sans-serif;
    line-height: 20px;
    border-bottom: 0.5px solid #E5E5E5;
}

.account-page__section {
    margin-bottom: 30px;
    border-bottom: 1px solid #E5E5E5;
}

.account-page__section-title {
    font-size: 20px;
    font-family: 'MontserratSemiBold', sans-serif;
    line-height: 24px;
    letter-spacing: 0.05em;
    color: #1D1D1B;
    margin-bottom: 13px;
}

.account-page__user-portrait {
    width: 234px;
    min-width: 234px;
}

.account-page__user-portrait__pic {
    width: 100%;
    height: 234px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 19px;
}

.account-page__user-portrait__pic img {
    width: 100%;
}

.file-input+label.upload-userpic-btn__label {
    display: block;
    width: 204px;
    max-width: 100%;
    height: 40px;
    cursor: pointer;
    font-family: 'MontserratSemiBold', sans-serif;
    letter-spacing: 0.05em;
    font-size: 13px;
    color: #fff;
    line-height: 40px;
    padding-left: 49px;
    background: url(../img/camera.png) 19px 9px no-repeat, #A6CE39;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    margin: 0 auto 15px;
    border-bottom: none;
    white-space: nowrap;
}

.file-input+label.upload-userpic-btn__label:hover {
    box-shadow: none;
}

.account-page__input-set {
    position: relative;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 30px;
}

.account-page__input-wrap {
    width: 214px;
    max-width: 31.51693667157585%;
}

.account-page__date-input-wrap {
    position: relative;
}

.ui-datepicker-trigger {
    position: absolute;
    right: 10px;
    bottom: 31px;
    cursor: pointer;
}

.account-page__input {
    display: block;
    width: 100%;
    height: 40px;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    margin: 0 35px 20px 0;
    padding: 0 12px;
    font: 400 14px 'Montserrat';
    letter-spacing: 0.05em;
    color: #454551;
}

.subscsription-mail-input {
    width: 214px;
    height: 30px;
    margin-bottom: 0;
}

.account-page__input.checked {
    background: url(../img/valid-check.png) calc(100% - 10px) 50% no-repeat;
}

.account-page__input.changed {
    border-color: #A6CE39;
}

.account-page__input::placeholder {
    font: 300 12px 'MontserratLightItalic';
    color: #71718A;
}

.account-page__input::-webkit-input-placeholder {
    font: 300 12px 'MontserratLightItalic';
    color: #71718A;
}

.account-page__input::-moz-placeholder {
    font: 300 12px 'MontserratLightItalic';
    color: #71718A;
}

.account-page__input:-ms-input-placeholder {
    font: 300 12px 'MontserratLightItalic';
    color: #71718A;
}

.account-page__input:-moz-placeholder {
    font: 300 13px 'MontserratLightItalic';
    color: #71718A;
}

.account-page__input-label {
    display: block;
    font: 400 14px 'Montserrat';
    color: #454551;
    position: relative;
    margin-bottom: 2px;
    white-space: nowrap;
}

.pass-input-set .account-page__input-label {
    margin-bottom: 0;
}

.pass-input-set input {
    margin-top: 2px;
}

.subscription__data {
    margin-bottom: 20px;
}

.subscription__data__text {
    margin-right: 12px;
    white-space: nowrap;
}

.remove-userpic-btn {
    width: 125px;
    max-width: 100%;
    height: 40px;
    line-height: 40px;
    border: 1px solid #E5E5E5;
    font-family: 'MontserratMedium', sans-serif;
    text-align: center;
    border-radius: 30px;
    color: #454551;
    cursor: pointer;
}

.remove-userpic-btn:hover {
    background: #A6CE39;
    color: #fff;
}

.account-page__user-data {
    width: calc(100% - 262px);
    max-width: 100%;
}

.field-icon {
    display: block;
    width: 16px;
    height: 13px;
    background: url(../img/psw-nosee.png) 0 0 no-repeat;
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 2;
    cursor: pointer;
}

.field-icon.hide-psw {
    height: 16px;
    background: url(../img/psw-see.png) 0 5px no-repeat;
}

.account-page__discount {
    margin: 26px 0 7px;
}

.account-page__discount-data {
    height: 67px;
    background: #A6CE39;
    text-align: center;
    font-size: 19px;
    font-family: 'MontserratMedium', sans-serif;
    color: #fff;
}

.account-page__discount-data__text {
    margin-right: 26px;
}

.account-page__discount-data__value {
    font-size: 36px;
    font-family: 'MontserratBold', sans-serif;
}

.has-save-changes-btn {
    margin-bottom: 60px;
}

.save-changes-btn-wrap {
    position: relative;
    width: 100%;
    height: 31px;
    display: none;
}

.has-save-changes-btn .save-changes-btn-wrap {
    display: block;
}

.save-changes-btn {
    position: absolute;
    bottom: -20px;
    width: 251px;
    left: calc(50% - 125.5px);
}

.order-info-row {
    margin-bottom: 40px;
}

.order-info__card {
    width: 708px;
    max-width: calc(100% - 214px);
    border: 1px solid #E5E5E5;
}

.order-info__action {
    width: 177px;
    min-width: 177px;
    padding-top: 10px;
}

.order-info__card__title {
    height: 50px;
    background: #FBF9F9;
    padding: 0 20px;
    line-height: 50px;
    letter-spacing: 0.05em;
    color: #454551;
}

.order-info__card__body {
    padding: 21px 20px;
}

.order-info__card__dataset {
    margin-bottom: 22px;
}

.order-info__card__dataset__key,
.order-info__card__dataset__value {
    letter-spacing: 0.05em;
    color: #454551;
    margin-bottom: 9px;
}

.order-info__card__dataset__key {
    margin-right: 10px;
}

.order-info__card__dataset__value {
    font-family: 'MontserratSemiBold', sans-serif;
    margin-right: 10px;
}

.order-info__card__package__title {
    letter-spacing: 0.05em;
    color: #454551;
    margin-bottom: 13px;
    counter-reset: num;
}

.order-info__card__package__list {
    list-style: none;
    padding-bottom: 20px;
}

.order-info__card__package__list li {
    font-size: 11px;
    margin-bottom: 9px;
    padding-left: 17px;
    position: relative;
    counter-increment: num;
}

.order-info__card__package__list li:last-child {
    margin-bottom: 0;
}

.order-info__card__package__list li::before {
    content: counter(num);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
    font: 400 11px 'Montserrat';
}

.order-info__card__package__list li a {
    color: #81A423;
    text-decoration: underline;
}

.order-info__card__package__list li a:hover {
    text-decoration: none;
}

.order-info__card__btn {
    width: 198px;
    height: 28px;
    text-transform: none;
    line-height: 28px;
    padding-top: 4px;
    font: 500 14px 'MontserratMedium';
}

.order-info__action__status {
    font-family: 'MontserratSemiBold', sans-serif;
    line-height: 17px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.order-info__action__status.pending {
    color: #FE7D43;
}

.order-info__action__status.payment-received {
    color: #81A423;
}

.order-info__action__status.finished {
    color: #71718A;
}

.order-info__action__btn {
    width: 175px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 30px;
    text-align: center;
    color: #454551;
    font-family: 'MontserratMedium', sans-serif;
    margin-bottom: 14px;
    cursor: pointer;
    display: block;
}

.order-info__action__btn:hover {
    color: #A6CE39;
    border-color: #A6CE39;
}

.extended-order-info {
    border: 1px solid #E5E5E5;
    margin-bottom: 27px;
}

.extended-order-info__top-line {
    background: #FBF9F9;
    height: 50px;
    padding: 0 21px 0 20px;
}

.extended-order-info__status {
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'MontserratSemiBold', sans-serif;
    color: #71718A;
}

.extended-order-info__btn {
    width: 155px;
    height: 30px;
    line-height: 30px;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 30px;
    text-align: center;
    color: #454551;
    cursor: pointer;
}

.extended-order-info__btn:hover {
    color: #A6CE39;
    border-color: #A6CE39;
}

.extended-order-info__btn:first-child {
    margin-right: 9px;
}

.extended-order-info__body {
    padding: 0 21px 0 20px;
}

.extended-order-info__dataset:not(:last-child),
.extended-order-info__package {
    border-bottom: 1px dashed #000;
}

.extended-order-info__dataset {
    padding: 13px 0 14px;
    letter-spacing: 0.05em;
    color: #454551;
}

.extended-order-info__dataset:last-child {
    padding-bottom: 4px;
}

.extended-order-info__dataset__key,
.extended-order-info__dataset__value {
    margin-bottom: 9px;
}

.extended-order-info__dataset__key {
    margin-right: 10px;
}

.extended-order-info__dataset__value {
    font-family: 'MontserratSemiBold', sans-serif;
}

.extended-order-info__package__title {
    letter-spacing: 0.05em;
    color: #454551;
    padding-top: 20px;
}

.extended-order-info__package__item {
    padding: 20px 0 32px;
    counter-increment: order-item;
}

.extended-order-info__package__item:first-child {
    padding-top: 15px;
}

.extended-order-info__package__item:not(:last-child) {
    border-bottom: 1px solid #F0F0F0;
}

.extended-order-info__package__item:before {
    content: counter(order-item);
    display: block;
    width: 16px;
    line-height: 28px;
    height: 28px;
    font-family: 'MontserratLight', sans-serif;
    position: relative;
    top: 26px;
}

.extended-order-info__package__item__pic {
    width: 98px;
    min-width: 98px;
    height: 81px;
    margin-right: 12px;
}

.extended-order-info__package__item__marking {
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #282832;
    margin-bottom: 10px;
}

.extended-order-info__package__item__title {
    display: block;
    font-size: 15px;
    font-family: 'MontserratLight', sans-serif;
    margin-bottom: 10px;
    color: #282832 !important;
}

.extended-order-info__package__item__color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 14px;
}

.extended-order-info__package__item__price,
.extended-order-info__package__item__amount {
    color: #71718A;
    margin-bottom: 4px;
}

.extended-order-info__package__item__amount span {
    color: #282832;
}

.extended-order-info__package__item__sum {
    font-size: 16px;
}

.contact-us__info {
    font-size: 13px;
}

.contact-us__info__call,
.contact-us__info__write,
.contact-us__info__visit {
    height: 50px;
    margin-bottom: 31px;
}

.contact-us__info__call {
    width: 151px;
    margin-right: 59px;
    padding-left: 24px;
    background: url(../img/phone.png) 0 5px no-repeat;
    padding-top: 6px;
}

.contact-us__info__call__number {
    margin-bottom: 6px;
}

.contact-us__info a {
    display: block;
    color: #282832 !important;
}

.contact-us__info a:hover {
    color: #A6CE39 !important;
}

.contact-us__info a:hover {
    color: #A6CE39;
}

.contact-us__info__write {
    width: 177px;
    margin-right: 59px;
    padding-left: 25px;
    padding-top: 4px;
    background: url(../img/envelope.png) 0 7px no-repeat;
}

.contact-us__info__write__mail {
    font-size: 14px;
    font-family: 'MontserratLight', sans-serif;
    margin-bottom: 6px;
}

.send-message-link {
    text-decoration: underline;
}

.contact-us__info a.send-message-link:hover {
    color: #282832 !important;
    text-decoration: none;
}

.contact-us__info__visit {
    width: 245px;
    padding-left: 23px;
    background: url(../img/pin-black.png) 0 0 no-repeat;
}

.contact-us__info__visit__address {
    padding-top: 2px;
}

.contact-us__map {
    width: 940px;
    max-width: 100%;
    height: 500px;
    margin-bottom: 16px;
}

.contact-us__title {
    font-size: 16px;
    font-family: 'MontserratSemiBold', sans-serif;
    line-height: 20px;
    margin-bottom: 24px;
    color: #A6CE39;
}

.contacts-staff-member {
    margin-bottom: 20px;
}

.contacts-faq-form-section {
    margin-bottom: 4px;
}

.page-not-found {
    padding: 66px 0 34px;
}

.page-not-found__title {
    letter-spacing: 0.05em;
    font-size: 13px;
    margin-bottom: 12px;
}

.page-not-found__redirect {
    letter-spacing: 0.05em;
    margin-bottom:
}

.page-not-found__redirect__text {
    font-size: 16px;
    margin-right: 24px;
}

.page-not-found__redirect__link {
    display: inline-block;
    color: #81A423;
    z-index: 90;
}

.page-not-found__redirect__link span {
    border-bottom: 1px dashed #81A423;
}

.page-not-found__redirect__link:not(:last-child) {
    margin-right: 30px;
}

.page-not-found__redirect__link:hover span {
    border-bottom: none;
}

.page-not-found__404 {
    font-size: 334px;
    font-family: 'MontserratBold', sans-serif;
    text-transform: uppercase;
    color: #E5E5E5;
    line-height: 1;
}

.popup {
    display: none;
}

.popup-cls {
    position: absolute;
    top: 22px;
    right: 19px;
    width: 24px;
    height: 24px;
    border: 1px solid #454551;
    border-radius: 50%;
    background: url(../img/svg/cls-icon.svg) 50% 50% no-repeat;
    background-size: 14px;
    cursor: pointer;
    z-index: 9;
}

form#popup-order {
    color: #fff;
    text-align: center;
    font-size: 18px;
}

.popup-order__flex {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: #2B2C76;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: absolute;
    top: 100px;
    left: 50%;
    margin-left: -300px;
    overflow: unset;
}

.popup-order__flex .popup-cls {
    background: url(/img/cls.png);
    width: 57px;
    height: 57px;
    top: 60px;
    right: 60px;
}

.popup-order__text {
    text-align: center;
    font-style: normal;
    font-weight: bold;
    text-transform: uppercase;
}

.popup-order__text * {
    margin: 0;
    text-transform: uppercase;
}

.popup-order__text h1 {
    font-size: 96px;
    line-height: 112px;
    color: #A6CE39;
}

.popup-order__text--first {
    font-size: 34px;
    line-height: 40px;
    color: #fff;
}

.popup-order__text--second {
    font-size: 48px;
    line-height: 56px;
    color: #fff;
}

.popup-order__form {
    width: 50%;
    margin: 0 auto;
}

.popup-order__form .checkbox-container {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 25px;
    text-align: center;
    font-style: normal;
    font-weight: 300;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0.05em;
}

.popup-city .popup-cls {
    top: 24px;
    right: 43px;
}

.popup__title {
    text-transform: uppercase;
    text-align: center;
    font-size: 24px;
    font-family: 'MontserratBold', sans-serif;
    color: #454551;
}

.popup__intro {
    line-height: 24px;
    color: #454551;
    font-family: 'MontserratLight', sans-serif;
    margin: 16px 0 31px;
}

.fancybox-content.popup-city {
    width: 959px;
    max-width: 98%;
    height: 444px;
    background: #fff;
    padding: 17px 63px 22px !important;
    position: relative;
}

.popup-city__list__col:first-child,
.popup-city__list__col:nth-child(2) {
    width: 207px;
}

.popup-city__title {
    margin-bottom: 36px;
}

.popup-city__list__item {
    display: block;
    line-height: 34px;
    color: #454551;
    font-family: 'MontserratLight', sans-serif;
    cursor: pointer;
}

.popup-city__list__item:hover {
    text-decoration-line: underline;
    color: #81A423;
}

.fancybox-content.popup-specification {
    width: 480px;
    padding: 19px 53px 31px 20px;
}

.popup-specification__title {
    margin-bottom: 30px;
}

.popup-specification__list__item {
    padding-top: 22px;
    border-bottom: 1px solid #F0F0F0;
}

.popup-specification__list__item__pic {
    display: block;
    width: 80px;
    height: 70px;
    margin-right: 22px;
    text-align: center;
}

.popup-specification__list__item__pic img {
    max-height: 100%;
}

.popup-specification__list__item__name {
    width: 183px;
    font-family: 'MontserratLight', sans-serif;
    font-size: 16px;
    color: #282832 !important;
}

.popup-specification__list__item__name__marking {
    display: block;
    font-size: 12px;
    letter-spacing: 0.05em;
}

.popup-specification__list__item__price {
    font-size: 18px;
}

.popup-specification__title {
    color: #454551;
}

.fancybox-content.popup-color-slider {
    width: 762px;
    height: 420px;
    padding: 19px 27px 37px 29px;
}

.color-slider-wrap {
    position: relative;
    margin-top: 27px;
    padding: 0 33px 0 35px;
}

.color-slider-wrap .slick-arrow {
    width: 10px;
    height: 18px;
    position: absolute;
    top: 109px;
    z-index: 90;
}

.color-slider-wrap .slick-prev {
    background: url(../img/page-arrow-prev.png) 0 0 no-repeat;
    left: 0;
}

.color-slider-wrap .slick-next {
    background: url(../img/page-arrow-next.png) 0 0 no-repeat;
    right: -2px;
}

.color-slider {
    width: 100%;
}

.color-slide {
    width: 638px;
    max-width: 100%;
}

.color-slide__pic {
    margin-bottom: 29px;
}

.color-slide__name {
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #454551;
}

.fancybox-content.popup-oregon {
    width: 980px;
    /* height: 869px; */
    padding: 17px 17px 40px 40px;
    overflow: hidden;
}

.trim-picker {
    /* height: 620px; */
    overflow: auto;
    padding-right: 10px;
    margin-bottom: -40px;
}

.popup .trim-picker::-webkit-scrollbar {
    width: 4px;
}

.popup .trim-picker::-webkit-scrollbar-track {
    background: #fff;
}

.popup .trim-picker::-webkit-scrollbar-thumb {
    background: #C4C4C4;
    border-radius: 20px;
}

.trim-radio-wrap {
    display: block;
    width: 150px;
    height: 189px;
    position: relative;
    cursor: pointer;
    color: #454551;
    font-size: 12px;
    letter-spacing: 0.05em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    margin-bottom: 40px;
}

.trim-radio-wrap:not(:nth-child(5n)) {
    margin-right: 36px;
}

.trim-radio-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.trim-radio-wrap:hover input~.product-trim__pic {
    border: 4px solid #A6CE39;
}

.trim-radio-wrap input:checked~.product-trim__pic {
    border: 4px solid #A6CE39;
}

.product-trim__pic {
    height: 150px;
    margin-bottom: 9px;
    position: relative;
    border-radius: 50%;
}

.product-trim__pic.smaller {
    width: 130px;
    height: 130px;
    margin: 11px auto 9px;
}

.popup-oregon .product-trim__pic {
    border: 1px solid #A6CE39;
}

.popup-oregon .product-trim__pic.small {
    width: 130px;
    height: 130px;
}

.product-trim__pic:after {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    left: calc(50% - 9px);
    width: 25px;
    height: 18px;
    display: none;
    border-radius: 50%;
    background: url(../img/radio-check.png) 0 0 no-repeat;
}

.trim-radio-wrap input:checked~.product-trim__pic:after {
    display: block;
}

.product-trim__pic img {
    display: block;
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.product-trim__name {
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #454551;
}

.fancybox-content.popup-trim-catalog {
    width: 1280px;
    /* height: 869px; */
    padding: 0;
    overflow: hidden;
}

.popup-inner__main {
    width: 980px;
    min-width: 980px;
    max-width: 100%;
    padding: 17px 17px 0 41px;
}

.popup-inner__sidebar {
    width: 300px;
    min-width: 300px;
    padding: 19px 20px 0;
    background: linear-gradient(180deg, #F3F3F3 0%, rgba(249, 249, 249, 0) 10.67%);
    position: relative;
}

.get-trim-info {
    position: absolute;
    width: 261px;
    left: 20px;
    bottom: 38px;
}

.get-trim-info__text {
    font-family: 'MontserratMedium', sans-serif;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.05em;
    color: #454551;
    margin-bottom: 12px;
}

.get-trim-info__chosen,
.oneclick-info__chosen {
    display: none;
    font-family: 'MontserratMedium', sans-serif;
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.oneclick-info__chosen {
    display: block;
}

.popup-oneclick .get-trim-info__chosen {
    display: block;
}

.get-trim-info__chosen__text,
.oneclick-info__chosen__text {
    color: #454551;
    margin-bottom: 5px;
}

.get-trim-info__chosen__name,
.oneclick-info__chosen__name {
    color: #81A423;
}

.trim-info-form__input,
.oneclick-form__input {
    display: block;
    width: 100%;
    height: 36px;
    padding: 0 12px;
    margin-bottom: 11px;
    background: #fff;
    border: 1px solid #E5E5E5;
    box-sizing: border-box;
    border-radius: 4px;
    font: 400 14px 'Montserrat';
}

.trim-info-form__input__phone::placeholder {
    font: 300 14px 'MontserratLight';
    color: #71718A;
}

.trim-info-form__input__phone::-webkit-input-placeholder {
    font: 300 14px 'MontserratLight';
    color: #71718A;
}

.trim-info-form__input__phone::-moz-placeholder {
    font: 300 14px 'MontserratLight';
    color: #71718A;
}

.trim-info-form__input__phone:-ms-input-placeholder {
    font: 300 14px 'MontserratLight';
    color: #71718A;
}

.trim-info-form__input__phone:-moz-placeholder {
    font: 300 14px 'MontserratLight';
    color: #71718A;
}

.trim-info-form__input__phone::placeholder {
    font: 300 14px 'MontserratLight';
    color: #71718A;
}

.trim-info-form__input__mail::placeholder {
    font: 300 12px 'MontserratLightItalic';
}

.trim-info-form__input__mail::-webkit-input-placeholder {
    font: 300 12px 'MontserratLightItalic';
}

.trim-info-form__input__mail::-moz-placeholder {
    font: 300 12px 'MontserratLightItalic';
}

.trim-info-form__input__mail:-ms-input-placeholder {
    font: 300 12px 'MontserratLightItalic';
}

.trim-info-form__input__mail:-moz-placeholder {
    font: 300 12px 'MontserratLightItalic';
}

.trim-info-form .checkbox-container,
.oneclick-form .checkbox-container {
    padding-top: 9px;
    font-size: 10px;
    font-family: 'MontserratLight', sans-serif;
    line-height: 15px;
    letter-spacing: 0.05em;
    color: #454551;
    margin-bottom: 20px;
}

.trim-info-form .checkmark,
.oneclick-form .checkmark {
    margin-right: 8px;
}

.trim-info-form__submit {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}

.trim-info-form__submit:hover {
    box-shadow: none;
}

.fancybox-content.popup-oneclick {
    width: 345px;
    /* height: 420px; */
    padding: 19px 55px 30px 30px;
}

.popup-oneclick .popup-cls {
    right: 11px;
}

.popup-oneclick .popup__title {
    margin-bottom: 30px;
}

.oneclick-form .checkbox-container {
    padding-top: 7px;
}

.oneclick-form__input__phone::placeholder {
    font: 300 14px 'MontserratLight';
    color: #71718A;
}

.oneclick-form__input__phone::-webkit-input-placeholder {
    font: 300 14px 'MontserratLight';
    color: #71718A;
}

.oneclick-form__input__phone::-moz-placeholder {
    font: 300 14px 'MontserratLight';
    color: #71718A;
}

.oneclick-form__input__phone:-ms-input-placeholder {
    font: 300 14px 'MontserratLight';
    color: #71718A;
}

.oneclick-form__input__phone:-moz-placeholder {
    font: 300 14px 'MontserratLight';
    color: #71718A;
}

.oneclick-form__input__phone::placeholder {
    font: 300 14px 'MontserratLight';
    color: #71718A;
}

.input-wrap {
    position: relative;
}

.input-wrap:before {
    content: '*';
    display: block;
    position: absolute;
    top: 12px;
    left: 14px;
    font: 300 12px 'MontserratLight';
    color: #D94D88;
}

.input-wrap .oneclick-form__input__mail {
    padding-left: 20px;
}

.oneclick-form__input__mail::placeholder {
    font: 300 12px 'MontserratLightItalic';
}

.oneclick-form__input__mail::-webkit-input-placeholder {
    font: 300 12px 'MontserratLightItalic';
}

.oneclick-form__input__mail::-moz-placeholder {
    font: 300 12px 'MontserratLightItalic';
}

.oneclick-form__input__mail:-ms-input-placeholder {
    font: 300 12px 'MontserratLightItalic';
}

.oneclick-form__input__mail:-moz-placeholder {
    font: 300 12px 'MontserratLightItalic';
}

.popup-authorize.fancybox-content {
    width: 531px;
    padding: 72px 30px 36px;
}

.popup-authorize .popup-cls {
    top: 20px;
    right: 20px;
}

.authorize-tabs>a {
    display: block;
    height: 32px;
    font-size: 15px;
    font-family: 'MontserratSemiBold', sans-serif;
    line-height: 18px;
    text-transform: capitalize;
    color: #71718A;
    position: relative;
}

.authorize-tabs>a:first-child {
    margin-right: 33px;
    padding-left: 17px;
}

.authorize-tabs>a:first-child {
    padding-left: 16px;
}

.authorize-tabs>a.active {
    color: #A6CE39;
}

.authorize-tabs>a.active:after {
    content: '';
    display: block;
    width: 246px;
    height: 6px;
    background: #A6CE39;
    position: absolute;
    bottom: 0;
    left: 0;
}

.authorize-tabs>a.active:last-child:after {
    width: 199px;
    left: -16px;
}

.authorize-tabs-content {
    padding: 26px 13.5px 0;
}

.login-form__input-wrap {
    width: 263px;
    max-width: 100%;
    position: relative;
    margin-bottom: 14px;
}

.register-form__input-wrap {
    width: 214px;
    max-width: 48.08988764044944%;
    position: relative;
    margin-bottom: 16px;
}

.authorize__input-label,
.authorize__input {
    display: block;
    font: 400 14px 'Montserrat';
    color: #454551;
}

.authorize__input-label {
    letter-spacing: 0.05em;
}

.authorize__input {
    width: 100%;
    height: 40px;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    padding-left: 19px;
    margin-top: 4px;
}

.authorize__input.valid {
    border-color: #A6CE39;
    background: url(../img/valid-check.png) calc(100% - 10px) 12px no-repeat;
}

.authorize__input.error,
.account-page__input.error {
    border-color: red;
}

#login-tab .authorize__input lab {
    width: 263px;
}

.authorize__input::placeholder {
    font: 300 12px 'MontserratLightItalic';
    color: #71718A;
}

.authorize__input::-webkit-input-placeholder {
    font: 300 12px 'MontserratLightItalic';
    color: #71718A;
}

.authorize__input::-moz-placeholder {
    font: 300 12px 'MontserratLightItalic';
    color: #71718A;
}

.authorize__input:-ms-input-placeholder {
    font: 300 12px 'MontserratLightItalic';
    color: #71718A;
}

.authorize__input:-moz-placeholder {
    font: 300 12px 'MontserratLightItalic';
    color: #71718A;
}

.login-submit-btn {
    width: 89px;
    margin-top: 26px;
}

.register-checkbox-container {
    width: 261px;
    font-size: 10px;
    font-family: 'MontserratLight', sans-serif;
    line-height: 15px;
    letter-spacing: 0.05em;
    color: #454551;
    margin: 10px auto 20px;
}

.register-checkbox-container .checkmark-green {
    top: 2px;
    margin-right: 8px;
}

.register-checkbox-container input:checked~.checkmark-green {
    background-position: 1px 2.47px;
}

.register-submit-btn {
    width: 230px;
    margin-bottom: 6px;
}

.footer {
    background: #2B2C76;
}

.footer>div {
    padding-left: 184px;
}

.footer-top {
    border-bottom: 1px solid #404196;
    padding-top: 34px;
}

.footer-top__title {
    color: #A6CE39;
    font-size: 21px;
    line-height: 26px;
    font-family: 'MontserratSemiBold', sans-serif;
    margin-bottom: 36px;
}

.footer-list-col {
    width: 258px;
    min-width: 258px;
}

.footer-list-col:first-child {
    margin-right: 56px;
}

.footer-list-col:nth-child(2) {
    margin-right: 44px;
}

.footer-list-col:nth-child(3) {
    margin-right: 43px;
}

.footer-list-col:last-child {
    width: 509px;
    margin-left: auto;
}

.footer-list__item {
    margin-bottom: 48px;
}

.footer-list__item:last-child {
    margin-bottom: 20px;
}

.footer-list-col:last-child .footer-list__item {
    margin-bottom: 26px;
}

.footer-list__item__title {
    display: block;
    font-family: 'MontserratSemiBold', sans-serif;
    margin-bottom: 11px;
    color: #fff !important;
}

.footer-middle .footer-list__item__title {
    color: #B9DB2D !important;
    margin-bottom: 16px;
}

.footer-middle .footer-list__item__title+.footer-list__item__title {
    padding-top: 6px;
}

.footer-catalog-menu,
.footer-structure-menu {
    list-style: none;
}

.footer-catalog-menu li a,
.footer-structure-menu li a {
    display: block;
    line-height: 28px;
    color: #fff !important;
    font-size: 13px;
}

.footer-catalog-menu li a:hover,
.footer-structure-menu li a:hover {
    text-decoration: underline;
}

.footer-catalog-menu li a {
    position: relative;
    padding-left: 9px;
}

.footer-catalog-menu li a::before {
    content: '-';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
}

.footer-offer {
    width: 509px;
    max-width: 100%;
    background: #242562;
    padding: 23px 0 30px 17px;
}

.footer-offer__text {
    width: 346px;
    max-width: 100%;
    font-size: 13px;
    margin-bottom: 24px;
    line-height: 28px;
    text-align: center;
    color: #fff;
}

.footer-offer__text span {
    display: block;
}

.footer-offer__btn {
    width: 265px;
    margin-left: 30px;
}

.footer-middle {
    padding: 18px 0 0 0;
}

.footer-middle .footer-list-col {
    padding-top: 20px;
}

.footer-middle .footer-list-col:last-child {
    width: 386px;
    min-width: 386px;
    text-align: right;
    margin-left: auto;
    padding: 10px 146px 0 0;
}

.footer__phone {
    display: block;
    font-size: 23px;
    line-height: 44px;
    color: #fff !important;
    line-height: 1;
    margin-bottom: 6px;
}

.footer__phone:hover {
    color: #B9DB2D;
}

.footer__address {
    margin-bottom: 43px;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: .05em;
    color: #fff;
    white-space: nowrap;
}

.footer__ask-link {
    display: inline-block;
    height: 26px;
    padding-left: 28px;
    background: url(../img/paper-plane-green.png) 0 0 no-repeat;
    line-height: 18px;
    font-family: 'MontserratMedium', sans-serif;
    font-size: 15px;
    color: #A6CE39;
}

.footer__alt {
    margin-bottom: 52px;
    font-size: 12px;
    line-height: 20.4px;
    color: #fff;
}

.footer__alt a {
    color: #fff !important;
}

.footer__alt a:hover {
    text-decoration: underline;
}

.social-btn-set {
    width: 164px;
    margin-left: auto;
}

.social-btn {
    display: block;
}

.social-btn-vk {
    width: 22px;
    height: 24px;
    background: url(../img/social-sprite.png) 0 0 no-repeat;
    margin-right: 30px;
}

.social-btn-insta {
    width: 24px;
    height: 24px;
    background: url(../img/social-sprite.png) -52px 0 no-repeat;
    margin-right: 27px;
}

.social-btn-fb {
    width: 12px;
    height: 24px;
    background: url(../img/social-sprite.png) -103px 0 no-repeat;
    margin-right: 36px;
}

.social-btn-ok {
    width: 13px;
    height: 24px;
    background: url(../img/social-sprite.png) -150px 0 no-repeat;
}

.social-btn-tg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    padding: 10px 0 17px;
    line-height: 22.8px;
    font-size: 12px;
    color: #fff;
}

.footer-copy {
    margin-right: 30px;
}

.footer-bottom a {
    display: block;
    color: #fff !important;
    position: relative;
    padding: 0 31px 0 24px;
}

.footer-bottom a::before {
    content: '';
    display: block;
    width: 1px;
    height: 29px;
    background: #404196;
    position: absolute;
    bottom: -1px;
    left: 0;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.product-gallery-nav .slick-slide img {
    max-width: 100%;
}

.breadcrumbs div {
    display: inline-block;
}

.fixed-sidebar .fixed-sidebar__offer .btn.fixed-sidebar__offer__btn {
    background: #232976;
    border-color: #232976;
}

form#popup_quant {
    margin: 0 auto;
    margin-bottom: -20px;
    margin-top: 10px;
    display: flex;
    width: 140px;
    align-items: center;
    justify-content: center;
}

form#popup_quant button {
    width: 30px;
    min-width: 24px;
    height: 30px;
    font-size: 0;
    border-radius: 50%;
    border: 1px solid #C4C4C4;
    background: url(../img/plus-gray.png) 50% 50% no-repeat;
    cursor: pointer;
}

form#popup_quant button[name='MINUS'] {
    background-image: url(../img/minus-gray-lg.png);
    background-size: 12px;
}

form#popup_quant input {
    font-size: 20px;
    height: 40px;
    width: 40px;
    display: block;
    text-align: center;
    margin-top: 2px;
}

.popup-window .popup-window-buttons span {
    display: block;
    width: 220px;
    margin: 7px auto !important;
}

a.item-card__size_link {
    font-size: 12px;
    color: #a6ce39;
    text-decoration: underline;
    margin-top: -14px;
    margin-bottom: 10px;
    display: block;
}
#properties [id*='sku_prop'] {
    display: block !important;
}
.product-properties-col{
    margin-bottom: 0;
}
.product-properties.flex.flex-between {
    flex-wrap: wrap;
}
input.header-search-form__submit.mobile {
    opacity: 0;
    pointer-events: none;
    background: transparent;
    left: 0;
    width: 32px;
    height: 32px;
    top: 50%;
    transform: translateY(-50%);
}
input.header-search-form__submit.mobile.active {
    pointer-events: all;
    opacity: 1;
}
form.mbl-search-form{
    position: relative;
}