/**
* 01.typography
*/

html.is-noscroll body {
    position: fixed !important;
    width: 100%;
    overflow-y: auto;
}

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

body {
    font: 15px/1.5 Arial, sans-serif;
    color: #525252;
    min-width: 320px;
    min-height: 100vh;
}

::selection {
    background-color: #ff0000;
    color: #fff;
}

::-moz-selection{background-color:#7bae23;color:#fff;}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6{
    font-family:'Oswald', Arial, sans-serif;
    line-height:1;
    color:#444645;
    margin-top:0;
}

.h1, h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.h2, h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.h3, h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

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

.h5, h5 {
    font-size: 18px;
    margin-bottom: 15px;
}

.h6, h6 {
    font-size: 16px;
    margin-bottom: 15px;
}

.xlg-margin {
    min-height: 1px;
    margin-bottom: 50px;
}

.content-title {
    margin-bottom: 20px;
}

.title-bg {
    position: relative;
}

.title-bg:after {
    content: '';
    background: #dcdcdc;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -0.5px;
    display: block;
    width: 100%;
    height: 1px;
    z-index: 0;
}

.title {
    padding-left: 8px;
    border-left: 4px solid #444645;
    font-size: 42px;
    margin-bottom: 15px;
}

.title a {
    text-decoration: underline;
    font-size: 14px;
    margin-left: 5px;
    color: #ff0000;
}

.title-desc {
    font: 17px/1.5 "PT Sans", Arial, sans-serif;
}

.title-bg .title,
.title-bg .title,
.title-bg .title,
.title-bg .title,
.title-bg .title {
    position: relative;
    display: inline-block;
    left: 0;
    padding-right: 30px;
    z-index: 1;
    background: #fff;
    margin: 0 0 7.5px;
}

.title-bg + .title-desc {
    margin: 5px 0;
}

b, strong {
    font-weight: 700;
}

.link {
    display: inline;
    border: none;
    background: none;
    padding: 0;
    overflow: visible;
    cursor: pointer;
    line-height: inherit;
}

a,
.link {
    color: inherit;
    text-decoration: underline;
}

a:hover,
a.is-active,
.link:hover,
.link.is-active {
    color: #ff0000;
    text-decoration: none;
}

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

.btn {
    text-decoration: none;
    border-radius: 3px;
    font-size: 18px;
    line-height: 17px;
    border: 1px solid #ff0000 !important;
    color: #fff !important;
    padding: 13px 20px;
    background: #ff0000 !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
    font-weight: 600;
    text-transform: uppercase;
    outline: 0 !important;
}

.btn:hover,
.btn:active {
    border-color: #a3171d !important;
    background: #a3171d !important;
    color: #fff !important;
}

.btn-light,
.btn-outline-secondary {
    border-color: #444645 !important;
    background: #444645 !important;
    color: #fff !important;
}

.btn-light:hover,
.btn-light:hover:active,
.btn-outline-secondary:hover,
.btn-outline-secondary:hover:active {
    border-color: #ff0000 !important;
    background: #ff0000 !important;
    color: #fff !important;
}

.btn-sm {
    font-size: 13px;
    padding: 8px 16px;
}

.btn[disabled],
.btn.is-disabled {
    cursor: default;
    cursor: not-allowed;
}

.form-group label {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 2px;
    color: #777;
}

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

.form-control {
    box-shadow: none !important;
    line-height: 17px;
    height: 45px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0;
    color: #757575;
    font-size: 13px;
    padding: 13px;
    width: 100%;
}

.form-control-sm {
    font-size: 12px;
    padding: 6px 10px;
    height: 31px;
}

.form-control:focus {
    color: #757575;
    background-color: #fff;
    border-color: #e0e0e0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.form-control.error {
    border-color: #e62222;
}

.form-control.error,
.form-check__input.error ~ .form-check__text:before {
    border-color: #e62222;
}

input[type='checkbox'].error,
input[type='radio'].error {
    outline: 1px dotted #dc3545;
}

label.error {
    display: block;
    color: #dc3545;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: -16px;
}

.form-check {
    padding: 0;
    font-size: 13px;
    line-height: 17px;
}

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

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

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

.form-check__text {
    display: block;
    position: relative;
    padding: 0 0 0 23px;
    word-break: break-all;
    word-break: break-word;
}

.form-check__text small {
    color: #999;
    font-size: 0.8em;
}

.form-check__subtext {
    display: block;
    color: #999;
    font-size: 0.8em;
}

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

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

.form-check__text:before {
    width: 13px;
    height: 13px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background: #fff;
}

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

.form-check__input[type=checkbox] ~ .form-check__text:after {
    width: 7px;
    height: 4px;
    margin: 3px 0 0 3px;
    border: 2px solid #fff;
    border-width: 0 0 1px 1px;
    transform: rotate(-45deg);
}

.form-check__input[type=radio] ~ .form-check__text:after {
    width: 5px;
    height: 5px;
    margin: 4px 0 0 4px;
    background: #fff;
    border-radius: 50%;
}

.form-check__text:after {
    opacity: 0;
}

.form-check__input:checked ~ .form-check__text:before {
    border-color: #ff0000;
    background: #ff0000;
}

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

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

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

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

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

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

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

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

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

.form-check_btn {
    display: inline-block;
}

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

.form-check_btn .form-check__text {
    border: 1px solid #888888;
    padding: 6px 10px;
    border-radius: 2px;
}

.form-check_btn:hover .form-check__text {
    color: #ff0000;
    border-color: #ff0000;
}

.form-check_btn .form-check__input:checked ~ .form-check__text {
    color: #fff;
    border-color: #ff0000;
    background: #ff0000;
}

.color-red {
    color: red;
}

.text img {
    max-width: 100%;
    height: auto;
}

.date {
    font-size: 0.8em;
    color: #999;
}

.data-table {
    width: 100%;
}

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

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

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

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

/* ! 01.typography */


/**
* 02.components
*/

.popup-window {
    background: #fff;
    width: 500px;
    padding: 30px;
    overflow: visible;
    border-radius: 5px;
}

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

.popup-window__title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.fancybox-slide--html .fancybox-close-small {
    color: #212529;
}

.close-btn {
    display: inline-block;
    vertical-align: middle;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    color: #212529;
    font-size: 20px;
    text-align: center;
    line-height: 30px;
}

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

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

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

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

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

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

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

.slick-arrow:hover {
    color: #ff0000;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

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

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

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

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

.tabs {

}

.tabs__nav {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

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

.tabs__nav-link {
    display: block;
    text-decoration: none;
    background: #575a59;
    color: #fff;
    text-transform: uppercase;
    padding: 4px 20px;
    font: 400 14px/20px 'PT Sans', sans-serif;
    transition: 0.15s ease-in-out;
}

.tabs__nav-link:hover,
.tabs__nav-link.is-active {
    background: #ff0000;
    color: #fff;
}

.tabs__content {

}

.tabs__item {
    display: none;
}

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

.tabs__item:after {
    content: '';
    display: table;
    clear: both;
}

.breadcrumbs-wrapper {
    background: #ff0000;
    color: #fff;
}

.breadcrumbs {
    list-style: none;
    font: 13px/18px "Oswald", Arial, sans-serif;
}

.breadcrumbs-wrapper,
.breadcrumbs {
    margin: -15px 0 50px;
    padding: 13px 0;
}

.breadcrumbs-wrapper .breadcrumbs {
    margin: 0;
    padding: 0;
}

.breadcrumbs__item {
    display: inline-block;
}

.breadcrumbs__item:after{
    content: '>';
    margin: 0 3px;
}

.breadcrumbs__item:last-child:after{
    display: none;
}

.breadcrumbs__link {
    color: inherit !important;
    text-decoration: none;
}

.rating {
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
    position: relative;
    width: 80px;
    height: 15px;
}

.rating__star {
    display: block;
    border: none;
    background: none;
    padding: 0;
    width: 16px;
    height: 15px;
    position: relative;
    z-index: 1;
    text-indent: -9999px;
    cursor: pointer;
    outline: none !important;
}

.rating__bg,
.rating__bg span {
    background: url('../images/rating.svg') 0 0 repeat-x;
    background-size: 16px 30px;
}

.rating__bg {
    position: absolute;
    left: 0;
    top: 0;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
}

.rating__bg span {
    background-position: 0 -15px;
}

.rating_lg {
    width: 160px;
    height: 30px;
}

.rating_lg .rating__star {
    width: 32px;
    height: 30px;
}

.rating_lg .rating__bg,
.rating_lg .rating__bg span {
    background-size: 32px 60px;
}

.rating_lg .rating__bg span {
    background-position: 0 -30px;
}

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

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

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

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

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

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

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

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

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

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

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

.comment-count {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    text-align: center;
    position: relative;
    font-size: 9px;
    line-height: 1;
    text-decoration: none;
    padding-top: 4px;
}

.comment-count i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    opacity: 0.3;
}

a.comment-count:hover i {
    opacity: 0.6;
}

.meta {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: baseline;
    align-items: baseline;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 12px;
    line-height: 16px;
}

.meta__item {
    margin-right: 15px;
}

.meta a {
    text-decoration: none;
}

.meta .rating {
    top: -2px;
}

.compare-btn,
.favorite-btn,
.remove-btn {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 18px;
    outline: none !important;
}

.compare-btn:hover,
.favorite-btn:hover {
    color: #ff0000;
}

.remove-btn:hover {
    color: red;
}

.compare-btn.is-active,
.favorite-btn.is-active {
    color: red;
}

.favorite-btn.is-active i {
    font-weight: 900;
}

.sticker {
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    padding: 4px 8px;
    color: #ff0000;
    border: 1px solid #ff0000;
    background-color: #fff;
    font-size: 11px;
    line-height: 12px;
    border-radius: 3px;
}

.sticker.online {
	background: #ff0000;
	color: #FFF;
}

.price {
    line-height: 1.3;
}

.price__old {
    display: inline;
    text-decoration: line-through;
    color: #999;
    font-size: 17px;
}

.price__discount {
    display: inline-block;
    vertical-align: super;
    text-decoration: none;
    color: #fff;
    background-color: #ff0000;
    padding: 2px 3px;
    font-size: 9px;
    line-height: 10px;
    border-radius: 2px;
    margin-left: 3px;
}

.price__value {
    display: block;
    font-weight: bold;
    font-size: 26px;
}

.price_lg .price__old {
    font-size: 24px;
}

.price_lg .price__discount {
    padding: 3px 6px;
    font-size: 11px;
    line-height: 12px;
    border-radius: 3px;
    margin-left: 5px;
}

.price_lg .price__value {
    font-size: 32px;
}

.variants {

}

.variants__title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.variants__thumbs {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 7px;
}

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

.variants__thumbs-item.is-selected {
    border-color: #ff0000;
    box-shadow: 0 0 0 1px #ff0000, 0 0 0 1px #fff inset;
}

.basket-btn {
    padding: 10px 15px;
    font-size: 16px;
    position: relative;
}

.basket-btn__tooltip {
    position: absolute;
}

.basket-btn i {
    font-size: 24px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.basket-btn.is-active i:before {
    content: "\f217";
}

.basket-btn__text {
    margin-left: 10px;
}

.loading-btn .spinner-border-sm {
    display: none;
    width: 0.8rem;
    height: 0.8rem;
    border-width: .1em;
    position: relative;
    top: -0.2rem;
    margin-right: 0.3rem;
}

.loading-btn.is-loading .spinner-border-sm {
    display: inline-block;
}

.social-list {
    font-size: 20px;
}

.payment-list {
    font-size: 28px;
}

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

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

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

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

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

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

.pagination__link {
    color: #999999;
    padding: 0 5px;
    margin: 0 5px;
}

.pagination__link:hover,
.pagination__link.is-active {
    text-decoration: none;
    color: #000;
}

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

.pagination__arrow_prev {
    margin-right: 4px;
}

.pagination__arrow_next {
    margin-left: 4px;
}

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

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

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

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

.page-text {
    margin-top: 40px;
}

.exceprt {
    margin-bottom: 30px;
}

.exceprt__image {
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 1rem;
}

.exceprt__image:before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.exceprt__title {
    margin: 0 0 1rem;
}

.exceprt__text {
    margin-bottom: 1rem;
}

.exceprt__date {
    font-size: 0.8em;
    color: #999;
}

.article-pagination {
    /*display: flex;*/
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid #e9e9e9;
    margin: 20px 0;
    padding-top: 20px;
    max-width: 800px;
}

.article-pagination a {
    text-decoration: none;
}

.article-pagination i {
    font-size: 18px;
    position: relative;
    top: 2px;
}

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

.payment-type {
    /*display: none;*/
}

.captcha {

}

.captcha img {
    display: block;
}

/* ! 02.components */


/**
* 03.header
*/

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

.header {
    flex-shrink: 0;
    border-top: 4px solid #ff0000;
}

.header__content {
    font-size: 14px;
    line-height: 18px;
    color: #7f7d74;
}

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

.header__content li {
    margin-bottom: 2px;
}

.header__content a {
    text-decoration: none;
}

.header__content i {
    color: #ff0000;
    font-size: 1.2em;
    position: relative;
    top: 0.15em;
}

.header__phone {
    background: url(../images/icon-headphones.png) left center no-repeat;
    padding-left: 40px;
}

.header__phone li img {
    position: relative;
    top: -2px;
}

.header__phone,
.header__contacts {
    min-width: 210px;
}

.header__content-inner {

}

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

.header__nav {

}

.nav {

}

.nav__item {
    margin-right: 10px;
}

.nav__link {
    text-decoration: none;
}

.header__contacts {

}

.top-contacts {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.top-contacts__item {
    margin-left: 20px;
}

.top-contacts__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.top-contacts__list-item {

}

.top-contacts__list-item:before {
    content: '|';
    opacity: 0.5;
    margin: 0 7px 0 12px;
    font-size: 0.8em;
    position: relative;
    top: -1px;
}

.top-contacts__list-item:first-child:before {
    display: none;
}

.top-contacts__link {
    text-decoration: none;
}

.header__middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header__logo {
    margin: 0 auto;
}

.logo {

}

.logo__img {
    width: 255px;
}

.header__search {
display: flex;
}

.header__search > * {
    margin-left: 5px;
}

.header__search-wrapper {
    position: relative;
    padding-right: 35px;
    width: 205px;
}

.header__search-input {
    height: 34px;
    padding: 7px 15px;
    font-size: 13px;
    line-height: 18px;
    border-color: #e0e0e0;
}

.header__search-input::placeholder {
    font-style: italic;
}

.header__search-btn {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    border-radius: 0;
    height: 34px;
    width: 34px;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

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

.header__user {
    margin-left: 20px;
}

.user-field {

}

.user-field__icon {
    display: inline;
    font-size: 16px;
    margin-right: 5px;
}

.user-field__content {
    display: inline;
}

.user-field__item {
    display: inline;
}

.user-field__link {
    text-decoration: none;
}

.user-field__item:after{
    content: '|';
    opacity: 0.5;
    margin: 0 5px;
    font-size: 0.8em;
    position: relative;
    top: -1px;
}

.user-field__item:last-child:after{
    display: none;
}

.header__menu-line {
    background: #fff;
    position: relative;
    box-shadow: 0 -3px 7px -2px rgba(40, 53, 55, 0.3);
    z-index: 1001;
}

.header__menu-line.is_stuck {
    box-shadow: 0 1px 4px 2px rgba(90, 90, 90, 0.5);
}

.header__menu-line-inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    height: 50px;
}

.header__menu {

}

.menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    font: 400 15px/21px Arial, sans-serif;
}

.menu__item {

}

.menu__item:nth-child(2) {
    display: none !important;
}

.menu__row {
    position: relative;
}

.menu__toggle-btn {
    display: none;
}

.menu__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    text-align: center;
    padding: 0 10px;
    height: 50px;
    cursor: pointer;
    font: 600 14px 'PT Sans', sans-serif;
    color: #494940;
    text-transform: uppercase;
}

.menu__item:hover .menu__link {
    color: #ff0000;
}

@media (min-width: 992px) {
    .menu__item:first-child .menu__link {
        padding-left: 0;
    }
}

.menu__icon {
    font-size: 20px;
    margin-right: 10px;
}

.menu__text {
    -ms-flex-preferred-size: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.menu__link_special .menu__text {
    border: 1px dashed;
    color: #ff0000!important;
    font-size: 18px !important;
    padding: 5px 20px !important;
    transition: 0.3s ease-in-out;
}

.menu__link_special:hover .menu__text {
    background: #ff0000 !important;
    color: #fff!important;
}

.menu__dropdown {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    max-height: calc(100vh - 50px);
    overflow-y: auto;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.15s ease-in-out;
    transition-delay: 0.4s;
    border-top: 3px solid #ff0000;
    background: #fafafa;
    box-shadow: 0 1px 4px rgba(0,0,0, 0.25);
    padding: 25px 20px;
}

.menu__item:hover .menu__dropdown {
    opacity: 1;
    visibility: visible;
}

.menu__group {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 10px;
}

.menu__group-title {
    font: 700 14px/20px "Gudea", Arial, sans-serif;
    text-transform: uppercase;
    margin: 15px 0;
}

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

.menu__group-content {

}

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

.menu__group-item {
    padding: 4px 0 2px 16px;
    position: relative;
}

.menu__group-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    background: #ff0000;
}

.menu__group-link {

}

.menu__group-more {
    text-decoration: none;
    font-weight: bold;
    margin-top: 2px;
    display: inline-block;
    font-size: 12px;
}

.header__mob-content {
    display: none;
}

.header__control {
    display: none;
}

.control {
    display: -ms-flexbox;
    display: flex;
    border-right: 1px solid rgba(0,0,0,0.05);
}

.control__btn {
    display: inline-flex;
    vertical-align: middle;
    position: relative;
    padding: 0;
    border-radius: 0;
    height: 34px;
    width: 34px;
    box-shadow: none !important;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.control__btn-count {
position: absolute;
    right: -4px;
    top: -4px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    color: #ff0000;
    line-height: 14px;
    text-align: center;
    font-size: 8px;
    border-radius: 50%;
    border: 1px solid #ff0000;
}

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

/* ! 03.header */

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

/**
* 04.footer
*/

.footer {
    background: #444645;
    color: #fff;
    border-top: 45px solid #ff0000;
    font-size: 16px;
    line-height: 1.3;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.footer a {
    text-decoration: none;
}

.footer__content {
    padding: 45px 0 20px;
}

.footer__content-inner {

}

.footer__col {
    margin-bottom: 15px;
}

.footer__nav {

}

.footer__nav-title {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.footer__link {

}

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

.footer__nav-list.column-2 {
    column-count: 2;
    column-gap: 30px;
}

.footer__nav-item {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    padding: 0 0 10px;
}

.footer__contacts {

}

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

.footer__contacts li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer__contacts i {
    margin-right: 10px;
}

.footer__section {
    margin-bottom: 15px;
}

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

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

.footer__section-title {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.footer__callback-btn {

}

.footer__bottom {
    background: #373737;
    color: #ccc;
    padding: 10px 0;
    border-top: 1px solid #383938;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font: 13px/18px Arial, sans-serif;
}

.footer__bottom p {
    margin: 5px 0;
}

.footer__bottom-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer__copyright {

}

.footer__dev {
    margin-left: auto;
}

.up-btn {
    position: fixed;
    bottom: 15px;
    left: 15px;
    display: inline-block;
    visibility: hidden;
    cursor: pointer;
    z-index: 999;
    border-radius: 3px;
    opacity: 0;
    color: #fff;
    background: #ff0000;
    border: 1px solid #ff0000;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    line-height: 1;
    padding: 5px 9.5px;
    text-align: center;
    outline: none !important;
}

.up-btn:hover {
    background-color:#ff0000;
    border-color:#ffffff;
}

.up-btn.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ! 04.footer */


/**
* 05.main-slider
*/

.main-slider-wrapper {
    position: relative;
    margin-top: -15px;
    margin-bottom: 10px;
}

.main-slider-wrapper._mob {
    display: none;
}

.main-slider-wrapper:before {
    content: '';
    display: block;
    padding-top: 32.98%;
    padding-top: calc(376 * 100% / 1140);
}

.main-slider {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

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

.main-slider .slick-arrow {
    margin: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.15s ease-in-out;
}

.main-slider:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}

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

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

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

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

.main-slider__image-text {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    color: #fff;
    text-decoration: none;
    font-size: 36px;
    line-height: 1.2;
    padding: 0 50px;
    text-align: center;
}

.main-slider__image-text-content {
    display: block;
    max-width: 580px;
}

/* ! 05.main-slider */


/**
* 06.main-catalog
*/

.main-catalog {
    margin: 0 -5px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}

.main-catalog__grid {
    flex: 0 0 33.33%;
    width: 33.33%;
    padding: 0 5px 10px;
}

.main-catalog__item {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: center;
    padding: 15px 20px;
    height: 250px;
    position: relative;
    color: inherit;
    text-decoration: none;
    border: 1px solid #dedede;
    background-color: #f1f1f1;
    z-index: 1;
}

.main-catalog__item:hover {
    color: inherit;
}

.main-catalog__item:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    outline: 1px solid #fff;
    outline-offset: -5px;
}

.main-catalog__item:hover:before {
    opacity: 1;
    visibility: visible;
}

.main-catalog__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: left top;
    background-repeat: no-repeat;
    z-index: 1;
}

.main-catalog__title {
    display: block;
    position: relative;
    font-size: 28px;
    line-height: 30px;
    color: #494969;
    text-align: right;
    z-index: 2;
}

/* ! 06.main-catalog */


/**
* 07.item
*/

.item {
    width: 100%;
    position: relative;
    padding: 10px;
    background: #fff;
    border: 1px solid transparent;
    height: 335px;
    text-align: center;
    color: #646464;
}

.item:hover {
    border-color: #e8e8e8;
    box-shadow: 0 0 1px rgba(232, 232, 232, 0.15);
    color: #ff0000;
}

.item__control {
    position: absolute;
    right: 0;
    top: 0;
}

.item__stickers {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    text-align: left;
    padding: 9px 10px 0;
}

.item__image-field {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    max-width: 222px;
    height: 170px;
}

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

.item__title {
    font: 400 17px/24px 'PT Sans', sans-serif;
    margin: 0 0 15px;
    font-weight: 500;
}

.item__title a {
    text-decoration: underline;
}

.item__btn {
    opacity: 0;
}

.item:hover .item__btn {
    opacity: 1;
}

.item__price {
    position: absolute;
    right: 1px;
    top: 100px;
    font-size: 18px;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #ff0000;
    font: 700 16px/20px "Gudea", Arial, sans-serif;
    color: #fff;
}

.item__price-old {
    color: #3a3a3a;
    text-decoration: line-through;
}

.item__price-old + .item__price-value {
    text-decoration: underline;
}

/* ! 07.item */


/**
* 08.catalog-slider
*/

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

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

.catalog-slider {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.catalog-slider__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.catalog-slider__item:nth-child(4) ~ .catalog-slider__item {
    display: none;
}

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

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

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

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

.slick-slide .catalog-slider__item,
.slick-slide .catalog__item {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
}

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

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

.catalog-slider .slick-next {

}

/* ! 08.catalog-slider */


/**
* 09.catalog
*/

.catalog-section {
    display: -ms-flexbox;
    display: flex;
    margin: 0 -9px 40px;
}

.catalog-section__aside {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 9px;
}

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

.catalog-section__aside-list li {
    margin-bottom: 5px;
}

.catalog-section__aside-list a {
    text-decoration: none;
}

.catalog-section__main {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 9px;
}

.catalog-section__aside + .catalog-section__main {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.catalog-section__header {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 20px;
}

.catalog-section__header-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.catalog-section__filter-btn {
    display: none;
}

.catalog-section__sort {

}

.catalog-section__sort_right {
    margin-left: auto;
    text-align: right;
}

.catalog-section__sort-item {
    margin-right: 10px;
}

.catalog-section__sort-item:last-child {
    margin-right: 0;
}

.catalog-section__sort-link {
    text-decoration: none;
}

.catalog-section__sort-link.is-active {
    color: #ff0000;
    text-decoration: none;
}

.catalog-section__content {

}

.catalog {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.catalog__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.catalog-section__aside + .catalog-section__main .catalog__item,
.search__result .catalog__item {
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

/* ! 09.catalog */


/**
* 10.filter
*/

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

.filter {
    background: #fff;
    border: 1px solid #e9e9e9;
}

.filter__tags {
    display: none;
    border-bottom: 1px solid #f4f4f4;
    padding: 10px;
}

.filter__tags.is-visible {
    display: block;
}

.filter__tags-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.filter__tags-content {
    line-height: 14px;
    margin-bottom: 10px;
}

.filter__tag {
    display: inline-block;
    cursor: pointer;
    background: #f5f5f5;
    border: 1px solid #e9e9e9;
    font-size: 11px;
    line-height: 14px;
    padding: 2px 5px;
    margin: 0 2px 2px 0;
    border-radius: 2px;
}

.filter__tag:hover .filter__tag-text {
    text-decoration: line-through;
}

.filter__tag-remove {
    margin-left: 5px;
    opacity: 0.5;
    position: relative;
    top: 1px;
}

.filter__reset-btn {
    width: 100%;
    font-size: 14px;
    padding: 2px 0;
}

.filter__section {
    border-bottom: 1px solid #f4f4f4;
}

.filter__section:last-child {
    border-bottom: none;
}

.filter__section-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    margin: 0;
    cursor: pointer;
    padding: 10px 25px 10px 10px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.filter__section-title:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    right: 11px;
    top: 50%;
    border-style: solid;
    border-width: 0 0 1px 1px;
    transform: translateY(-5px) rotate(-45deg);
    border-color: #ff0000;
}

.filter__section.is-open .filter__section-title:after {
    transform: translateY(-1px) rotate(135deg);
}

.filter__section-content {
    display: none;
    padding: 10px 10px 5px;
}

.filter__section-title + .filter__section-content {
    padding-top: 0;
}

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

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

.filter .form-check.is-hidden:not(.is-visible) {
    display: none;
}

.filter .form-check a {
    text-decoration: none;
}

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

.filter .js-filter-range-slider {
    margin: 5px 8px;
}

.filter__expand-btn {
    text-decoration: none;
    outline: none !important;
    font-size: 13px;
    border-bottom: 1px dashed;
    margin-left: 23px;
    display: none;
}

.filter__section-content:not(.is-expand) .form-check:nth-child(5) ~ .form-check {
    display: none;
}

.filter__section-content .form-check:nth-child(6) ~ .filter__expand-btn {
    display: inline-block;
}

.filter__section-content.is-expand .filter__expand-btn > span {
    display: none;
}

.filter__section-content.is-expand .filter__expand-btn:before {
    content: attr(data-alt-text);
}

/* ! 10.filter */


/**
* 11.product
*/

.product {
    margin-bottom: 40px;
}

.product__header {
    margin-bottom: 10px;
}

.product__meta {
    position: relative;
}

.product__meta .alert {
    position: absolute;
    margin: 0;
    left: 0;
    width: 100%;
    max-width: 300px;
    bottom: 100%;
    margin-bottom: 5px;
}

.product__main {
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px 40px;
}

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

.product__gallery {
    position: relative;
    max-width: 500px;
}

.product__gallery-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.product__control {
    position: absolute;
    right: 5px;
    top: 6px;
    z-index: 101;
}

.product__stickers {
    position: absolute;
    left: 5px;
    max-width: 100%;
    top: 6px;
    z-index: 100;
}

.product__stickers .sticker {
    margin: 2px 0 2px 4px;
}

.product__control {
    margin-left: auto;
}

.product-gallery {

}

.product-gallery__slider {

}

.product-gallery__slider .slick-arrow {
    top: 100%;
    margin-top: 16px;
}

.product-gallery__slider,
.product-gallery__thumbs-item {
    border: 1px solid #e9e9e9;
    background: #fff;
    border-radius: 5px;
}

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

.product-gallery__item {
    height: 280px;
}

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

.product-gallery__thumbs-item {
    height: 50px;
    margin: 0 5px;
    cursor: pointer;
}

.slick-current .product-gallery__thumbs-item {
    border-color: #ff0000;
}

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

.product-gallery__item-inner {
    padding: 30px;
}

.product-gallery__thumbs-item-inner {
    padding: 5px;
}

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

.product-gallery__thumbs {
    margin-top: 10px;
    padding: 0 40px;
}

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

.product__title {
    font: 700 25px/1 'PT Sans', sans-serif;
    color: #646464;
    margin-bottom: 20px;
}

.product__data {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #777;
}

.product__data li {
    margin-bottom: 8px;
}

.product__data:not(.is-open) li:nth-child(5) ~ li {
    display: none;
}

.product__data strong {
    font-weight: bold;
    margin-right: 5px;
}

.product__data-toggle {
    cursor: pointer;
    font-weight: bold;
    display: none;
}

.product__data li:nth-child(6) ~ .product__data-toggle {
    display: block !important;
}

.product__data:not(.is-open) .product__data-toggle span:nth-child(2) {
    display: none;
}

.product__data.is-open .product__data-toggle span:nth-child(1) {
    display: none;
}

.product__content hr {
    margin: 24px 0;
}

.product__price-row {

}

.product__count {
    text-align: center;
    padding-right: 0;
    padding-left: 17px;
    font-weight: bold;
    font-size: 25px;
    width: 138px;
}

.product__price {
    position: absolute;
    right: -10px;
    top: 157px;
    width: 135px;
    height: 135px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #ff0000;
    font: 700 24px/30px "Gudea", Arial, sans-serif;
    color: #fff;
    z-index: 101;
}

.product__price-old {
    color: #3a3a3a;
    text-decoration: line-through;
}

.product__price-old + .product__price-value {
    text-decoration: underline;
}

.product__count-field {
    max-width: 150px;
    margin-left: auto;
}

.product__count-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product__variants {
    margin-bottom: 24px;
}

.product__btn-field {
    margin-bottom: 24px;
}

/* ! 11.product */


/**
* 12.reviews
*/

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

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

.add-review__open-btn {

}

.add-review__content {
    display: none;
}

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

.reviews {

}

.reviews__content {

}

.review {

}

.review__main {
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #e9e9e9;
    padding-top: 30px;
    padding-bottom: 30px;
}

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

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

.review__rating {
    margin-bottom: 5px;
}

.review__date {
    font-size: 12px;
    color: #999;
}

.review__content {

}

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

.review__replay {
    margin-left: 150px;
}

.reviews__footer {
    border-top: 1px solid #e9e9e9;
    padding-top: 20px;
    text-align: center;
}

.reviews__more-btn {

}

/* ! 12.reviews */


/**
* 13.compare
*/

.compare {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    visibility: hidden;
}

.compare.is-visible {
    visibility: visible;
}

.compare__sidebar {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.compare__sidebar-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 5px 10px;
}

.compare__content {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.compare__list {

}

.compare__list:after {
    content: '';
    display: table;
    clear: both;
}

.compare__list .slick-track {
    margin: 0;
}

.compare__item {
    float: left;
    width: 33.33%;
}

.compare__item-header {
    display: -ms-flexbox;
    display: flex;
    padding: 0 5px 20px;
}

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

.compare__data-row {
    padding: 2px 5px;
    background: #fff;
}

.compare__data-row.is-active {
    background: #f5f5f5;
}

.compare__data-text {

}

.compare .slick-arrow {

}

.compare .slick-arrow {
    top: -55px;
    margin-top: 0;
    left: auto;
    right: -10px;
}

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

/* ! 13.compare */


/**
* 14.basket
*/

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

.basket__cell {
    padding: 10px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #e9e9e9;
    text-align: center;
}

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

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

.basket__cell_head {
    font-weight: 500;
}

.basket__cell_image {
    width: 115px;
}

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

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

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

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

.basket__title a {
    text-decoration: none;
}

.basket__subtitle {
    color: #999;
}

.basket__variants {
    width: 0;
    min-width: 100%;
    margin-top: 10px;
}

.basket__variants .variants__title {
    font-size: 14px;
    margin-bottom: 5px;
}

.basket__variants .form-check {
    margin-top: 0;
}

.basket__price-old {
    white-space: nowrap;
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    line-height: 1.2;
}

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

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

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

.basket-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.basket-footer__total {
    margin-right: 20px;
}

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

.basket-footer__total-info {
    color: #999;
}

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

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

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

.basket-footer__button {

}

/* ! 14.basket */


/**
* 15.order
*/

.order {
    margin-bottom: 40px;
}

.order__title {
    margin: 0 0 40px;
}

.order__form {

}

.order__content {

}

.order__step {

}

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

.order__delivery-type {

}

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

.order__delivery-type-section {

}

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

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

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

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

.order__total {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    padding: 1rem 0;
    margin: 1rem 0;
}

.order__total-title {

}

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

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

.order__btn {

}

/* ! 15.order */


/**
* 16.account
*/

.account {
    margin-bottom: 40px;
}

.account__title {
    margin-bottom: 15px;
}

/* ! 16.account */


/**
* 17.history
*/

.history {
    margin-bottom: 40px;
}

.history__title {
    margin-bottom: 15px;
}

.history__list {

}

.history__item {
    border: 1px solid #e9e9e9;
    margin-bottom: 5px;
}

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

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

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

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

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

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

.history__item-date {
    width: 18%;
}

.history__item-status {

}

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

.history__item-content {
    display: none;
    border-top: 1px solid #e9e9e9;
    padding: 0 15px;
}

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

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

/* ! 17.history */


/**
* 18.search
*/

.search {
    position: fixed;
    z-index: 10001;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    padding-top: 84px;
    display: none;
}

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

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

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

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

.search__form {

}

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

.search__input {

}

.search__btn {

}

.search__clear {

}

.search__result {

}

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

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

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

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

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

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

/* ! 18.search */

.brand-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.brand-box img {
    max-height: 40px;
    margin-bottom: 20px;
}

.small-bottom-border {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #ff0000;
    position: absolute;
    left: 50%;
    top: 100%;
    margin-top: 10px;
    margin-left: -15px;
}

.services-box{
    text-align:center;
    background-color:transparent;
    border:1px solid transparent;
    padding:20px 10px;
    transition:all 0.4s ease-in;
}

.services-box h3{
    font:700 16px/1 "Pt Sans", sans-serif;
    color:#474646;
    position:relative;
    margin-bottom:30px;
}

.services-box p{
    font-size:14px;
    color:#6f6f6f;
    line-height:17px;
}

.services-box:hover{
    text-align:center;
    background-color:#fafafa;
    border:1px solid #e0e0e0;
    box-shadow:inset 0 1px 1px #fff;
}

.service-icon{
    display:block;
    width:124px;
    height:124px;
    background-image:url('../images/aboutus-icons.png');
    background-repeat:no-repeat;
    margin:0 auto;
    margin-bottom:20px;
}

.service-icon.service-icon-responsive{background-position:0 0;}
.service-icon.service-icon-panel{background-position:-124px 0;}
.service-icon.service-icon-sliders{background-position:-248px 0;}
.service-icon.service-icon-support{background-position:-372px 0;}
.services-box:hover .service-icon.service-icon-responsive{background-position:0 -124px;}
.services-box:hover .service-icon.service-icon-panel{background-position:-124px -124px;}
.services-box:hover .service-icon.service-icon-sliders{background-position:-248px -124px;}
.services-box:hover .service-icon.service-icon-support{background-position:-372px -124px;}

.menu-popup .header__control {
    display: none;
}

@media (min-width: 768px) {
    .menu-popup .header__phone,
    .menu-popup .header__contacts {
        display: none;
    }
}

.table-description {
    width: 100%;
    font-size: 15px;
    color: rgba(31, 33, 38, .6);
}

.table-description tr:nth-child(odd) {
    background-color: rgb(245, 245, 245);
}

.table-description td {
    padding: 10px 20px;
}

.table-description a {
    color: #000;
    text-decoration: none;
}

.table-description a:hover {
    color: #E87802;
    text-decoration: none;
}

#specifications tr,
#specifications td {
    border: 1px solid;
    padding: 5px;
}

.main-catalog-simple {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	padding: 60px 0;
}

.simple-cat {
	height: 190px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	text-decoration: none;
	border: 1px solid transparent;
	padding: 20px;
}

.simple-cat:hover {
	text-decoration: none;
	background: #FAFAFA;
	border: 1px solid #DCDCDC;
	color: inherit;
}

.simple-cat-image {
	width: 65px;
	height: 65px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 12px;
}

.simple-cat:before {
	content: '';
	position: absolute;
	top: 15%;
	left: 28%;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #FF8352;
	opacity: 0.1;
}

.simple-cat img {
	display: block;
}

.simple-cat span {
	display: block;
	height: 42px;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 21px;
}

.footer-btn-wrapper {
    display: none;
}

@media (min-width: 768px) {
    .expand-block__btn {
        display: none !important;
    }
}