f
/*========================================
    FONTS
========================================*/


@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/subset-OpenSans-Italic.eot');
    src: url('../fonts/subset-OpenSans-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/subset-OpenSans-Italic.woff') format('woff'),
        url('../fonts/subset-OpenSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/subset-OpenSans.eot');
    src: url('../fonts/subset-OpenSans.eot?#iefix') format('embedded-opentype'),
        url('../fonts/subset-OpenSans.woff') format('woff'),
        url('../fonts/subset-OpenSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/subset-OpenSans-Bold.eot');
    src: url('../fonts/subset-OpenSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/subset-OpenSans-Bold.woff') format('woff'),
        url('../fonts/subset-OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/subset-OpenSans-Light.eot');
    src: url('../fonts/subset-OpenSans-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/subset-OpenSans-Light.woff') format('woff'),
        url('../fonts/subset-OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/subset-GothamPro-Light.eot');
    src: url('../fonts/subset-GothamPro-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/subset-GothamPro-Light.woff') format('woff'),
        url('../fonts/subset-GothamPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/*========================================
    GLOBAL STYLES
========================================*/

html {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-size: 10px;
    line-height: 1.15;
}

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

body {
    width: 100%;
    min-width: 320px;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'Open Sans';
    font-weight: normal;
    font-style: normal;
    line-height: 1.15;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

input {
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: initial;
}

.btn {
    display: block;
    height: 40px;
    width: 200px;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    background-color: #952C21;
    cursor: pointer;
    transition: all .3s linear;
}

.filter .btn {
    border-radius: 0px;
    line-height: 40px;
}

.filter .filter__btn {
    margin-top: 5px;
    margin-bottom: 10px;
    padding: 0;
    outline: none;
}

.btn:hover {
    background-color: #4a4a4a;
    color: #FFFFFF;
}

.filter .filter__btn:hover {
    color: white;
    outline: none;
}

.btn:disabled,
.btn:disabled:hover {
    background-color: #7D2F24;
    color: rgba(255, 255, 255, .2);
    cursor: default;
}

/*========================================
    HEADER
========================================*/

header {
    position: relative;
}

/* 
    MOBILE-MENU
----------------------------------------------------------------*/

.mobile-menu {
    position: absolute;
    top: 0;
    left: -400px;
    width: 320px;
    padding: 50px 0 30px;
    background: #fff;
    box-shadow: 0 5px 40px rgba(0, 0, 0, .5);
    transition: left .3s linear;
    z-index: 1000;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu__item {
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.mobile-menu__item a {
    display: block;
    padding: 12px 0 12px 15px;
    color: #000000;
    font-size: 18px;
    background: url('../img/arr-right.png') 95% center no-repeat;
    background-size: 3.5px 10px;
}

.mobile-menu__item a span {
    display: block;
    font-size: 14px;
    line-height: 2;
}

/* 
    HEADER-TOP
----------------------------------------------------------------*/

.header-top {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.header-top__row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: center;
}

.header-top__location {
    width: 16%;
    position: relative;
}

.header-top__location a {
    display: inline-block;
    color: #000000;
    font-size: 14px;
    line-height: 18px;
}

.header-top__location a span {
    margin-right: 10px;
    border-bottom: 2px solid rgba(0, 0, 0, .2);
    transition: all .3s linear;
}

.header-top__location a:hover span {
    border-bottom: 2px solid rgba(0, 0, 0, 1);
}

.header-top__login {
    width: 30%;
    text-align: right;
}

.header-top__login a {
    display: inline-block;
    padding: 3px 0 3px 32px;
    color: #000000;
    font-size: 14px;
    line-height: 18px;
    background: url('../img/lock-closed-icon.svg') left center no-repeat;
    background-size: 22px;
}

.header-top__login.open a {
    background: url('../img/lock-opened-icon.svg') left center no-repeat;
    background-size: 22px;
}

.header-top__login a span {
    border-bottom: 2px solid rgba(0, 0, 0, .2);
    transition: all .3s linear;
}

.header-top__login a:hover span {
    border-bottom: 2px solid rgba(0, 0, 0, 1);
}

.header-top__location #question_city {
    position: absolute;
    top: 30px;
    z-index: 2;
    padding: 20px;
    width: 325px;
    background-color: #FFFFFF;
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.25);
}

.header-top__location p {
    color: #000000;
    font-family: "Open Sans";
    font-size: 15px;
    line-height: 22px;
    margin: 0 0 20px;
}

.header-top__location .unknown-city {
    width: 335px;
}

.header-top__location .unknown-city .js-modal-show {
    height: 34px;
    width: 200px;
    background-color: #952C21;
    color: #FFFFFF;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: bold;
    line-height: 34px;
    text-align: center;
    padding: 0;
    cursor: pointer;
    transition: all .3s linear;
}

.header-top__location .unknown-city .js-modal-show:hover {
    background-color: #4a4a4a;
    color: #FFFFFF;
}

.header-top__location .unknown-city #quest_close {
    height: 20px;
    color: #952C21;
    font-family: "Open Sans";
    font-size: 15px;
    line-height: 20px;
    padding: 8px;
    margin: 0 12px;
    cursor: pointer;
    box-sizing: initial;
    transition: all .3s linear;
    min-width: 40px;
}

.header-top__location .unknown-city #quest_close:hover {
    color: #4a4a4a;
}

body .header-top__location .your-city p {
    font-size: 16px;
}

.header-top__location .your-city {
    width: 335px;
}

.header-top__location .your-city #quest_close {
    height: 40px;
    width: 83px;
    background-color: #952C21;
    color: #FFFFFF;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: bold;
    line-height: 38px;
    text-align: center;
    padding: 0;
    cursor: pointer;
    transition: all .3s linear;
}

.header-top__location .your-city #quest_close:hover {
    background-color: #4a4a4a;
    color: #FFFFFF;
}

.header-top__location .your-city .js-modal-show:hover {
    color: #4a4a4a;
}

.header-top__location .your-city .js-modal-show {
    height: 24px;
    width: 168px;
    color: #952C21;
    font-family: "Open Sans";
    font-size: 14px;
    line-height: 24px;
    padding: 8px;
    margin: 0 12px;
    cursor: pointer;
    box-sizing: initial;
    text-align: center;
    transition: all .3s linear;
}

/* 
    MAIN-MENU
----------------------------------------------------------------*/

.main-menu {
    width: 70%;
}

.main-menu__item {
    display: inline-block;
    margin: 0 22px;
}

.main-menu__item a {
    display: inline-block;
    border-bottom: 2px solid rgba(149, 44, 33, .2);
    color: #952C21;
    font-size: 14px;
    line-height: 18px;
    transition: all .3s linear;
}

.main-menu__item a:hover {
    border-bottom: 2px solid rgba(149, 44, 33, 1);
}

/* 
    HEADERBAR
----------------------------------------------------------------*/

.headerbar {
    position: relative;
    padding: 15px 0 25px;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.headerbar__tel,
.headerbar__tel:hover {
    display: block;
    margin-bottom: 8px;
    color: #000000;
    font-size: 25px;
    font-weight: bold;
}

.headerbar__callback {
    display: inline-block;
    border-bottom: 2px solid rgba(0, 0, 0, .2);
    color: #000000;
    font-size: 16px;
    line-height: 18px;
    transition: all .3s linear;
}

.headerbar__callback:hover {
    border-bottom: 2px solid rgba(0, 0, 0, 1);
}

.headerbar__basket {
    padding-left: 45px;
    background: url('../img/cart-full-icon.svg') 12px 2px no-repeat;
    background-size: 24px;
}

.headerbar__basket.empty {
    background: url('../img/cart-empty-icon.svg') left 2px no-repeat;
    background-size: 22px;
}

.headerbar__basket a {
    display: inline-block;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(0, 0, 0, .2);
    color: #000000;
    font-size: 14px;
    line-height: 18px;
    transition: all .3s linear;
}

.headerbar__basket a:hover {
    border-bottom: 2px solid rgba(0, 0, 0, 1);
}

.headerbar__basket p {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.headerbar__basket p span {
    display: block;
}

.burger-btn,
.basket-mobile {
    display: none;
}

/* 
    LOGO
----------------------------------------------------------------*/

.logo {
    display: block;
}

.logo__img {
    display: inline-block;
    vertical-align: top;
    width: 56px;
    margin-right: 15px;
}

.logo__txt {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 75px);
    color: #000;
}

.logo__title {
    margin: 3px 0 5px;
    font-size: 22px;
    font-weight: bold;
}

.logo__subtitle {
    margin: 0;
    font-size: 15px;
}

/* 
    SEARCH
----------------------------------------------------------------*/

.search {
    width: 320px;
    height: 40px;
    margin-top: 5px;
    font-size: 0;
    background-color: #EDEDED;
}

.search__input {
    vertical-align: top;
    width: 280px;
    height: 100%;
    padding-left: 8px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.search__btn {
    vertical-align: top;
    width: 40px;
    height: 100%;
    padding-top: 5px;
    border: none;
    outline: none;
    color: #878787;
    font-size: 20px;
    text-align: center;
    background-color: #D8D8D8;
    cursor: pointer;
}

.search__show-btn {
    display: none;
}

/* 
    NAVBAR
----------------------------------------------------------------*/

.navbar {
    padding: 20px 0 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.navbar__item {
    display: block;
    padding: 0 0 10px;
    text-align: center;
    transition: all .3s linear;
}

.navbar__item.active {
    text-decoration: underline;
}

.navbar__img {
    height: 50px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.navbar__img--memorial {
    background: url('../img/memorial-icon.svg') center bottom no-repeat;
    background-size: 64px;
}

.navbar__img--fence {
    background: url('../img/fence-icon.svg') center bottom no-repeat;
    background-size: 64px;
}

.navbar__img--tombstone {
    background: url('../img/tombstone-icon.svg') center bottom no-repeat;
    background-size: 64px;
}

.navbar__img--accomp {
    background: url('../img/accomplishment-icon.svg') center bottom no-repeat;
    background-size: 64px;
}

.navbar__img--acces {
    background: url('../img/accessories-icon.svg') center bottom no-repeat;
    background-size: 64px;
}

.navbar__img--services {
    background: url('../img/services-icon.svg') center bottom no-repeat;
    background-size: 64px;
}

.navbar__title {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.navbar__item:hover .navbar__img--memorial,
.navbar__item.active .navbar__img--memorial {
    background: url('../img/memorial-hover-icon.svg') center bottom no-repeat;
    background-size: 64px;
}

.navbar__item:hover .navbar__img--fence,
.navbar__item.active .navbar__img--fence {
    background: url('../img/fence-hover-icon.svg') center bottom no-repeat;
    background-size: 64px;
}


.navbar__item:hover .navbar__img--tombstone,
.navbar__item.active .navbar__img--tombstone {
    background: url('../img/tombstone-hover-icon.svg') center bottom no-repeat;
    background-size: 64px;
}


.navbar__item:hover .navbar__img--accomp,
.navbar__item.active .navbar__img--accomp {
    background: url('../img/accomplishment-hover-icon.svg') center bottom no-repeat;
    background-size: 64px;
}


.navbar__item:hover .navbar__img--acces,
.navbar__item.active .navbar__img--acces {
    background: url('../img/accessories-hover-icon.svg') center bottom no-repeat;
    background-size: 64px;
}


.navbar__item:hover .navbar__img--services,
.navbar__item.active .navbar__img--services {
    background: url('../img/services-hover-icon.svg') center bottom no-repeat;
    background-size: 64px;
}

/*========================================
    MAIN
========================================*/

/*
    BANNER
----------------------------------------------------------------*/

.banner {
    margin-bottom: 40px;
}

.banner__item {
    position: relative;
}

.banner__item--one .banner__txt {
    position: absolute;
    top: 25px;
    left: 28%;
    width: 44%;
    margin: 0;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 300;
    text-align: center;
}

.banner__item--two .banner__txt {
    position: absolute;
    top: calc(50% - 18px);
    left: 80px;
    margin: 0;
    color: #000000;
    font-size: 32px;
    font-weight: 300;
}

.banner__item--three .banner__txt {
    position: absolute;
    top: calc(50% - 36px);
    left: 80px;
    width: 55%;
    margin: 0;
    color: #000000;
    font-size: 32px;
    font-weight: 300;
}

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

.banner .slick-prev,
.banner .slick-next {
    width: 27px;
    height: 27px;
    border: none;
    z-index: 100;
    opacity: .75;
    transition: all .3s linear;
}

.banner .slick-prev {
    left: 15px;
    background: url('../img/slider-arrow-left.svg') center no-repeat;
    background-size: 27px;
}

.banner .slick-next {
    right: 15px;
    background: url('../img/slider-arrow-right.svg') center no-repeat;
    background-size: 27px;
}

.banner .slick-prev:hover,
.banner .slick-next:hover {
    opacity: 1;
}

/*
    ADVANTAGES
----------------------------------------------------------------*/

.advantages {
    margin-bottom: 10px;
}

.advantages__row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: stretch;
}

.advantages__item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: flex-start;
    margin: 0 1px 25px;
    padding: 20px 15px;
    transition: 0.3s;
}

.advantages__txt span {
    font-style: italic;
    line-height: 20px;
}

.advantages__item:hover {
    border-radius: 4px;
    background-color: #FFF1E2;
    box-shadow: 0 20px 40px 0 rgba(125, 47, 36, 0.2)
}

.advantages__icon {
    width: 62px;
    margin-right: 10px;
    text-align: center;
}

.advantages__row a:nth-child(4) .advantages__icon,
.advantages__row #bx_incl_area_11_5 .advantages__icon {
    width: 100px;
}

.advantages__icon span {
    font-family: 'Gotham Pro';
    font-size: 32px;
    line-height: 1;
    font-weight: 300;
    color: #952C21;
    position: relative;
}

.advantages__icon span i {
    font-size: 24px;
    font-style: normal;
}

.advantages__icon .fa {
    font-size: 26px;
    font-weight: 100;
}

.advantages__icon span i.advantages__icon-sm {
    position: absolute;
    bottom: -15px;
    left: 5px;
    font-size: 18px;
}

.advantages__txt {
    font-size: 14px;
}

/*
    SELECTION
----------------------------------------------------------------*/

.selection {
    margin-bottom: 60px;
    padding: 20px 0 25px;
    background-color: #F7F7F7;
}

.selection .section-title span {
    background-color: #F7F7F7;
}

.selection__item {
    padding: 0 12px;
    text-align: center;
}

.selection__item--sm {
    padding-left: 40px;
    padding-right: 40px;
}

.selection__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
}

.selection__radio {
    display: inline-block;
    vertical-align: top;
    width: 115px;
    margin-bottom: 20px;
}

.selection__radio i {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-style: italic;
}

.selection__radio input {
    display: none;
}

.selection__radio label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
    padding: 12px;
    height: 100%;
}

.main_filter label {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 90px;
    border: 2px solid #d8d8d8;
    background-color: #d8d8d8;
    cursor: pointer;
    padding: 0;
    transition: 0.3s;
}

.main_filter .selection__radio label:hover {
    background-color: RGBA(127, 21, 7, 0.25);
    border-color: RGB(195, 147, 142);
}

.main_filter .selection__radio input:checked+label {
    border: 2px solid #952C21;
}

.selection__radio label .lable_image {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 90px;
    border: 2px solid #d8d8d8;
    cursor: pointer;
    float: left;
    transition: 0.3s;
    background-color: #FFFFFF;
}

.selection__radio label img {
    float: left;
}

.selection__radio--qnt1 label {
    background-image: url('../img/portraits-one-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 34px;
}

.selection__radio--qnt2 label {
    background-image: url('../img/portraits-two-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 68px;
}

.selection__radio--qnt3 label {
    background-image: url('../img/portraits-three-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 68px;
}

.selection__radio--vert label {
    background-image: url('../img/orientation-vert-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 68px;
}

.selection__radio--horiz label {
    background-image: url('../img/orientation-hor-icon.svg');
    background-position: center 70%;
    background-repeat: no-repeat;
    background-size: 68px;
}

.selection__radio--sm label {
    background-image: url('../img/memorial-size-s-icon.svg');
    background-position: center 82%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--md label {
    background-image: url('../img/memorial-size-m-icon.svg');
    background-position: center 70%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--lg label {
    background-image: url('../img/memorial-size-l-icon.svg');
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio label:hover {
    border-color: RGB(223, 196, 193);
}

.selection__radio--sm-ts label .lable_image {
    background-image: url('../img/tombstone-size-s-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
}

.selection__radio--md-ts label .lable_image {
    background-image: url('../img/tombstone-size-m-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
}

.selection__radio--lg-ts label .lable_image {
    background-image: url('../img/tombstone-size-l-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35px;
}

.selection__radio--front label .lable_image {
    background-image: url('../img/polish-1-side-icon.svg');
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--all label .lable_image {
    background-image: url('../img/polish-5-side-icon.svg');
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--none label .lable_image {
    background-image: url('../img/none-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.selection__radio--any label .lable_image {
    background-image: url('../img/faith-symbol-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 55px;
    float: left;
    background-color: #FFFFFF;
}

.selection__radio--flowers label .lable_image {
    background-image: url('../img/flowers-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--epitaph label .lable_image {
    background-image: url('../img/epitaph-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--all-decor label .lable_image {
    background-image: url('../img/flowers-epitaph-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--engrave100 label .lable_image {
    background-image: url('../img/engraving-small-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--engrave150 label .lable_image {
    background-image: url('../img/engraving-big-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--white label {
    background-color: #fff;
}

.selection__radio--black label {
    background-color: #000;
}

.selection__radio label img {
    width: 100%;
    height: 100%;
}

.selection__radio label .label_name {
    width: 155px;
    height: 90px;
    padding: 0 0 0 10px;
    display: table;
}

.selection__radio label .label_name div {
    display: table-cell;
    vertical-align: middle;
}

.selection__radio input:checked+label .lable_image {
    border: 2px solid #952C21;
}

.selection__radio--type input:checked+label {
    padding: 5px;
}

.selection__radio--qnt1 input:checked+label {
    background-image: url('../img/portraits-one-focused-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 34px;
}

.selection__radio--qnt2 input:checked+label {
    background-image: url('../img/portraits-two-focused-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 68px;
}

.selection__radio--qnt3 input:checked+label {
    background-image: url('../img/portraits-three-focused-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 68px;
}

.selection__radio--vert input:checked+label {
    background-image: url('../img/orientation-vert-focused-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 68px;
}

.selection__radio--horiz input:checked+label {
    background-image: url('../img/orientation-hor-focused-icon.svg');
    background-position: center 70%;
    background-repeat: no-repeat;
    background-size: 68px;
}

.selection__radio--sm input:checked+label {
    background-image: url('../img/memorial-size-s-focused-icon.svg');
    background-position: center 82%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--md input:checked+label {
    background-image: url('../img/memorial-size-m-focused-icon.svg');
    background-position: center 70%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--lg input:checked+label {
    background-image: url('../img/memorial-size-l-focused-icon.svg');
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--sm-ts input:checked+label {
    background-image: url('../img/tombstone-size-s-focused-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
}

.selection__radio--md-ts input:checked+label {
    background-image: url('../img/tombstone-size-m-focused-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
}

.selection__radio--lg-ts input:checked+label {
    background-image: url('../img/tombstone-size-l-focused-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35px;
}

.selection__radio--front input:checked+label .lable_image {
    background-image: url('../img/polish-1-side-focused-icon.svg');
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--all input:checked+label .lable_image {
    background-image: url('../img/polish-5-side-focused-icon.svg');
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--none input:checked+label .lable_image {
    background-image: url('../img/none-focused-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.selection__radio--all input:checked+label .lable_image {
    background-image: url('../img/polish-5-side-focused-icon.svg');
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--any input:checked+label .lable_image {
    background-image: url('../img/faith-symbol-icon_focused.svg');
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--flowers input:checked+label .lable_image {
    background-image: url('../img/flowers-icon_focused.svg');
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--epitaph input:checked+label .lable_image {
    background-image: url('../img/epitaph-icon_focused.svg');
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--all-decor input:checked+label .lable_image {
    background-image: url('../img/flowers-epitaph-icon_focused.svg');
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--engrave100 input:checked+label .lable_image {
    background-image: url('../img/engraving-small-icon_focused.svg');
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__radio--engrave150 input:checked+label .lable_image {
    background-image: url('../img/engraving-big-icon_focused.svg');
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: 55px;
}

.selection__item span {
    display: block;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
}

.selection__item span {}

.selection__btn {
    margin: 0 auto;
}

/*
    SECTION-TITLE
----------------------------------------------------------------*/

.section-title {
    position: relative;
    margin-bottom: 35px;
    padding: 5px 0;
    text-align: center;
    background-image: url('../img/decor-left.svg'), url('../img/decor-right.svg');
    background-position: 2% center, 98% center;
    background-repeat: no-repeat;
    background-size: 36px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: 5%;
    display: block;
    width: 90%;
    height: 3px;
    background: #000;
}

.section-title span {
    position: relative;
    display: inline-block;
    padding: 0 25px;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    background: #fff;
    z-index: 10;
}

.section-title .fa-rub {
    font-size: 22px;
}

/*
    FEEDBACK
----------------------------------------------------------------*/

.feedback {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: center;
    margin-bottom: 50px;
    padding: 35px 25px;
    border: 1px solid #952C21;
}

.feedback__txt p {
    margin: 0 0 8px;
    font-size: 14px;
}

p.feedback__big-txt {
    font-size: 18px;
    font-weight: bold;
}

.feedback__txt a {
    color: #000;
}

/*
    OTHER
----------------------------------------------------------------*/

.other {
    margin-bottom: 25px;
}

.other__row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: stretch;
    align-items: stretch;
}

.other__item {
    display: block;
    width: 220px;
    margin: 0 15px 30px;
    padding: 10px;
    border: 1px solid #BDBDBD;
    text-align: center;
    transition: all .1s linear;
}

.other__item:hover {
    border-color: #000;
    border-width: 2px;
    padding: 9px;
}

.other__title {
    display: inline-block;
    margin: 5px 0 15px;
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.other__img {
    position: relative;
    height: 150px;
}

.other__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    transform: translateX(-50%) translateY(-50%);
}

/*
    TEXT
----------------------------------------------------------------*/

.text {
    margin-bottom: 60px;
    font-size: 14px;
    line-height: 22px;
}

.text p {
    margin: 0 0 20px;
}

.text ul {
    column-count: 2;
    column-gap: 50px;
}

.text li::before {
    content: '\2014';
    margin-right: 5px;
}

/*
    PROMO-SECTION
----------------------------------------------------------------*/

.promo-section {
    margin-bottom: 40px;
}

.promo-section__item {
    width: calc(50% - 24px);
    margin: 0 12px 20px;
    padding: 25px 20px;
    text-align: center;
}

.promo-section__item--left {
    border: 1px solid #952C21;
    background-color: #FFF1E2;
}

.promo-section__item--right {
    border: 1px solid #979797;
    background-color: #D5D5D5;
}

.promo-section__title {
    color: #000;
    font-size: 24px;
    font-weight: 400;
}

.promo-section__txt {
    color: #000;
    font-size: 18px;
}

/*
    BREADCRUMBS
----------------------------------------------------------------*/

.breadcrumbs {
    margin: 15px 0 20px;
}

.breadcrumbs__item {
    display: inline-block;
    margin-bottom: 10px;
}

.breadcrumbs__item:after {
    padding: 0 10px;
    content: '\3e';
    font-size: 14px;
}

.breadcrumbs__item a {
    border-bottom: 2px solid rgba(0, 0, 0, .2);
    color: #797979;
    font-size: 14px;
    line-height: 18px;
    transition: all .3s linear;
}

.breadcrumbs__item a:hover {
    border-bottom: 2px solid rgba(0, 0, 0, 1);
}

.breadcrumbs__item--active {
    color: #808080;
    border-bottom: none;
}

.breadcrumbs__item--active:after {
    display: none;
}

/*
    PAGE-TITLE
----------------------------------------------------------------*/

.page-title {
    margin: 20px 0 25px;
    font-size: 30px;
    font-weight: bold;
}

/*
    CATALOG
----------------------------------------------------------------*/

.catalog {
    margin-bottom: 30px;
    position: relative;
}

.count_find {
    position: absolute;
    right: 30px;
    top: 4px;
}

.catalog__sort {
    margin-bottom: 10px;
}

.catalog__sort p {
    margin: 0;
    font-size: 14px;
}

.catalog__sort a {
    display: inline-block;
    margin: 0 5px;
    border-bottom: 2px solid rgba(149, 44, 33, .2);
    color: #952C21;
    line-height: 18px;
    transition: all .3s linear;
    cursor: pointer;
}

.catalog__sort a.active {
    font-weight: bold;
}

.catalog__sort a:hover {
    border-bottom: 2px solid rgba(149, 44, 33, 1);
}

.catalog__item {
    position: relative;
    padding-bottom: 55px !important;
    width: 258px;
    border: 1px solid #D5D5D5;
    margin: 0 12px 24px;
    padding: 10px 15px;
    transition: all .3s linear;
}

.similar .catalog__item {
    width: 208px;
    padding: 10px 15px !important;
}

.catalog__item:hover {
    border-color: #000;
}

.catalog__item .more_info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: RGBA(255, 255, 255, 0.7);
    transition: all .3s linear;
}

.catalog__item:hover .more_info {
    opacity: 1;
}

.catalog__item .more_info div {
    position: absolute;
    top: 30%;
    left: 0;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    text-align: center;
    color: #952C21;
    /*text-shadow: 1px 1px 1px #FFF, 0 0 1em #000;*/
}

.similar .catalog__item .more_info div {
    top: 33%;
    left: 16%;
}

.catalog__img {
    position: relative;
    height: 226px;
    margin-bottom: 5px;
}

.similar .catalog__img {
    height: 180px;
}

.catalog__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    transform: translateX(-50%) translateY(-50%);
}

.catalog__name {
    margin: 0 0 5px;
    font-size: 14px;
    color: #000;
    text-align: center;
}

.catalog__code {
    margin: 0 0 5px;
    font-size: 14px;
    font-style: italic;
    color: #000;
}

.catalog__price {
    text-align: center;
    margin: 10px 0 0;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.old_price {
    float: left;
    font-size: 20px;
    color: #952C21;
    text-decoration: line-through;
    font-weight: initial !important;
}

.catalog__price .fa {
    font-size: 16px;
    font-weight: normal;
}

.one_click {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #952C21;
    color: #FFF;
    text-align: center;
    font-weight: bold;
    transition: all .3s linear;

}

.one_click p {
    cursor: default;
}

.one_click:hover {
    background-color: #4a4a4a;
    color: #FFFFFF;
}

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

.catalog__section-title {
    width: 97%;
    margin-right: 104px;
    margin-bottom: 20px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    background-color: rgba(237, 237, 237, 1);
    /*background-image: url('../img/list-mark-icon_2.svg');
    background-position: 98% center;
    background-repeat: no-repeat;
    background-size: 16px;*/
    cursor: pointer;
    transition: all .3s linear;
}

.catalog__section-title a {
    color: #000;
}

.catalog__section-title:hover {
    /*background-color: RGBA(127, 21, 7,0.25);
 }

 .catalog__section-title:hover a{
    //color: #000;*/
}

.catalog__section-title.closed {
    /*background-image: url('../img/list-mark-top-icon_2.svg');
    background-position: 98% center;
    background-repeat: no-repeat;
    background-size: 16px;*/
}

.catalog__section-title p {
    margin: 0;
}

/*
    FILTER
----------------------------------------------------------------*/

.filter {
    margin-bottom: 30px;
    /*background-color: #F7F7F7;*/
    border: 1px solid #D5D5D5;
    height: 97%;
    position: relative;
}

.filter-loading {
    width: 100%;
    margin-top: 41px;
    height: calc(100% - 41px);
    background: #EDEDED;
    opacity: 0.5;
    position: absolute;
    z-index: 5;
    transition: all .3s linear;
    display: none;
}

.filter-title {
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 10px;
    color: #952C21;
    font-size: 18px;
}

.filter-body {
    min-height: 60px;
}

.filter__form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
}

.filter__item {
    width: 100%;
    margin-right: 10px;
    padding-left: 15px;
    position: relative;
    margin-bottom: 10px;
}

.filter-item-value {
    margin: 0 15px 10px 0;
}

.filter-item-value.float-left {
    float: left;
}

.filter-name {
    font-weight: bold;
    border-top: 1px solid #952C21;
    width: 100%;
    margin: 0;
    padding: 8px 10px 3px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
}

.filter input {
    display: none;
}

.filter .param-label {
    color: #000;
    display: inline-block;
    position: relative;
    width: 100%;
    padding-left: 25px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s;
}

.filter .param-label.disabled {
    color: #D5D5D5;
    cursor: context-menu;
}

.filter .filter-subgroup {
    float: left;
    min-width: 46%;
    margin-right: 0px;
}

.filter .param-label.disabled::before {
    border: 1px solid #4a4a4a;
}

.filter .param-label:hover {
    color: #D5D5D5;
}

.filter .param-label .fa {
    font-size: 12px;
}

.filter .param-label span {
    font-size: 12px;
    color: #878787;
}

.filter .param-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    height: 16px;
    width: 16px;
    border: 1px solid #952C21;
    background-color: transparent;
    transition: 0.3s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 11px;
}

.filter .param-label:hover::before {
    border: 1px solid #4a4a4a;
}

.filter input:checked+.param-label::before {
    background-image: url('../img/check-icon.svg');
}

.filter input:disabled+.param-label::before {
    opacity: .3;
}

.filter .filter__btn {
    display: block;
    margin: 0 auto 20px;
}

form .filter__item_buttons {
    margin-top: 10px;
    width: 100%;
}

.form-select {
    position: relative;
    margin-bottom: 20px;
}

.form-select__list label,
.form-select label {
    display: block;
    padding: 10px 7px 10px;
    font-size: 14px;
    font-weight: normal;
}

.form-select__input {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    padding-left: 15px;
    font-size: 14px;
    line-height: 40px;
    cursor: pointer;
    background-color: #EDEDED;
    background-image: url('../img/arr-down.svg');
    background-position: 95% center;
    background-repeat: no-repeat;
    background-size: 14px;
}

.form-select__input.open {
    background-image: url('../img/arr-up.svg');
    background-position: 95% center;
    background-repeat: no-repeat;
    background-size: 14px;
}

.form-select__list {
    top: 76px;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 100;
    width: 210px;
}

body .popup-window {
    background-color: inherit;
    box-shadow: inherit;
    padding: inherit;
    font: inherit;

}

.form-select__list li {
    color: #000;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s linear;
}

.form-select__list li:hover {
    background-color: #F3F3F3;
}

.filter__result {
    font-size: 12px;
}

.filter .refresh__btn {
    background: url(/images/refresh.png) center center no-repeat;
    background-size: contain;
    margin: 37.5px 0 0 12.5px;
    width: 35px;
    height: 35px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.filter .refresh__btn:hover {
    background: url(/images/refresh_hover.png) center center no-repeat;
    background-size: contain;
}

.filter .bx-filter-popup-result {
    position: absolute;
    left: 15px;
    top: -20px;
}

.container .filter--fix {
    position: fixed;
    top: 10px;
    width: 266px;
    z-index: 1000;
}




/*
    LEFT-BAR
----------------------------------------------------------------*/

.left-bar {
    margin-bottom: 30px;
    width: 266px;
}

.left-bar--fix {
    position: fixed;
    top: 10px;
    width: 266px;
}

.left-bar__item {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.left-bar__item a {
    display: block;
    padding: 10px 15px;
    cursor: pointer;
}

.left-bar__item a:hover {
    background-color: #F7F7F7;
}

.left-bar__item span {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #797979;
    font-size: 14px;
}

.left-bar__title {
    margin: 0 0 5px;
    padding-right: 0px;
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.left-bar__desc {
    display: none;
    margin: 0;
    color: #000;
    font-size: 14px;
    line-height: 22px;
}

.left-bar__item a.active {
    background-color: rgba(249, 245, 238, 1);
}

.left-bar__item a.active .left-bar__desc {
    display: block;
}

/*
    ARTICLE
----------------------------------------------------------------*/

.article {
    margin-bottom: 50px;
}

.article p {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 22px;
}

.article h3 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
}

/*
    LEFT-MENU
----------------------------------------------------------------*/

.left-menu {
    margin: 10px 0 25px;
}

.left-menu__item {
    margin-bottom: 15px;
}

.left-menu__item a {
    display: inline-block;
    border-bottom: 2px solid rgba(149, 44, 33, .2);
    color: #952C21;
    font-size: 16px;
    line-height: 18px;
    transition: all .3s linear;
}

.left-menu__item a:hover {
    border-bottom: 2px solid rgba(149, 44, 33, 1);
}

/*
    CABINET
----------------------------------------------------------------*/

.cabinet {
    margin-bottom: 50px;
}

.cabinet__discount {
    margin-top: 40px;
}

.cabinet__discount p {
    margin: 0 0 15px;
    font-size: 14px;
}

.cabinet__nav {
    font-size: 0;
}

.cabinet__nav-item {
    display: inline-block;
}

.cabinet__nav-item a {
    display: block;
    height: 40px;
    width: 176px;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    background-color: #E3E3E3;
}

.cabinet__nav-item.active a {
    background-color: #F7F7F7;
    cursor: default;
}

.cabinet__content {
    display: none;
    padding: 25px;
    background-color: #F7F7F7;
}

.cabinet__content.active {
    display: block;
}

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

.cabinet__form-group label {
    position: relative;
    top: 11px;
    display: inline-block;
    vertical-align: top;
    width: 190px;
    font-size: 14px;
    font-weight: 400;
}

.cabinet__form-group input {
    width: calc(100% - 195px);
    max-width: 500px;
    height: 40px;
    padding-left: 15px;
    border: none;
    outline: none;
    font-size: 14px;
    background-color: #EDEDED;
}

.cabinet__form-group--discount input {
    width: 160px;
    margin-right: 15px;
}

.discount-btn {
    display: inline-block;
    width: 180px;
    margin-right: 15px;
}

.cabinet__form-group--discount span {
    color: #007F38;
    font-size: 14px;
    font-style: italic;
}

.cabinet__form-group--discount label {
    float: left;
    margin-right: 10px;
}

.product__order-total-sum .discount_coupon {
    font-size: 12px;
    float: left;
    font-weight: initial;
}

.product__order-total-sum .discount_coupon_price {
    font-size: 12px;
    float: right;
    font-weight: initial;
}

.product__order-total-sum .discount_coupon_price i {
    font-size: 12px;
}

.out_discount_price {
    display: none;
    margin: 0 15px 10px;
    font-size: 16px;
}

.out_discount_price span {
    float: right;
    text-decoration: line-through;
}

.product__order-top_price {
    display: block !important;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, .15);
}

.cabinet__form-group textarea {
    vertical-align: top;
    min-height: 130px;
    width: calc(100% - 195px);
    border: none;
    outline: none;
    background-color: #EDEDED;
    resize: vertical;
    padding-left: 15px;
}

.cabinet__pass-change {
    display: inline-block;
    margin: 0 0 5px;
    border-bottom: 2px solid rgba(149, 44, 33, .2);
    color: #952C21;
    font-size: 14px;
    line-height: 18px;
    transition: all .3s linear;
}

.form-checkbox label a {
    border-bottom: 2px solid rgba(149, 44, 33, .2);
    color: #952C21;
    font-size: 14px;
    line-height: 18px;
    transition: all .3s linear;
}

.form-checkbox label a:hover {
    border-bottom: 2px solid rgba(149, 44, 33, 1);
}

.form-checkbox span {
    display: inline-block;
    margin: 5px 0 0 24px;
    font-size: 12px;
    color: #D0021B;
    font-style: italic;
}

.form-checkbox .span_installment {
    margin: 0;
    font-size: 13px;
    color: #D0021B;
    font-style: normal;
    display: initial;
}

.installment_question {
    display: inherit;
    width: 20px;
    height: 20px;
    border: 1px solid RGBA(127, 21, 7, 0.25);
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    padding-top: 1px;
    padding-left: 1px;
    margin: 2px;
    cursor: pointer;
    transition: 0.3s;
    float: right;
}

.installment_question:hover {
    background-color: RGBA(127, 21, 7, 0.25);
}

.installment_answer {
    display: none;
    position: absolute;
    padding: 15px;
    z-index: 100;
    bottom: 85px;
    left: 15px;
    width: 240px;
    background: #fff;
    box-shadow: 0 16px 16px 0 rgba(0, 0, 0, .2), 0 2px 6px 0 rgba(0, 0, 0, .1);
    border-radius: 4px;
    line-height: 1.5;
}

.installment_answer .close-btn {
    font-size: 15px;
    cursor: pointer;
    top: 10px;
    right: 10px;
}

.cabinet__pass-change:hover {
    border-bottom: 2px solid rgba(149, 44, 33, 1);
}

/*
    HISTORY
----------------------------------------------------------------*/

.history {}

.history__header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: stretch;
    margin-bottom: 15px;
    padding: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    font-size: 14px;
}

.history__id {
    width: 10%;
}

.history__date {
    width: 13%;
}

.history__order-list {
    width: 55%;
    padding-right: 8%;
}

.history__status {
    width: 22%;
}

.history__item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.history__title {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: bold;
}

.history__desc {
    margin: 0;
    font-size: 14px;
    line-height: 22px;
}

.history__status>span {
    display: inline-block;
    margin-left: 25px;
}

.history__status--transit {
    background-image: url('../img/truck.svg');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.history__status--completed {
    background-image: url('../img/ok-icon.svg');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.history__status--cancel {
    background-image: url('../img/error.svg');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 16px;
}

/*
    PRODUCT
----------------------------------------------------------------*/

.product {
    margin-bottom: 20px;
}

.product__card {
    margin-bottom: 40px;
}

.product__gallery {
    margin-bottom: 5px;
}

.product__img {
    position: relative;
    height: 350px;
    margin-bottom: 5px;
    padding: 15px;
    border: 2px solid #D5D5D5;
}

.product__img img {
    padding: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.product__thumb-img {
    position: relative;
    display: inline-block;
    height: 84px;
    width: 109.5px;
    margin-right: 5px;
    margin-bottom: 15px;
    padding: 5px;
    border: 2px solid #D5D5D5;
    cursor: pointer;
    transition: 0.3s;
    box-sizing: inherit;
}

.product__thumb-img:last-child {
    margin-right: 0px;
}

.product__thumb-img.active {
    border: 2px solid #952C21;
}

.product__thumb-img img {
    padding: 2px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.product__desc-item {
    margin-bottom: 5px;
    border-bottom: 1px dotted #000;
    font-size: 14px;
    line-height: 1;
}

.product__desc-item span {
    position: relative;
    top: 5px;
    line-height: 22px;
    background: #fff;
}

.product__desc-val {
    float: right;
}

.product__selection {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.product__addit-item .selection__radio {
    padding-right: 6px;
    padding-left: 6px;
}

.product__addit .selection__radio {
    width: 150px;
    text-align: left;
    transition: 0.3s;
}

.product__addit .selection__radio label:hover {
    background-color: #F3F3F3;
}

.product__selection-price {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: bold;
}

.product__selection-price .fa {
    display: inline-block;
    margin-bottom: 0;
    font-style: normal;
}

.product__info {
    margin-bottom: 10px;
}

.product__info p {
    line-height: 18px;
}

.product__info-img {
    display: inline-block;
    vertical-align: top;
    width: 72px;
    height: 72px;
    margin-right: 20px;
    overflow: hidden;
}

.product__txt {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 98px);
    font-size: 14px;
    line-height: 16px;
}

.product__txt p {
    margin: 0 0 10px;
}

.product__addit {
    margin-bottom: 30px;
}

.product__addit-item {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.product__addit-item:last-child {
    border-bottom: none;
}

.product__addit-desc {
    margin-bottom: 20px;
}

.product__addit-desc img {
    float: left;
    margin-bottom: 15px;
    margin-right: 15px;
}

.product__addit-desc p {
    margin: 0;
    font-size: 14px;
}

.product__order-list {
    padding-bottom: 15px;
    background-color: #FFF5EB;
}

.product__order-list .btn {
    margin: 0 auto 15px;
}

.product__order-title {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
    background-color: #FFE8CE;
}

.product__order-body {
    padding: 10px 15px;
    position: relative;
}

.product__order-head {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    font-size: 12px;
    line-height: 16px;
}

.product__order-item {
    position: relative;
    padding-bottom: 10px;
}

.product__order-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.product__order-del {
    position: absolute;
    top: 7px;
    left: 0;
    height: 16px;
    width: 16px;
    border: none;
    outline: none;
    background: url('../img/delete-hover.svg') center no-repeat;
    background-size: 100%;
    opacity: .4;
    transition: opacity .3s linear;
    cursor: pointer;
}

.product__order-del:hover {
    opacity: 1;
}

.product__order-row {
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 16px;
    position: relative;
}

.product__order-head span,
.product__order-row span {
    display: inline-block;
    vertical-align: top;
}

.product__order-name {
    width: 53%;
}

.product__order-row:first-child .product__order-name,
.product__order-row:nth-child(2) .product__order-name {
    padding-left: 0px;
}

.product__order-row .product__order-name {
    padding-left: 24px;
}

.product__order-qnt {
    width: 20%;
    text-align: center;
}

.product__order-price {
    width: 24%;
    text-align: center;
}

.product__order-sum {
    margin: 0 20px 10px;
    text-align: right;
    font-size: 16px;
    font-weight: bold;
}

.product__order-sum span {
    margin-left: 30px;
}

.product__order-info {
    margin: 0 15px 15px;
    font-size: 12px;
    line-height: 16px;
    background: url('../img/attention.svg') left top no-repeat;
    background-size: 16px;
}

.product__order-total-sum {
    margin: 0 15px 25px;
    font-size: 25px;
    font-weight: bold;
}

.product__order-total-sum span {
    float: right;
}

.product__order-total-sum .fa {
    font-size: 22px;
}

.product__btn {
    margin: 0 auto 15px;
}

.product__buy-link {
    margin: 0;
    text-align: center;
}

.product__buy-link a {
    border-bottom: 2px solid rgba(149, 44, 33, .2);
    color: #952C21;
    font-size: 14px;
    line-height: 18px;
    transition: all .3s linear;
}

.product__buy-link a:hover {
    border-bottom: 2px solid rgba(149, 44, 33, 1);
}

.product__btn--xs {
    display: none;
}

.product__size {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-content: stretch;
    align-items: center;
}

.product__size-inputs {
    width: 65%;
}

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

.product__size-item label {
    display: inline-block;
    text-align: left;
    font-size: 14px;
    font-weight: normal;
    height: 40px;
    line-height: 40px;
}

.product__size-item input {
    width: 45px;
    height: 40px;
    text-align: center;
    border: none;
    outline: none;
    float: left;
    margin-left: 33px;
    background-color: #EDEDED;
}

.product__size-item input::-webkit-outer-spin-button,
.product__size-item input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.product__size-item input[type='number'] {
    -moz-appearance: textfield;
}

.product__size-item .col-md-6 {
    position: relative;
}

.product__size-price {
    width: 35%;
    padding-left: 10px;
    text-align: left;
}

.product__price {
    margin: 10px 0;
    font-size: 25px;
    font-weight: bold;
}

.product__price .fa {
    font-size: 22px;
}

.product__area {
    font-size: 14px;
}

/*
    SIMILAR
----------------------------------------------------------------*/

.similar {
    margin-bottom: 20px;
}

.similar__title {
    margin: 0 0 25px;
    font-size: 25px;
    font-weight: bold;
}

/*
    CART
----------------------------------------------------------------*/

.cart {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.cart__item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: center;
    margin-bottom: 5px;
    padding: 10px 20px;
    transition: all .3s linear;
}

.cart__img {
    position: relative;
    height: 96px;
    width: 96px;
    border: 1px solid #E3E3E3;
}

.cart__img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.cart__name {
    width: 50%;
}

.cart__title {
    margin: 0 0 5px;
    font-size: 19px;
    font-weight: bold;
    color: #000;
}

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

.cart__desc {
    margin: 0;
    font-size: 14px;
}

.cart__qnt {
    position: relative;
    width: 120px;
    font-size: 14px;
}

.cart__qnt input {
    height: 40px;
    width: 45px;
    margin-right: 5px;
    text-align: center;
    border: none;
    outline: none;
    background-color: #EDEDED;
}

.cart__qnt span {
    margin-left: 43px;
}

.cart__price {
    width: 120px;
    font-size: 19px;
    font-weight: bold;
}

.cart__price .fa {
    font-size: 17px;
}

.cart__del {
    width: 17px;
}

.cart__del button {
    height: 16px;
    width: 16px;
    border: none;
    outline: none;
    background-color: transparent;
    background-image: url('../img/delete-hover.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: .4;
    cursor: pointer;
    transition: opacity .3s linear;
}

.cart__del button:hover {
    opacity: 1;
}

/*
    ORDER
----------------------------------------------------------------*/

.order {
    margin-bottom: 45px;
}

.order__inner {
    padding: 15px;
    background-color: #F7F7F7;
}

.order__section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.order__section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.order__section-title {
    margin: 0 0 15px;
    font-size: 19px;
    font-weight: bold;
}

.order__delivery {
    position: relative;
    display: none;
    margin: 15px 0;
    padding: 20px 20px 5px;
    border: 1px solid #797979;
}

.order__delivery.active {
    display: block;
}

.order__delivery-left {
    display: inline-block;
    vertical-align: top;
    width: 46%;
    padding-right: 25px;
}

.order__delivery-right {
    display: inline-block;
    vertical-align: top;
    width: 53%;
}

.order__delivery-title {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: bold;
}

.order__delivery-txt {
    margin: 0 0 15px;
    font-size: 14px;
}

.order__delivery-price {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.order__delivery-price p {
    margin: 5px 0;
    font-size: 19px;
    font-weight: bold;
}

.order__delivery-price p span {
    font-size: 16px;
    font-weight: normal;
}

.order__delivery-price .fa {
    font-size: 17px;
}

.order__delivery .form-select label {
    position: relative;
    top: 11px;
    display: inline-block;
    vertical-align: top;
    width: 190px;
    font-size: 14px;
    font-weight: 400;
}

.order__delivery .form-select__input {
    display: inline-block;
    width: calc(100% - 195px);
    max-width: 500px;
    height: 40px;
    padding-left: 15px;
    border: none;
    outline: none;
    font-size: 14px;
    background-color: #EDEDED;
}

.order__delivery .form-select__list {
    width: calc(100% - 195px);
    top: 40px;
    left: auto;
    right: 2px;
}

/*========================================
    FOOTER
========================================*/

/*
    CONSULT
----------------------------------------------------------------*/

.consult {
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    text-align: center;
    background-image: url('../img/decor-left.svg'), url('../img/decor-right.svg');
    background-position: 2% 28px, 98% 28px;
    background-repeat: no-repeat;
    background-size: 36px;
}

.consult::before {
    content: '';
    position: absolute;
    top: 33px;
    left: 5%;
    display: block;
    width: 90%;
    height: 3px;
    background: #000;
}

.consult__inner {
    position: relative;
    display: inline-block;
    padding: 20px 0;
    background-color: #fff;
    background-position: 30px 5px;
    background-repeat: no-repeat;
    background-size: 33px;
    z-index: 10;
}

.consult span {
    margin-right: 0;
    font-size: 14px;
    width: 270px;
}

.consult a {
    color: #000000;
    font-size: 20px;
}

/*
    FOOTER
----------------------------------------------------------------*/

.footer {
    padding: 15px 0 20px;
}

/*
    SECOND-MENU
----------------------------------------------------------------*/

.second-menu {
    margin-bottom: 25px;
}

.second-menu__item {
    display: inline-block;
    margin: 0 20px;
}

.second-menu__item a {
    display: inline-block;
    border-bottom: 2px solid rgba(149, 44, 33, .2);
    color: #952C21;
    font-size: 14px;
    line-height: 18px;
    transition: all .3s linear;
}

.second-menu__item a:hover {
    border-bottom: 2px solid rgba(149, 44, 33, 1);
}

/*
    FOOTERBAR
----------------------------------------------------------------*/

.footerbar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: stretch;
    align-items: stretch;
    padding-left: 30px;
}

.footerbar__contacts {
    width: 190px;
}

.footerbar__addr {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 22px;
    font-style: normal;
}

.footerbar__tel,
.footerbar__tel:hover {
    display: block;
    margin-bottom: 10px;
    color: #000;
    font-size: 14px;
}

.footerbar__email {
    display: inline-block;
    border-bottom: 2px solid rgba(149, 44, 33, .2);
    color: #952C21;
    font-size: 14px;
    line-height: 18px;
    transition: all .3s linear;
}

.footerbar__email:hover {
    border-bottom: 2px solid rgba(149, 44, 33, 1);
}

.footerbar__schedule {
    width: 550px;
}

.footerbar__schedule p {
    margin: 0;
    font-size: 14px;
    line-height: 22px;
}

.footerbar__skype {
    color: #000;
    font-size: 14px;
}

/*========================================
    MODAL
========================================*/

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9000;
}

.modal {
    position: absolute;
    top: 100px;
    bottom: auto;
    right: auto;
    left: calc(50% - 145px);
    display: none;
    width: 400px;
    padding: 30px 30px 20px;
    text-align: center;
    background: #fff;
    z-index: 9999;
    min-height: 180px;
}

.modal__title {
    margin: 0 0 15px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}

.modal__group {
    margin-bottom: 15px;
}

.modal__group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    text-align: left;
}

.modal__input {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    border: none;
    outline: none;
    background-color: #EDEDED;
}

.form-checkbox {
    max-width: 480px;
    margin: 15px 0;
    text-align: left;
}

.stock_discont {
    max-width: 420px;
    margin: 15px 0 0;
    text-align: left;
}

.stock_discont {
    display: inline-block;
    position: relative;
    width: 100%;
    padding-left: 25px;
    font-size: 14px;
    font-weight: 400;
    cursor: default;
}

.stock_discont span::before {
    background-image: url('../img/check-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 11px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    height: 16px;
    width: 16px;
    border: 1px solid #952C21;
    background-color: transparent;
}

.form-checkbox input {
    display: none;
}

.form-checkbox label {
    display: inline-block;
    position: relative;
    width: 100%;
    padding-left: 25px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.form-checkbox .lable_installment {
    width: 89%;
}

.form-checkbox label .fa {
    font-size: 12px;
}

.form-checkbox label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    height: 16px;
    width: 16px;
    border: 1px solid #952C21;
    background-color: transparent;
}

.form-checkbox input:checked+label::before {
    background-image: url('../img/check-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 11px;
}

.form-checkbox input:disabled+label::before {
    opacity: .3;
}

.form-radio {
    margin: 15px 0;
    text-align: left;
}

.form-radio input {
    display: none;
}

.form-radio label {
    display: inline-block;
    position: relative;
    width: 100%;
    padding-left: 25px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.form-radio label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    height: 16px;
    width: 16px;
    border: 1px solid #952C21;
    border-radius: 50%;
    background-color: transparent;
}

.form-radio input:checked+label::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #952C21;
}

.modal__btn {
    margin: 15px auto;
}

.modal__link {
    display: inline-block;
    border-bottom: 2px solid rgba(149, 44, 33, .2);
    color: #952C21;
    font-size: 14px;
    line-height: 18px;
    transition: all .3s linear;
    cursor: pointer;
    margin-bottom: 5px;
}

.modal__link:hover {
    border-bottom: 2px solid rgba(149, 44, 33, 1);
}

.modal__list .active {
    display: inline-block;
}

.modal__list .inactive {
    display: none;
}

.login-error {
    color: #D0021B;
    font-size: 14px;
    font-style: italic;
}

.close-btn,
.close-btn:focus {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #000000;
    transition: all .3s linear;
}

.close-btn:hover {
    color: #dadada;
}

.modal--location {
    width: 900px;
    left: calc(50% - 320px);
    padding-left: 30px;
    padding-right: 30px;
}

.modal__group--location {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.modal--location .modal__btn {
    display: inline-block;
    vertical-align: top;
    margin: 0;
}

.modal--location #city_not_found {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.modal__list {
    margin-bottom: 15px;
    column-count: 4;
    column-gap: 20px;
    text-align: left;
}

.modal__link--bold {
    font-weight: 700;
}

.modal__txt {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
}

.modal--succes {
    position: fixed;
    padding: 150px 30px 50px;
    text-align: center;
    background-color: #FFF5EB;
    background-image: url(/local/assets/css/../img/ok-icon.svg);
    background-position: center 60px;
    background-repeat: no-repeat;
    background-size: 82px;
}

.modal__success-txt {
    font-size: 25px;
}

.site-map__item {
    margin-bottom: 3px;
}

.site-map__item a {
    display: inline-block;
    border-bottom: 2px solid rgba(149, 44, 33, .2);
    color: #952C21;
    font-size: 14px;
    line-height: 18px;
    transition: all .3s linear;
}

.site-map__item a:hover {
    border-bottom: 2px solid rgba(149, 44, 33, 1);
}

.site-map__title {
    margin: 5px 0 2px;
    font-weight: bold;
    color: #952C21;
    cursor: context-menu;
}

.site-map__catalog {
    margin-left: 10px;
}

.site-map__catalog_2 {
    margin-left: 20px;
}

.logo__txt h1 {
    line-height: 1.15;
    font-weight: initial;
}

.right-bar--fix {
    position: fixed;
    top: 15px;
    width: 266px;
    z-index: 2;
}

@media only screen and (min-width: 992px) and (max-width: 1179px) {
    .right-bar--fix {
        width: 218.5px;
    }
}


.product__btn-fon {
    display: none;
}


@media only screen and (max-width: 480px) {

    .product__fon--fix {
        display: block;
        position: fixed;
        bottom: 0;
        z-index: 20;
        width: 100%;
        margin-left: -12px;
        padding: 15px;
        background: #FFF;
        border-top: 1px solid rgba(0, 0, 0, .15);
        min-height: 71px;
    }

    .product__btn--fix {
        position: fixed;
        bottom: 0;
        z-index: 30;
        left: 33%;
    }
}

.success_form {
    color: green;
    font-size: 14px;
    font-style: italic;
}

.error_form {
    font-size: 12px;
    color: #D0021B;
    font-style: italic;
    margin: 5px 0 10px;
    text-align: left;
}

.error_order {
    font-size: 12px;
    color: #D0021B;
    font-style: italic;
    margin: 5px 0 10px;
    text-align: left;
    padding-left: 195px;
}

@media only screen and (max-width: 580px) {

    .error_order {
        padding-left: 0;
    }
}

.active_coupon_title {
    font-weight: bold;
    font-size: 16px;
}

.not_summarized {
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 0;
}

.cabinet__form-group--discount {
    position: relative;
}

.btn-clean-coupon {
    position: absolute;
    right: 50px;
    top: 10px;
}

.more_coupon {
    cursor: pointer;
    border-bottom: 2px solid rgba(0, 0, 0, .2);
    transition: all .3s linear;
}

.more_coupon:hover {
    border-bottom: 2px solid rgba(0, 0, 0, 1);
}

#use_coupon {
    position: relative;
    top: 15px;
    margin-bottom: 35px;
}

.cabinet__form-group .discont label {
    float: initial;
    font-size: 18px;
}

.cabinet__form-group .discont .form-checkbox {
    max-width: 100%;
}

.discont .description {
    font-size: 12px;
    padding-top: 5px;
    line-height: 1.4;
}

.order__inner .discont .form-checkbox label::before {
    margin-top: 3px;
}

.advantages__row a {
    color: initial;
}



.button-value {
    width: 24px;
    height: 28px;
    cursor: pointer;
    position: absolute;
    top: 6px;
    transition: all 0.3s;
}

.button-value:hover {
    background-color: #FFF1E2;
}

.value-reduce {
    background: url('/images/minus.jpg') center center no-repeat;
    background-size: 12px 2px;

}

.value-increase {
    background: url('/images/Plus.svg') center center no-repeat;
}

.cart .value-reduce {
    left: -40px;
}

.cart .value-increase {
    left: 55px;
}

.cart-empty-title {
    color: #000000;
    font-family: "Open Sans";
    font-size: 25px;
    font-weight: bold;
    line-height: 24px;
    margin-top: 68px;
}

.cart-empty-text {
    font-family: "Open Sans";
    font-size: 19px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 60px;
}

.cart-empty-text a {
    border-bottom: 2px solid rgba(149, 44, 33, .2);
    color: #952C21;
    transition: all .3s linear;
}

.cart-empty-text a:hover {
    border-bottom: 2px solid rgba(149, 44, 33, 1);
}

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


.link {
    border-bottom: 2px solid rgba(149, 44, 33, .2);
    color: #952C21;
    transition: all .3s linear;
}

.link:hover {
    border-bottom: 2px solid rgba(149, 44, 33, 1);
}

.page-404 {
    font-size: 16px;
    margin: 50px 0 100px;
}

.page-404 ul {
    margin: 14px 0;
    padding: 0 0 0 40px;
}

.page-404 li {
    list-style: initial;
}

.catalog__section-content {
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.catalog__more {
    font-size: 18px;
    font-weight: bold;
    padding: 50% 0;
    margin: 0;
    text-align: center;
    color: #952C21;
    transition: all .3s linear;
}

.catalog__item:hover .catalog__more {
    /*text-shadow: 1px 1px 1px #FFF, 0 0 20px #000;*/
}

.banner__item {
    display: none;
}

.slick-track .active {
    display: block;
}

.yandex_map {
    height: 250px;
    width: 100%;
    margin-bottom: 20px;
    background: url(/images/giphy.webp) center center no-repeat;
    background-size: contain;
}

.contacts-item .vkontakte {
    height: 48px;
    width: 48px;
    margin-right: 20px;
    float: left;
    background: url(/images/vkontaktepng.png) left center no-repeat;
}

.contacts-item .vkontakte:hover {
    background: url(/images/vkontaktepng.png) right center no-repeat;
}


.contacts-item .facebook {
    height: 48px;
    width: 48px;
    float: left;
    background: url(/images/facebookpng.png) left center no-repeat;
}

.contacts-item .facebook:hover {
    background: url(/images/facebookpng.png) right center no-repeat;
}

.buy_one_click {
    height: 45px;
    width: 100%;
    background: #952C21;
    color: #FFF;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    line-height: 45px;
    margin-bottom: 10px;
    transition: all .3s linear;
}

.buy_one_click:hover {
    background: #4a4a4a;
}


.mess_of_price {
    height: 40px;
    width: 100%;
    background: #EDEDED;
    color: #952C21;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    line-height: 40px;
    margin-bottom: 10px;
    transition: all .3s linear;
}

.mess_of_price:hover {
    background: RGBA(127, 21, 7, 0.25);
    color: #000;
}

.label_nadgr {
    width: 100%;
    height: 100%;
    float: left;
}

.sticky {
    position: fixed;
    z-index: 101;
}

.stop {
    position: relative;
    z-index: 101;
}


/*
    GALLARY
----------------------------------------------------------------*/

.gallary-item {
    margin-bottom: 25px;
    position: relative;
}

.gallary-item a {
    color: #fff;
}

.gallary-photo {
    width: 100%;
    height: 350px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    background-color: #EDEDED;
    border: 1px solid #D5D5D5;
}

.gallary-title {
    position: absolute;
    bottom: 0px;
    background: #666;
    width: 100%;
    padding: 10px;
    text-align: center;
    z-index: 2;
    opacity: 0;
}

.gallary .gallary-hover {
    opacity: 0;
    position: absolute;
    top: 1px;
    left: 13px;
    width: calc(100% - 26px);
    height: calc(100% - 1px);
    background: RGBA(255, 255, 255, 0.7);
    transition: all .3s linear;
    z-index: 1;
}

.gallary-item:hover .gallary-hover {
    opacity: 1;
}

.gallary-item:hover .gallary-title {
    opacity: 1;
}

.gallary-item:hover .gallary-photo {
    border-color: #000;
}

.gallary-item .gallary-hover div {
    position: absolute;
    top: 30%;
    left: 24%;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    text-align: center;
    color: #952C21;
    /*text-shadow: 1px 1px 1px #FFF, 0 0 1em #000;*/
}

.gallary-item .gallary-hover div {
    top: 40%;
    left: 0%;
    text-align: center;
}

.catalog_tegs {
    margin-bottom: 15px;
}

.catalog_tegs .teg {
    background-color: rgba(237, 237, 237, 1);
    border-radius: 10px;
    padding: 2px 10px;
    float: left;
    margin: 5px;
    transition: all .3s linear;
    cursor: pointer;
}

.catalog_tegs .teg:hover {
    background-color: #4a4a4a;
}

.catalog_tegs .teg a {
    color: #000;
}

.catalog_tegs .teg:hover a {
    color: #FFFFFF;
}

.catalog_tegs .teg.activ a {
    color: #FFFFFF;
}

.catalog_tegs .teg.activ {
    background-color: #952C21;
    color: #FFFFFF;
}

.bx-filter-select-text .filter-img {
    display: none;
}

.filter-img {
    width: 25px;
    position: absolute;
    top: -5px;
    left: 215px;
}

.hidden {
    display: none;
}

.navig-pag-top {
    margin: 5px 0 15px;
}

.section-description p {
    text-indent: 20px;
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 22px;
}

.modern-page-navigation {
    margin-bottom: 15px;
}

.clb {
    clear: both;
}

@media only screen and (max-width: 991px) {
    .phone-hidden {
        display: none;
    }

    .headerbar {
        padding: 15px 0 15px;
    }

    .main_filter label {
        width: 75px;
        height: 75px;
    }

    .section-title {
        margin-bottom: 15px;
    }

    .main_filter .selection__item {
        margin-bottom: 15px;
    }

    .main_filter .selection__btn {
        margin-top: 10px;
    }

    .selection {
        margin-bottom: 30px;
    }

    .feedback {
        margin-bottom: 30px;
    }

    .other__title {
        height: 32px;
    }

    .gallary .gallary-photo {
        height: 180px;
    }

    .gallary .gallary-hover,
    .gallary .gallary-title {
        display: none;
    }

    .gallary .catalog__item {
        height: 180px;
        width: 44%;
        margin: 0px 2px 10px 13px;
    }

    .gallary .catalog__more {
        padding: 25% 0;
    }

    .second-menu {
        display: none;
    }

    .article,
    .text {
        margin-bottom: 30px;
    }

    .consult::before {
        width: 88%;
        left: 6%;
    }

    .footer .row::after {
        clear: both;
    }

    .catalog__item .more_info {
        display: none !important;
    }

    .catalog__item .catalog__img {
        height: 120px;
    }

    .catalog__item .catalog__price {
        float: none !important;
    }

    .modal {
        width: 320px;
    }

    .footerbar__contacts {
        margin-bottom: 15px;
    }

    .catalog__section-content {
        margin-bottom: 10px;
    }

    .modern-page-navigation {
        margin-bottom: 10px;
    }

    .product .selection__radio {
        width: 30% !important;
    }

    .modal--succes {
        background-position: center 80px;
    }

    .product__btn {
        margin: 0 auto 5px;
    }

    .product__size {
        display: block;
    }

    .product__size-inputs {
        width: 100%;
    }

    .product__size-item .col-md-6 {
        float: left;
        width: 50%;
        text-align: right;
        padding-right: 30px;
    }

    .product__size-price {
        width: 100%;
        padding-left: 10px;
        text-align: center;
    }
}

.load_more {
    margin: 10px 12px;
    padding: 13px;
    cursor: pointer;
    font-size: 16px;
    width: calc(95% - 4px);
    background: #FFF;
    color: #952C21;
    border: 2px solid #952c21;
    text-align: center;
    font-weight: bold;
    transition: all .3s linear;
}

.load_more:hover {
    background: #EDEDED;
    color: #000;
}

.load_more .loading {
    width: 20px;
    margin-left: 10px;
    position: absolute;
}

.no_found {
    font-size: 20px;
    text-align: center;
    margin: 160px 0;
}

.filter-clear-div {
    margin: 10px auto;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    background: #FFF;
    border: 2px solid #952c21;
    text-align: center;
    font-weight: bold;
    transition: all .3s linear;
}

.filter-clear {
    color: #952C21;
    width: 100%;
    margin: 0 15px;
}

.filter-clear:hover .filter-clear-div {
    background: #EDEDED;
}

.filter-clear:hover {
    color: #000;
}

.filter-clear-fix {
    position: fixed;
    bottom: 0;
    width: 264px;
    padding: 10px 15px;
    margin: 0;
    background: #FFF;
    border-top: 1px solid;
}

.filter-btn {
    display: none;
}

.messengers {
    /* opacity: 1; */
    /* position: absolute; */
    /* z-index: 999; */
    /* width: 270px; */
    /* height: 210px; */
    /* background: #FFF; */
    /* border: 1px solid #952C21; */
    /* border-radius: 10px; */
    /* right: 70px; */
    /* top: calc(50% - 35px); */
    text-align: center;
}

.messengers-phones {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.messengers .close-btn {
    margin: 0;
    font-size: 20px;
    top: 10px;
    right: 10px;
}

.messengers p:nth-child(1) {
    font-size: 20px;
}

.messengers p:nth-child(2) {
    font-size: 16px;
}

.messengers a {
    /* float: left; */
    /* margin: 10px 16px; */
    color: #000;
    margin-top: 10px;
}

.messengers .mes_telrgram {
    /* margin: 0 auto 5px; */
    width: 50px;
    height: 50px;
    background: url('/local/assets/images/telegram-128x128.png') center center no-repeat;
    background-size: cover;
}

.messengers .mes_telephone {
    /* margin: 0 auto 5px; */
    width: 50px;
    height: 50px;
    background: url('/local/assets/images/metroui2.png') center center no-repeat;
    background-size: cover;
}

.messengers .mes_viber {
    margin: 0 auto 5px;
    width: 50px;
    height: 50px;
    background: url('/local/assets/images/viber-1-128x128.png') center center no-repeat;
    background-size: cover;
}

.messengers .mes_email {
    color: transparent;
}

.messengers_buttom {
    position: fixed;
    z-index: 999;
    top: calc(50% - 25px);
    right: 10px;
    transition: 0.4s;
}

.messengers_buttom .icon {
    opacity: 1;
    cursor: pointer;
    width: 50px;
    height: 50px;
    /* background: url(/local/assets/images/messaging6.png) center center no-repeat;
    background-size: contain;
        background-size: contain; */
    background-color: #932c22;
    border-radius: 50%;
    padding: 13px;
    position: relative;
}

.messengers_buttom.active .icon {
    opacity: 0.8;
    filter: grayscale(1);
}

.messengers_buttom .icon svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.messengers_buttom .icon::after,
.messengers_buttom .icon::before {
    content: '';
    position: absolute;
    border: 2px solid #932c22;
    left: -20px;
    opacity: 0;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
}

.messengers_buttom .icon::after {
    animation-delay: 1.25s;
}

.messengers_buttom.active .icon::after,
.messengers_buttom.active .icon::before {
    content: none;
}


@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}


@media only screen and (min-width: 991px) {

    .messengers_buttom:hover .icon::after,
    .messengers_buttom:hover .icon::before {
        content: none;
    }

    .messengers_buttom {
        top: calc(50% - 35px);
    }

    .messengers_buttom .footerbar__tel {
        display: none;
    }

    .messengers_buttom .icon {
        width: 70px;
        height: 70px;
    }

    .messengers_buttom:hover .icon {
        opacity: 0.8;
        filter: grayscale(1);
    }

    .messengers_buttom:hover .messengers,
    .messengers:hover {
        display: block;
    }
}


.filter .close-btn {
    display: none;
}

.hideCaptcha {
    display: none;
}

.product__gallery {
    position: relative;
}

.labels {
    position: absolute;
    z-index: 999;
    padding: 5px 10px;
    left: 0;
    top: 0;
    font-weight: 700;
}

.labels.all_include {
    background-color: #952C21;
    color: #fff;
}

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