@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
*, :after, :before, :focus {
    box-sizing: inherit;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
a {
    text-decoration: none;
}
div, ul, li, ol, p {
    margin: 0;
    padding: 0;
}
body {
	padding:0;
	font-family: Roboto, sans-serif;
	font-size:16px;
	color:#1b1b1b;
	background:#fff;
	position:relative;
	height:100%;
	margin:0;

	}
header {
	z-index: 1;
}	
.container {
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}
.sidebar {
	box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    box-shadow: 0 0 15px 1px rgba(0,0,0,.4);
    z-index: 101;
    width: 310px;
    background: #fff;
}	
.sidebar__logo {
    display: block;
    padding: 36px 36px 20px;
    transition: opacity .3s;
}
.sidebar__logo img {
    display: block;
    margin: 0 auto;
    width: 100%;

}
.sidebar__logo .logo-info {
    color: #858585;
    text-align: center;
    padding-top: 10px;
    font-size: 14px;
}
.sidebar__list, .sidebar__list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.sidebar__list.fixed {
    position: fixed;
    top: 10px;
    width: 300px;
}

.sidebar__icon {
    font-size: 26px;
    margin-right: 10px;
    transition: color .3s;
}
.content, body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.content {
    flex-direction: column;
    min-height: 100vh;
    min-width: 100%;
    flex: 1;
    box-sizing: border-box;
}
.header__top {
    border-bottom: 1px solid #c9ced6;
}
.container,
.news-box-page {
    padding-left: 45px;
    padding-right: 45px;
}
.header__top .container {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.header__right, .header__top .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header__right {
    margin-left: auto;
}
.header__phone {
    line-height: 18px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    padding-top: 3px;
}
.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    line-height: 19px;
    padding: 8px 24px;
    background-color: #03ca28;
    color: #fff;
    border: 1px solid #03ca28;
    transition: all .3s;
    cursor: pointer;
    text-align: center;
}
.btn:hover {
    background-color: #05df2d;
    border-color: #05df2d;
}
.btn-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    line-height: 18px;
    padding: 8px 24px;
    background-color: #03ca28;
    color: #fff;
    border: 1px solid #03ca28;
    transition: all .3s;
    cursor: pointer;
    text-align: center;	
    margin-top: 25px;
    width: 100%;
}
.hide {
    display: none;
}
.modal-geo {
    
}
.modal-geo select {
    padding-left: 15px;
    height: 40px;
    font-size: 16px;
    border: 1px solid #ddd;
    width: 100%;
}
.modal-geo .btn {
    width: 100%;
}
.modal-geo-title,
.form-input-select-container {
    margin-bottom: 15px;
}

.iagree_label {
	font-size: 15px;
}
.btn-form:hover {
    background-color: #05df2d;
    border-color: #05df2d;
}
.header__right .btn {
    width: unset;
    padding: 6px 18px;
    margin: -6px 20px -6px 20px;
}

.header__menu-list {
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin: 0 10px 0 0;
}
 .header__menu-list .geo,
 .select-city-box .geo {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    height: 34px;
    border: solid 1px #E9E9E9;
    border-radius: 5px;
    padding: 0 10px;
    cursor: pointer;
    background: #fff;
    margin-right: 35px;
    transition: 0.2s;
}
.modal-info {
    position: absolute;
    bottom: -105px;
    width: 250px;
    color: #fff;
    background: #fe7807;
    padding: 10px 15px;
    border-radius: 15px;  
    transition: 0.5s;
    animation: move 1s;
    animation-name: opacitygeo;
    animation-delay: 2s; 
    opacity: 0;
    animation-fill-mode:forwards
}
@keyframes opacitygeo {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

.modal-info:before {
    content: "";
    border: solid transparent;
    position: absolute;
    left: 25px;
    bottom: 100%;
    border-bottom-color: #fe7807;
    border-width: 14px;
    margin-left: 0;
}
.close {
    position: absolute;
    right: 10px;
    top: 5px;
    opacity: 0.5;
    cursor: pointer;
    color: #000;
}
.close:hover {
opacity: 1;
}
.select-city-box {
    position: relative;
}
.cart-city-select {
    margin-top: 10px;
    display: inline-block;
}

.select-city-box .modal-info {
    bottom: -119px;
    left: calc(50% - 125px);
}
.mobile-city-select {
    display: none;
}
@media (max-width: 767px) {
    .mobile-city-select {
        display: block;
    }
}
.select-city-mob,
.select-city-wrap .geo  {
    display: inline-block;
}
.select-city-mob {
    color: #fff;
}
.cart-city-select .select-city-mob {
    color: #000;
}
.mobile-city-select .select-city-wrap {
    text-align: center;
    margin-top: 15px;
    background: #fe7908;
    padding: 15px 0;
}
.header__menu-list .geo .icon-pin,
.select-city-box .geo .icon-pin {
    position: relative;
    top: 0px;
    fill: #cbd2d5;
    margin-right: 5px;
    width: 14px;
    height: 21px;
    transition: 0.2s;    
}
.select-city-box .geo .icon-pin {
    top: 4px;
}
.header__menu-list .geo .icon-arrow-bottom,
.select-city-box .geo .icon-arrow-bottom {
    fill: #cbd2d5;
    margin-left: 5px;
    position: relative;
    top: 1px;
    width: 8px;
    height: 5px;    
    transition: 0.2s;    
}   
.select-city-box.cart-city-select .geo .icon-arrow-bottom {
    top: -3px;
    fill: #4caf50;
}
.select-city-box.cart-city-select .geo .icon-pin {
    fill: #4caf50;
}
.header__menu-list .geo:hover .icon-arrow-bottom,
.header__menu-list .geo:hover .icon-pin {
    fill: #fff;
}       
.header__menu-list .geo:hover {
    border: solid 1px #05df2d;
    background: #05df2d;
    color: #fff;
}
.dropdown {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.header__menu-item {
    margin-right: 25px;
    white-space: nowrap;
	position: relative;
	display: flex;
	align-items: center;
}
.header__menu-link {
    position: relative;
    font-size: 18px;
    line-height: 1;
    color: #000;
    transition: color 0.2s;
    cursor: pointer;
}
.header__menu-link:hover {
    color: #05df2d;
}

a.header-cart {
    display: none;
}

.dropdown__wrapper {
    display: none;
    position: absolute;
    margin-top: 28px;
    width: 180px;
    top: 0;
    left: 0;
    z-index: 2;
}
.dropdown__wrapper:before {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    height: 10px;
    width: 100%;
    display: block;
}
.header__menu-dropdown {
    max-width: 1530px;
    width: 73vw;
    background-color: #fff;
    z-index: 10;
    padding: 48px;
    display: none;
    box-shadow: 0 0 48px #e4e6eb;
}
.header__menu-item--dropdown>.header__menu-link {
    padding-right: 20px;
}


.icon-tel {
    fill: white;
    position: relative;
    width: 20px;
    height: 20px;
    top: 0px;
    left: -7px;     
}
.dropdown:hover .dropdown__wrapper {
    display: block;
}
.header__menu-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.footer__title {
    position: relative;
    display: inline-block;
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #8c9199;
    text-transform: uppercase;
}
.footer__list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer__item {
    margin-bottom: 10px;
}
.footer__link {
    font-size: 16px;
    line-height: 1;
    color: #000;
    transition: color .3s;
    cursor: pointer;
}
.title-block,
h1 {
    font-size: 42px;
    text-transform: uppercase;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 25px;
    font-weight: 300;
}
h1  {
	padding-top: 15px;
	padding-bottom: 15px;
	margin: 0;
    text-transform: none;
    font-size: 32px;
}
.h3 {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 18px;
}
h2 {
    font-size: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}
.tach-info {
    display: none;
    padding: 0 15px 0 15px;
    flex-direction: row-reverse;
    box-sizing: border-box;
    margin-top: -20px;
}
.tach-info img {height: 42px;}

.page__main {
    flex: 1 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
	position: relative;
    overflow: hidden;
}
.about-item {
    width: calc((100% - 3px)/3);
    padding: 40px 20px;
    position: relative;
    border-right: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
    box-sizing: border-box;	
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-box {
	padding: 0;
    margin: 0;
    list-style: none;	
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.icon-federal,
.icon-servis {
    fill: #03ca28;
    margin-right: 5px;
    height: 70px;
    display: block;
    width: 100%;
    text-align: center;
    -webkit-flex-basis: 30%;
    flex-basis: 30%;    
}

.icon-tehcontrol {
    fill: #03ca28;
    margin-right: 5px;
    height: 70px;
    display: block;
    width: 270px;
    text-align: center;	
    -webkit-flex-basis: 30%;
    flex-basis: 30%;    
}
.icon-baza {
	fill: #03ca28;
    margin-right: 5px;
    height: 70px;
    display: block;
    width: 270px;
    text-align: center;		
    -webkit-flex-basis: 30%;
    flex-basis: 30%;
}
.icon-srok,
.icon-oborudovanie {
	fill: #03ca28;
    margin-right: 5px;
    height: 70px;
    display: block;
    width: 270px;
    text-align: center;		
    -webkit-flex-basis: 30%;
    flex-basis: 30%;	
}
.breadcrumb {
    padding: 18px 0px;
    margin-bottom: 0px;
    list-style: none;
    border-radius: 0px;
}
.bredcrumbs-text {display:inline-block;color: #a6a6a6;}
.breadcrumb > li {
    display: inline-block;
}
.breadcrumb > li + li:before {
    content: "\2022";
    padding: 0 6px;
    color: #858585;
}
.breadcrumb > li a {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: #858585;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.breadcrumb > li a:hover {
    color: #a6a6a6;
    text-decoration:none;
}
.info-massage-wrap {
    padding-left: 45px;
    padding-right: 45px;
    min-width: 100%;
}
.info-massage {
    background: #03ca28;
    padding: 15px;
    color: #fff;
    font-weight: 500;
}
.index-page .info-massage-wrap {
    margin-top: 15px;
    margin-bottom: -33px;
}
.about-item div {
	-webkit-flex-basis: 70%;
    flex-basis: 70%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.about-item div span {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.news-box,
.news-item_bottom,
.action-item_bottom,
.action-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-box,
.action-box,
.article-box,
.locations-box,
.article-header {
    padding-left: 45px;
    padding-right: 45px;
}
.news-item,
.action-item {
    margin: 0 15px;
    border: solid 1px #e4e4e4;
    -webkit-flex-basis: 50%;
    flex-basis: calc(50% - 40px);
    box-sizing: border-box;
    margin-bottom: 40px;
}
.owl-item .action-item {
    margin-bottom: 0;
}
.action-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    box-sizing: border-box;
}
.news-item:hover,
.action-item:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.news-item:nth-child(2n),
.action-item:nth-child(2n){
    margin-right: 0;
}
.news-item_img img,
.action-item_img img {
    max-height: 300px;
    max-width: 100%;
}
.news-item_title,
.action-item_title {
    font-size: 18px;
    padding: 25px;
    padding-bottom: 5px;
}
.news-item_title a,
.action-item_title a {
	color: #000;
	font-weight: 400;
}
.action-item_title a { 
    min-height: 44px;
    display: block;
}
.news-item_text,
.action-item_text {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 20px;	
    padding: 25px;
}
.news-item-bottom_date,
.action-item-bottom_date {
	font-size: 14px;
    color: #8c9199;
}
.news-box-page-item,
.action-box-page-item {
    border-bottom: 1px solid #ccc;
}
.news-item_bottom,
.action-item_bottom {
    background-color: #f4f8fb;
    padding: 10px 25px;
}
.action-active {
    
}
.action-active span {
    font-weight: 700;
}
.action-end {
    color: red;
}
.article-header img {
    max-width: 100%;
}
.action-date {
    background: #f4f8fb;
    padding: 15px 45px;
    margin-top: 25px;
}
.footer {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f4f8fb;
    margin-top: 100px;
	color:#787878;
}
.footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.footer__bottom {
    border-top: 1px solid #c9ced6;
    padding-top: 20px;
    font-size: 14px;
    line-height: 18px;
}
.footer__info {
    margin: 0 0 20px;
}
.footer__privacy {
    margin: 0 0 25px;
}
.footer__privacy a {
    color: #787878;
    text-decoration: underline;
}
.footer__copyright {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}
.footer__copyright-item.payments {
    display: flex;
    align-items: center;
}
.footer__copyright-item.payments img {
    max-width: 100%;
    margin-right: 15px;
    max-height: 15px;
}
.footer__copyright-item.payments img:last-child {
    margin-right: 0;
}
.footer__phone {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}
.footer__phone a {
	color:#000;
}
.series_head h3, .series_head h1, 
.series_head .h3, .series_head .h1 {
    color: #444;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding-top: 15px;
    padding-bottom: 15px;
    display: inline-block;
}
.series_head h1, .series_head .h1 {
    font-weight: bold;
    padding-top: 15px;
    padding-bottom: 45px;
}
.btn-modal-box {
    display: flex;
    margin-top: 15px;
}
.btn-modal-box .btn-modal-cart {
    text-transform: uppercase;
    margin-left: 15px;
}
.btn-modal-box .btn-modal-add {
    background: #f4f8fb;
    color: #000;
    border-color: #f4f8fb;
}
.fancybox-content h2 {
    padding-top: 0;
    margin-top: 0;
}
@media (max-width: 768px) {
.tach-info {
    display: flex;
}
.owl-nav {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    border: none;
    background: none;
    font-size: 80px;
    color: #211c18;
}
.owl-prev, .owl-next {
    position: absolute;
    top: 50%;
    left: -20px;
}
.owl-next {
    left: auto;
    right: -20px;
}
.menu-open {
    overflow:hidden;
}
.nav-tabs > li > a {
    border: 1px solid #dddddd;
    border-radius: 4px;
}
.title-block,
h1 {
    font-size: 28px;
    padding-top: 30px;
    padding-bottom: 25px;
}
.news-box_item-desc_text {
    font-size: 14px;
}
.news-box,
.action-box {
     display: block;
 }
}
.slider-utp {
    margin-top: 8px;
    text-align: center;
}
.slider-utp img {
    max-width: 100%;
}
    .select-param-box input[type="checkbox"]+label {
    display: inline-block;
    padding-left: 32px;
    font-size: 16px;
    line-height: 26px;
    cursor: pointer;
    position: relative;
    margin-bottom: 15px;
    }
    
    .select-param-box input[type="checkbox"]+label:before {
        width: 24px;
        height: 24px;
        content: '';
        box-sizing: border-box;
        background-color: #fff;
        border: 2px solid #cdcdcd;
        border-radius: 4px;
        position: absolute;
        top: 0;
        left: 0;
        transition: background-color ease .3s;
    }
    .select-param-box input[type="checkbox"]:checked+label:before {
    background-color: #03ca28;
    border-color: #03ca28;
    }
    .select-param-box input[type="checkbox"]+label:after {
        display: block;
        width: 24px;
        height: 24px;
        content: '';
        background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMS42NSAzLjc0YTEgMSAwIDEgMC0xLjMgMS41MmwzLjUgM2ExIDEgMCAwIDAgMS40NDMtLjE1bDUtNi41QTEgMSAwIDAgMCA4LjcwNy4zOUw0LjM1IDYuMDU1IDEuNjUgMy43NHoiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0ibm9uemVybyIvPjwvc3ZnPg==) no-repeat 50% 50%;
        background-size: 10px auto;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }
    .select-param-box input[type="checkbox"]:checked+label:after {
        opacity: 1;
    }
    .select-param-box input[type="checkbox"]:checked, .select-param-box input[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
@media (max-width:1199px) {
.owl-nav {
	display: none;
    }
    .header__menu-list .geo {
    margin-left: 30px;
}
}
@media (max-width: 425px) {
.nav-tabs > li {
    width: 100%;
    }
}
@media (min-width: 768px) and (max-width: 826px) {
.header__right .btn {
    margin: -6px 15px -6px 0px;
}
.header__menu-list .geo {
    margin-left: 15px;
    margin-right: 10px;
}

}
@media (min-width:768px) {
    a.header-cart {
    background: #f4f8fb;
    margin-top: -16px;
    margin-bottom: -16px;
    padding-right: 5px;
    margin-left: 20px;
    transition: 0.2s;
    font-size: 16px;
    line-height: 16px;
    padding-left: 33px;
    display: flex;
    width: max-content;
    position: relative;
    color: #444;
    align-items: center;
}
a.header-cart:hover {
    background:#05df2d;
    color: #fff;
}
a.header-cart .header-icon-cart:before {
    content: '';
    position: absolute;
    top: 16px;
    left: 6px;
    width: 20px;
    height: 20px;
    background: url(/img/Basket.svg) top left no-repeat scroll;
}
a.header-cart:hover .header-icon-cart:before {
    background: url(/img/Basket-white.svg) top left no-repeat scroll;
}
}
@media (min-width: 1024px) {
.content {
	padding-left: 310px;
    }

.header__right .btn {
    margin-left: 0;
}
  
}

@media (min-width: 1025px) {
a.header-cart .header-icon-cart:before {
    width: 29px;
    height: 29px;
    top: 13px;
    left: 10px;
} 
a.header-cart {
    padding-right: 15px;
    padding-left: 47px;
}
.sidebar__list a {
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 10px 8px 22px;
    align-items: center;
    width: 100%;
    position: relative;
    font-size: 16px;
    line-height: 1;
    min-height: 44px;
    transition: background-color .3s;
}

.sidebar__list li.show>a {
    font-weight: 700;
}
.sidebar__list a:hover {
    background-color: #fff;
}
.sidebar__list li.show.depth1>a {
    background: #f2f4f7;
    font-weight: 400;
    margin-bottom: 8px;
}
.sidebar__list li>ul>li:hover {
	background:#fff;
}
.sidebar__list li>ul {display:none;}
.sidebar__list li:hover>ul {
	padding-top: 6.4vw;
	display:block;
    position: absolute;
	background:#f2f4f7;
    left: 99.7%;
    top: 0;
    z-index: 2;
	width: 16.0417vw;
	border-right: 1px solid #000;
	min-height: 100vh;
}
.sidebar__list li:first-child:hover>ul {
    padding-top: 4.4vw;
}
.sidebar__list li:hover>ul>li>ul {
	background: #fff;
}
.sidebar__list li:hover>ul>li>ul>li:hover {
	background:#f2f4f7;
}
.sidebar__action, .sidebar__hidden {
    display: none;
}
}

@media (max-width: 1024px) {
.sidebar__list a, .sidebar__list ul.show>li>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.sidebar__list a {
    color: #000;
    font-size: 18px;
    min-height: 56px;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #c9ced6;
    padding: 10px 20px;
    transition: background-color .3s;
    border-left: 0;
}
.sidebar__list li.show>a {
    border-left: 0;
}
.sidebar__list li.active>a {
    background: #03ca28;
}
.sidebar__list ul {
    position: static;
    width: unset;
    overflow: unset;
    min-height: unset;
    background: transparent;
    display: none;
}
.sidebar__list ul.show {
    display: block;
    padding: 0;
}
.sidebar__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #c9ced6;
    font-size: 18px;
    background: #f2f4f7;
}
.sidebar__back {
    flex: 1;
    border-right: 1px solid #c9ced6;
    padding: 0 20px;
    min-height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.sidebar__list a, .sidebar__list ul.show>li>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.sidebar.active {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    min-height: unset;
    width: unset;
    background-color: #fff;
    box-shadow: none;
    z-index: 999999;
    overflow-y: auto;
}
.sidebar.active .sidebar__logo, 
.sidebar__description, 
.sidebar ul.hidee>li.show:not(.active)>a, 
.sidebar ul.hidee>li:not(.show) {
    display: none;
}
.sidebar__list a.sidebar__go:before {
    display: none;
}
}
.sidebar__list a:before {
    content: "";
    position: absolute;
    right: 24px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-45deg);
}
.sidebar__list li.depth1 ul li a:before {
	display: none;
}
.sidebar__list li.noarw a:before  {
	display: none;
}
.input-btn {
    border: 1px solid #2c2c2c;
    padding: 15px;
    width: 100%;
    margin-bottom: 15px;
}
a.sidebar__go {
    border-bottom: none;
}
@media (max-width: 1023px) {
.sidebar {
	display: none;
}
.sidebar.active {
	display: block;
}
}
@media (min-width: 1025px) and (max-width: 1439px) {
    .sidebar__list li:hover>ul {
        width: 25vw;
    }
    .sidebar__list li:first-child:hover>ul li a {
        min-height: 40px;
    }
}
@media (max-width: 1199px) {
.content {
    padding-left: 250px;
}
.sidebar {
	width: 250px;
}
.sidebar__list a {
	font-size: 16px;
	padding: 10px 10px;
}
.series_head h3, .series_head h1, 
.series_head .h3, .series_head .h1 {
    font-size: 20px;
    padding: 0;
}
.breadcrumb {
    padding: 0px;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
}
.steeldoors {
    margin: 0 15px;
}
.product_block ul li {
    width: 25%;
    margin: auto;
}
.about-item {
    width: calc((100% - 3px)/2);
}

}
.header-mobile-menu {
	display: none;
}
.om {
	display: none;
}

@media (max-width: 1023px) {
.content {
    padding-left: 0px;
}
.header-mobile-menu {
	display: block;
}
.om {
	display: block;
}
}
.header-logo {
	display: none;
}
.header-logo .sidebar__logo img {
    width: auto;
    height: 40px;
}
.header-logo .sidebar__logo {
	padding: 0;
}
@media (max-width: 767px) {
.about-item {
    width: calc((100% - 3px)/1);
}
.footer__top {
    display: block;
}
.series_head h3, .series_head h1, 
.series_head .h3, .series_head .h1 {
    font-size: 18px;
    padding: 0 15px;
}
.product-img img {
    max-height: 400px;
}
.product-cart .product-desc .selections ul li {
    margin-right: 10px;
    margin-bottom: 10px;
}
.news-box_item {
    margin-right: 0px;
}
.news-box-page {
	padding: 0 15px;
}
.header__right .btn {
	display: none;
}
.login-name {
	display: none;
}
.header-logo {
	display: block;
	flex: auto;
}
.header__menu-list,
.header__phone {
	display: none;
}
}

.mobile-menu-wrap .btn-action-menu {
    position: fixed;
    top: 0;
    right: 20px;
}
.btn-action-menu {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    overflow: hidden;
}
.btn-action-menu:before, .btn-action-menu:after {
    content: "";
    display: block;
    width: 22px;
    height: 18px;
    border-top: 2px solid #292929;
    border-bottom: 2px solid #292929;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -9px 0 0 -11px;
    -webkit-transition: -webkit-transform ease 0.2s;
    transition: -webkit-transform ease 0.2s;
    -o-transition: transform ease 0.2s;
    transition: transform ease 0.2s;
    transition: transform ease 0.2s, -webkit-transform ease 0.2s;
}

.btn-action-menu:before, .btn-action-menu:after {
    content: "";
    display: block;
    width: 22px;
    height: 18px;
    border-top: 2px solid #292929;
    border-bottom: 2px solid #292929;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -9px 0 0 -11px;
    -webkit-transition: -webkit-transform ease 0.2s;
    transition: -webkit-transform ease 0.2s;
    -o-transition: transform ease 0.2s;
    transition: transform ease 0.2s;
    transition: transform ease 0.2s, -webkit-transform ease 0.2s;
}
.btn-action-menu:before {
    border-top: none;
    height: 2px;
    margin-top: -1px;
}
.mobile-menu-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 20px;
    min-height: 56px;
    height: 56px;
    border-bottom: 1px solid #c9ced6;
    background: #eee;
    align-items: center;
    font-size: 18px;
    position: relative;
}
@media (min-width: 1024px) {
.mobile-menu-top {
    display: none;
    order: -2;
}
}
.mobile-menu-top-right {
	margin-left: auto;
}
.mobile-menu-top-close {
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    top: 50%;
    left: 20px;
    cursor: pointer;
    transform: translateY(-50%);
}
.mobile-menu-top-close:after, .mobile-menu-top-close:before {
    position: absolute;
    top: 50%;
    content: "";
    width: 35px;
    height: 2px;
    background-color: #333;
    transition: background-color .3s;
}
.mobile-menu-top-close:before {
    transform: rotate(-45deg);
}
.mobile-menu-top-close:after {
    transform: rotate(45deg);
}
.catalog-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; 
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;   
    padding-left: 45px;
    padding-right: 45px;
}
.catalog-box.owl-carousel {
    box-sizing: border-box;
}
.catalog-item {
    width: calc(25% - 30px);
    margin-right: 30px;
    margin-bottom: 30px;
    box-sizing: border-box;
    /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15); */
    border-radius: 0 0 8px 8px;
    transition: 0.4s;
    border: solid 1px #e4e4e4;
    position: relative;
}
.catalog-item .cat-link {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}
    .cart-dop-box {
        max-width: 100%;
        padding: 0 15px;
        position: relative;
        box-sizing: border-box;
        padding-left: 45px;
        padding-right: 45px;
    }
    .cart-dop-item {
        display: flex;
        border: solid 1px #e4e4e4;
        padding: 15px;
    }
    .cart-dop-item_pic {
        margin-right: 25px;
    }
    .cart-dop-item_pic img {max-width: 200px;}
    .cart-dop-item-wrap {
        flex-basis: 100%
    }
    .cart-dop-item_params {
        display: table;
        width: 100%;
    }
    .cart-dop-item_params-title {
        display: table-cell;
        vertical-align: middle;
        height: 165px;
        width: 60%;
        font-size: 20px;
    }
    .cart-dop-item_params_pricebox-wrap {
        display: table-cell;
        vertical-align: middle;
        height: 165px;
        width: 40%;
         
    }
    .cart-dop-item_params_pricebox {
        display: flex;
        font-size: 20px;
    }
    .cart-dop-item_params_pricebox-price,
    .cart-dop-item_params_pricebox-btn {
        flex-basis: 50%;
    }
@media (max-width: 1024px) {
    .cart-dop-item_params_pricebox {
        display: block;
    }
    .cart-dop-item_params_pricebox-btn {
        margin-top: 10px;
    }
}
@media (max-width: 767px) {
    .cart-dop-box {
        padding-left: 15px;
        padding-right: 15px;
    }
    .cart-dop-item, 
    .cart-dop-item_params {
        display: block;
    }
    .cart-dop-item_pic {text-align: center;margin-right: 0;}
    .cart-dop-item_pic img {max-width: 100%;}
    .cart-dop-item_params-title,
    .cart-dop-item_params_pricebox-wrap {
        display: block;
        height: auto;
        width: 100%;
    }
    .cart-dop-item_params_pricebox-price {
        margin: 15px 0;
    }
}
.owl-item .catalog-item {
    width: auto;
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 0;
}
.catalog-item:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
.catalog-item img {
    max-width: 100%;
    
}
.bage-box {
    position: absolute;
    left: 0;
    top: 5px;
}
.bage-item {
    background: #03ca28;
    padding: 3px 10px;
    color: #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    max-width: max-content;
}
.cart-sklad .bage-item {
    border-radius: 5px;
}
.net-na-skalde .bage-item {
    background: #e95a07;
}
.bage-item-bf {
    background: rgb(255, 0, 0);
    padding: 3px 10px;
    color: #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-top: 3px;
}
.cart-sklad {
    padding-top: 15px;
    color: #03ca28;
    display: -webkit-box;
    display: -ms-flexbox;  
    display: flex;
    align-items: center;
}
.cart-sklad img {
    margin-right: 15px;
}
.catalog-item-params {
    padding: 15px;
}
.catalog-item_title {
    color: #4E5E6C;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    margin-bottom: 5px;  
    min-height: 36px;
}
.catalog-item_title a {
    color: #4E5E6C;
}
.owl-item .catalog-item_title {
    text-transform: none;
    font-size: 18px;
    font-weight: 500;
}
.catalog-item_desc {
    font-size: 13px;
    line-height: 21px;
    color: #000;
    margin-bottom: 18px;
    display: flex;
}

.catalog-item_desc .catalog-item_desc-row {
    display: block;
    width: 100%;
    border-right: 1px solid #ccc;
    text-align: center;
}
.catalog-item_desc .catalog-item_desc-row .str {
    font-weight: 300;
}
.catalog-item_desc .catalog-item_desc-row .str:last-child {
    color:#a2a2a2;
}
.catalog-item_desc .catalog-item_desc-row .str span {
    font-weight: 700;
    font-size: 16px;
}
.catalog-item_desc .catalog-item_desc-row:last-child {
    border-right: none;
}
.catalog-item_desc .catalog-item_desc-row span {
    font-weight: 600;
}
.catalog-item_price,
.catalog-item_skidka {
    width: max-content;
    color: #fff;
    text-align: center;
    /*background: #03ca28;*/
    line-height: 1;
    font-size: 1.2em;
    font-weight: 300;
    padding: 10px 0px;
    flex-basis: auto;
    flex: 1 auto;
}
.catalog-item_price {
    border-left: 7px solid #fff;
    color: #000;
    padding: 0;
}
.catalog-item_price .oldp {
    font-weight: 400;
    font-size: 15px;
    color: #f00;
    text-decoration: line-through;
}
.catalog-item_skidka {
    background: red;
    font-weight: 600;
    padding: 10px 0;
    flex-basis: 16%;
}
.catalog-item_btn {
    flex-basis: 100%;
    margin-top: 15px;
}
.catalog-item_price-box {
    display: -webkit-box;
    display: -ms-flexbox;  
    display: flex;
    flex-flow: row wrap;
    flex: 1 100%;   
}

.catalog-item_price span {
    font-weight: 700;
}
.catalog-item_btn a.btn {
    background: #f5f5f5;
    color: #000;
    padding: 10px 20px;
    border-radius: inherit;
    border: none;
    line-height: 1;
    font-size: 1.2em;
    font-weight: 300;
}

.catalog-item:hover a.btn {
    background: #05df2d;
    color: #fff;
}
.catalog-tag-box {
    padding-left: 48px;
    padding-right: 48px; 
    padding-top: 15px;
    padding-bottom: 25px;
}
@media (max-width: 1399px) {
    .index-page .info-massage-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
}
}
@media (max-width: 1024px) {
    .catalog-tag-box,
    .info-massage-wrap  {
        padding-left: 15px;
        padding-right: 15px;
    }
    .info-massage-wrap {
        margin-top: 15px;
    }
   
}
.catalog-tag-item {
    padding: 5px 15px;
    background: #f4f8fb;
    border-radius: 15px;
    color: #000000;
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 10px;
    display: inline-block;
    margin-right: 10px;  
    transition: 0.2s;
}
.catalog-tag-item:hover {
    background: #03ca28;
    color: #fff;
}
    .top-section {
        background: #f4f3f1;
        overflow: hidden;
        min-height: 540px;
        position: relative;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        height: 540px;
    }
    .main-item-5 .top-section {
        background: #fff;
    }
    .main-item-4 .top-section {
        background: #bfd46b;
    }
    .main-item-soft .top-section {
        background: #fffee4;
    }
    .owl-carousel {
        z-index: 0 !important;
    }
    .top-section-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: url(/img/progress_new_main.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .main-item-2 .top-section-bg {
        background: url(/img/6list_pkb.jpg);
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
        .main-item-3 .top-section-bg {
        background: url(/img/privedi-druga-5-main.jpg);
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
.main-item-4 .top-section-bg {
        background: url(/img/koleso_teplitca.jpg);
        position: absolute;
        top: 0;
        right: 0;
        width: 60%;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
.main-item-5 .top-section-bg {
        background: url(/img/besplatnoe-hranenie-do-vesny.jpg);
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
.main-item-6 .top-section-bg {
        background: url(/img/teplitca_10obogrevatel.jpg);
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
.main-item-7 .top-section {
        background: #fda503;
    }
    .main-item-7 .top-section-bg {
        background: url(/img/bonus-teplica-3000.jpg);
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
.main-item-soft .top-section-bg {
        background: url(/img/soft/myagkie-okna-main.jpg);
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

    .top-section-box {
        z-index: 3;
        position: relative;
    }

    .top-section_text {
        max-width: 630px;
        position: relative;
        font-size: 28px;
        color: #000;
    }

    .top-section_text-top {
        color: #fff;
        font-size: 38px;
        font-weight: 500;
        background: red;
        padding: 15px 20px;
        margin-bottom: 25px;
        width: max-content;
    }
    .main-item-4 .top-section_text-top {
    background: #f7ee03;
    color: #000;
    }
    .main-item-5 .top-section_text-top {
        background: #f77c05;
        color: #fff;
        text-transform: uppercase;

    }
    .top-section_text-bottom {
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 90px;
    }

    .top-section_text-price {
        padding-right: 50px;
        font-size: 38px;
    }

    .top-section_text-center {
        width: max-content;
        box-sizing: border-box;
    }

    .top-section_text-header {
        font-size: 40px;
        background: #03ca28;
        padding: 15px 20px;
        width: max-content;
        box-sizing: border-box;
        color: #fff;
        margin-bottom: 10px;
    }
    .main-item-3 .top-section_text-header {
        background: #fd821a;
    }
    .main-item-2 .top-section_text-header {
        background: #017834;
    }
    .main-item-2 .top-section_text-center .top-section_text-header:nth-child(3) {
        background: #fa0404;
    }
    .main-item-4 .top-section_text-header {
        background: #f7ee03;
         color: #000;
         font-weight: 500;
    }
    .main-item-4 .top-section_text-center .top-section_text-header:first-child {
        background: #f7ee03;
        color: #000;
        font-weight: 500;
    }
    .main-item-5 .top-section_text-header {
        background: #03ca28;
    }
    .main-item-6 .top-section_text-center .top-section_text-header {
        font-size: 45px;
        text-transform: uppercase;
    }
    .main-item-6 .top-section_text-center .top-section_text-header:nth-child(2) {
        background: #ffe502;
        color: #000;
    }
    .main-item-7 .top-section_text-center .top-section_text-header {
        background: #293975;
        text-transform: uppercase;
    }
    }
    .main-item-7 .top-section_text-center .top-section_text-header:nth-child(2) {
        background: #fa0404;
    }
   .main-item-soft .top-section_text-center .top-section_text-header {
        background: #fa0404;
        color: #fff;
   }
   .main-item-soft .top-section_text-desc {
       margin-left: 25px;
   }
    @media (max-width: 1440px) {
        .main-item-5 .top-section_text-header {
        background: #000;
        color: #fff;
        }
    }
    .top-section_text-desc {
        font-size: 32px;
        margin-top: 25px;
    }
    .top-section_btn {
        padding: 15px 20px;
        transition: 300ms ease-out;
        border: 2px solid #03ca28;
        background: #03ca28;
        color: #fff;
        text-transform: uppercase;
        font-size: 22px;
    }
    .main-item-5 .top-section_btn {
        background: #f77c05;
        border-color: #f77c05;
    }
    .main-item-4 .top-section_btn {
    background: #d41328;
    border: 2px solid #d31129;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    }
    .top-section_text-price span {
        color: #fa0404;
        font-weight: 300;
        text-decoration: line-through;
    }
    .top-section-bg img {
        display: none!important;
    }
    @media (max-width: 1440px) {
        .top-section-bg,
        .main-item-2 .top-section-bg,
        .main-item-3 .top-section-bg,
        .main-item-4 .top-section-bg,
        .main-item-5 .top-section-bg {
            width: 100%;
        }
        .top-section_text-center,
        .top-section_btn,
        .top-section_text-price {
            color: #fff;
        }
        .top-section_text-header,
        .top-section_text-top {
            font-size: 28px;
        }
        .main-item-soft .top-section-bg {
        background: url(/img/soft/myagkie-okna-main-black.jpg);
        width: 100%;
        }
    }

    @media (max-width: 1024px) {
        .top-section_text {
            max-width: none;
        }

        .main-item-box {
            padding-bottom: 30px;
        }

        .top-section_text-center,
        .top-section_text-header {
            width: initial;
        }
    }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
    .top-section_text-center, .top-section_text-header {
        width: max-content;
    }
    }
    @media (max-width: 767px) {
        .top-section_text-bottom {
            margin-top: 25px;
            display: block;
        }

        .top-section_text-header {
            font-size: 32px;
        }

        .top-section_text-top,
        .top-section_text-desc,
        .top-section_text-price {
            text-align: center;
            font-size: 28px;
        }

        .top-section_text-price {
            padding-right: 0;
        }

        .top-section_text-top,
        .top-section_text-header {
            width: auto;
            text-align: center;
            padding: 10px 10px;
        }

        .top-section_btn {
            margin-top: 25px;
            text-align: center;
        }
        .top-section {
            display: block;
        }
        .main-item-2 .top-section-bg,
        .top-section-bg,
        .main-item-3 .top-section-bg,
        .main-item-4 .top-section-bg,
         .main-item-5 .top-section-bg  {
            background: none;
            position: relative;
            display: block;
            height: auto;
        }
        
        .main-item-2 .top-section-bg {
            margin-bottom: 10px;
        }
        .main-item-2 .top-section-bg img, 
        .top-section-bg img {
            display: block!important;
            max-height: 300px;
        }
        .main-item-soft .top-section-bg img {
            display: none!important;
        }
        .main-item-4 .top-section_text-top {
            display: none;
        }
        .top-section_text-top, .top-section_text-desc, .top-section_text-price {
            text-align: center;
            font-size: 18px;
        }
        .top-section_text-top {
            margin-bottom: 0;
            position: absolute;
            right: 0;
            top: -42px;
            padding: 5px;
        }
        .top-section_text-header {
            margin-top: 10px;
            font-size: 28px;
        }
        .top-section_text-price,
        .top-section_text-desc {
            color: #000;
            text-align: left;
        }
        .main-item-soft .top-section_text-desc {
            color: #fff;
        }
        .top-section_btn {
            padding: 5px;
            font-size: 22px;
            margin-top: 15px;
            margin-bottom: 15px;
        }
        .main-item-2 .top-section_text-header {
            font-size: 26px;
            padding: 3px;
            margin-bottom: 0;
            margin-top: 0;
        }
        .top-section_text-bottom {
            margin-top: 15px;
        }
        .main-item-5 .top-section_text-header {
            font-size: 32px;
        }
        .main-item-soft .top-section {
                display: table;
        }
        .main-item-soft .top-section .container {
            display: table-cell;
            vertical-align: middle;
        }
    }
    
@media (max-width:1800px) {
.catalog-item {
    width: calc(33.33333% - 30px);
}
}
@media (max-width: 1590px) {
    .header__menu-item {
        display: none;
    }
}
@media (max-width:1430px) {
.catalog-item {
    width: calc(50% - 15px);
}
.catalog-item:nth-child(2n) {
        margin-right: 0px;
}
.catalog-box .catalog-item:last-child {
    margin-bottom: 0px;
}
.catalog-box {
    padding-left: 15px;
    padding-right: 15px;
}
}
@media (max-width:767px) {
.catalog-box {
   display: block!important;
}

.catalog-item {
    width: 100%;
}

.catalog-item_price-box {
    flex-flow: row wrap;
    flex: 1 100%;
}
.catalog-item_skidka,
.catalog-item_price {
    flex-basis: auto;
    flex: 1 auto;
}
.catalog-item_btn {
    flex-basis: 100%;
    margin-top: 15px;
}
.catalog-tag-box {
    position: relative;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    transform-origin: left center;
    transform: scale(1);
    overflow: auto;
    padding-left: 15px;
    padding-right: 15px;    
}
.catalog-tag-item {
    min-width: max-content;
    margin-bottom: 0;
    
}
}
.product-teplitca-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 48px;
    padding-right: 48px;    
    padding-top: 25px;
    box-sizing: border-box;
}
.product-teplitca-page .col-left {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;    
    padding-right: 45px;
    overflow: hidden;
}
.product-teplitca-page .col-left .product-img {
    text-align: center;
}
.product-teplitca-page .col-left .product-img .img-owl {
    margin-top: 5px;
}
    
.product-teplitca-page .col-left .product-img img {
    max-width: 100%;
    max-height: 500px;
}
.product-teplitca-page .col-right {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    padding-top: 0;
}
.product-teplitca-page h1 {
    font-size: 42px;
}
.select-params-box_title {
    margin-bottom: 10px;
    font-size: 18px;
    margin-top: 20px;
}
.select-params-box {
    padding: 25px;
    padding-top: 5px;
    background: #f4f8fb;
    margin-bottom: 0;
}
.select-params-box h1 {
    font-size: 28px;
    text-align: left;
}
.select-param-box ul {
    display: inline-block;
    width: auto;
    list-style: none;
    margin: 0;
    padding: 0;
}
.select-param-box ul li {
    padding: 5px 15px;
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    position: relative;
    background: none;
    cursor: pointer;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid #c9ced6;
    transition: 0.4s;
    background: #fff;
}
.select-param-box ul li.active,
.select-param-box ul li:hover {
    background: #03ca28;
    border: 1px solid #03ca28;
    color: #fff;
}
.select-param-box ul li:last-child {
    margin-right: 0;
}
.bredcrumbs-text {
    display: inline-block;
}
.bredcrumbs {
    padding-left: 45px;
}
.bredcrumbs li {
    display: inline-block;
    font-size: 13px;
    color: #b4b4b4;
}
.breadcrumb > li + li:before {
    content: "/";
    padding: 0 3px 0 3px;
    color: #b4b4b4;
}

.select-param-box_dop {
    background: #ffffff;
    padding: 10px;
    border: 1px solid #03ca28;
    max-width: max-content;
    font-size: 13px;
}
.select-param-box_dop.addons-item {
    background: none;
    border: none;
    font-size: 18px;
}
.select-param-box_dop input {
    border: 1px solid #03ca28;
    text-align: center;
    height: 30px;
    border-radius: 0;
}
.select-param-box_dop.addons-item span.oldp {
    font-size: 20px;
    text-decoration: line-through;
    font-weight: 300;
    color: #787777;
}
.select-param-box_dop.addons-item span:not(.oldp) {
    font-weight: bold;
    font-size: 28px;
}
.select-param-box input[type=radio] {
    display: none;
}
.select-param-box label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin-bottom: 7px;
    font-size: 16px;
    line-height: 20px;
}
.select-param-box input:disabled + label {
    color: #999999;
}
.select-param-box label i {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.select-param-box label i:before, .select-param-box label i:after {
    content: '';
    display: block;
    border-radius: 50%;
    position: absolute;
    box-sizing: border-box;
}
.select-param-box label i:before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #03ca28;
    z-index: 4;
}
.select-param-box input:disabled + label i:before {
    border: 2px solid;
}
.select-param-box label i:after {
    left: 50%;
    top: 50%;
    width: 50%;
    height: 50%;
    background-color: #03ca28;
    transform: translate(-50%, -50%) scale(0);
    z-index: 10;
    transition: transform ease .3s;
}
input[type=radio]:checked + label i:after {
    transform: translate(-50%, -50%) scale(1);
}
input[type='number'] {
    -moz-appearance:textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.itog-box {
    display: flex;
    padding: 25px 0;
    background: #f4f8fb;
}    
.itog-box .itog {
    flex-basis: 55%;
    padding-left: 25px;
    align-items: end;
    display: flex;
    font-size: 18px;
}
.itog-box .itog span.itog-new,
.itog-bonus-amount {
    font-weight: 600;
    margin: 0 7px;
    font-size: 28px;
    line-height: 28px;
}
.itog-box .itog span.itog-old {
    color: #787777;
    font-size: 20px;
    text-decoration: line-through;
    line-height: 20px;
    font-weight: 300;
}

.itog-box .itog-bonus {
    font-size: 16px;
    color: #1b1b1b;
    margin-top: 8px;
}

.itog-box .itog-bonus-amount {
    font-weight: 600;
    color: #e74c3c;
}
.itog-box .btn-cart {
    flex-basis: 45%;
    padding-right: 25px; 
}
.product-param-box,
.reviews-box,
.video-cart-wrap {
    padding-left: 48px;
    padding-right: 48px;
}
.video-cart-wrap img {
    max-width: 100%;
}
@media (max-width: 767px) {
    .video-cart-wrap {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
}
.passport-box {display: flex;}

.pasport-button {
    display: -ms-flexbox;
    display: flex;
    vertical-align: middle;
    align-items: center;
    color: #1b1b1b;
    width: auto;
    border: 1px solid #f4f8fb;
    padding: 5px;
    margin-top: 30px;
    background: #f4f8fb;
    margin-left: 30px;
}
.pasport-button:first-child {
    margin-left: 0;
}
a.pasport-button:hover {
    text-decoration: underline;
}
.pasport-button svg {
    height: 50px;
    margin-right: 5px;
    min-width: 50px;
}
.pasport-button img {
    height: 50px;
    margin-right: 5px;
}
.product-param-row {
    display: flex;
    border-bottom: 1px solid #fff;   
}
.product-param-row_desc,
.product-param-col {
    flex-basis: 35%;
    padding: 15px;
    border-left: 1px solid #f4f8fb;
    border-top: 1px solid #f4f8fb;
}
.product-param-col_desc,
.product-param-col {
    padding: 15px;
    border-left: 1px solid #4caf50;
    border-bottom: 1px solid #4caf50;
    text-align: center;
    display: table-cell;
    width: 33.3%;
    vertical-align: middle;
}
.desc-box .product-param-row:nth-child(2n),
.product-param-box .product-param-row:nth-child(2n) {
    background: #f4f8fb;
}
.desc-box .product-param-row:nth-child(2n) .product-param-row_desc,
.product-param-box .product-param-row:nth-child(2n) .product-param-row_desc {
    border-right: 1px solid #fff;
}
.tep-param-box .product-param-row:first-child .product-param-col_desc,
.tep-param-box .product-param-row:first-child .product-param-col{
    text-align: left;
    font-weight: 500;
    background: #4caf50;
    border-left: 1px solid #f4f8fb;
    color: #fff;
}
.tep-param-box .product-param-row:first-child .product-param-col_desc {
    border-left: 1px solid #4caf50;
}
.product-param-row div:nth-child(3) {
    border-right: 1px solid #4caf50;
}

@media (max-width: 767px) {
.tep-param-box {
    display: table;
    border: none;
    border-collapse: separate;
    border-spacing: 0;
}
.tep-param-mobile-scroll {
    overflow: scroll;
    border-right: 1px solid #4caf50;
    border-bottom: 1px solid #4caf50;
}
}
.tep-param-box .product-param-row {
    display: table-row;
}
.inner-col {
    height: 100%;
}
.product-param-row_vol {
    flex-basis: 65%;
    padding: 15px;
    border-right: 1px solid #f4f8fb;
    border-top: 1px solid #f4f8fb;
}

.product-param-row_vol li {
    list-style: none;
}
.product-param-nav {
    background: #f4f8fb;
    padding: 25px 48px;
    margin-bottom: 30px;
    margin-top: 48px;
}
.product-param-nav .container {
    flex-flow: row wrap;
    flex: 1 100%;
    display: flex;
    padding: 0;
}
.product-param-nav a {
    padding: 15px 0;;
    border: 1px solid #ccc;
    margin-right: 15px;
    transition: 0.2s;
    color: #444;
    text-align: center;
    flex-basis: calc(16.66666% - 15px);
    box-sizing: border-box;
}
.product-param-nav a:last-child {
    margin-right: 0;
}
.product-param-nav a:hover {
    background: #05df2d;
    color: #fff;
    border: 1px solid #05df2d;       
}
.product-param-nav a.active {
    background: #03ca28;
    color: #fff;
    border: 1px solid #03ca28;    
}
.product-param-nav a.active {
    background: #03ca28;
    color: #fff;
    border: 1px solid #03ca28;    
}
.buy-one-click-box,
.whatsapp-btn-box,
.itog-bonus {
    display: -ms-flexbox;
    display: flex;
    padding: 25px;
    border-top: 8px solid #fff;
    border-bottom: 8px solid #fff;
    margin: 0;
    background: #f4f8fb;
}
.itog-bonus {
    align-items: center;
}
.whatsapp-btn-box {
    border-top: none;
}
.buy-one-click-box_desc,
.whatsapp-btn-box_desc {
    display: -ms-flexbox;
    display: flex;    
    align-items: center;  
    flex-basis: 55%;
}
.whatsapp-btn-box_desc {
    flex-basis: 55%;
}
.buy-one-click-box_desc-icon svg,
.whatsapp-btn-box_desc-icon svg {
    fill: red;
    position: relative;
    width: 28px;
    height: 27px;
    top: 0px;
    left: 0;
    margin-right: 15px;  
}
.buy-one-click-box_desc-title,
.whatsapp-btn-box_desc-title {
    color: #444;
    font-weight: 600;    
}
.buy-one-click-box_desc-text,
.whatsapp-btn-box_desc-text {
    font-size: 12px;
    color: #bbb;    
}
.buy-one-click-box_btn {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    flex-basis: 45%;  
}
.whatsapp-btn-box_btn {
    flex-basis: 45%; 
}
.buy-one-click-box_btn .btn {
    border-radius: 0;
    margin-left: -1px;
    font-size: 16px;
}
.buy-one-click-box_btn input {
    height: 37px;
    font-size: 14px;
    font-weight: 100;
    padding: 10px 20px;
    border: 1px solid #E7E7E7;
    border-radius: 1px;
}
.reviews-item {
    box-sizing: border-box;
    background: #f4f8fb;
    margin-bottom: 25px;
}
.reviews-item_title {
    padding: 15px;
    border-bottom: 3px solid #fff;
}
.reviews-item_title .reviews-author,
.reviews-item_title .reviews-date {
    border-right: 1px solid #444;
    padding-right: 15px;
    margin-right: 15px;    
}
.reviews-item_title .reviews-exp {
    
}
.reviews-item_title .reviews-date {
    
}
.reviews-item_text {
    padding: 15px;
    line-break: anywhere;
}
.reviews-item_text p {
    
}
.reviews-item_photo {
    padding: 15px;
    display: -ms-flexbox;    
    display: flex;     
}
.reviews-item_photo a {
    margin-right: 10px;
}
.reviews-item_photo img {
    max-width: 150px;
}
.rating-result-box {
    display: -ms-flexbox;    
    display: flex; 
    margin-top: 15px;
}
.rating-result {
    width: max-content;
    padding-right: 25px;
    padding-left: 25px;
    display: -ms-flexbox;    
    display: flex;
    align-items: center;
}
.rating-result span {
    padding: 0;
    font-size: 21px;
    line-height: 1;
    color: lightgrey;
}
.rating-result:first-child {
    padding-left: 0;
}
.rating-result span:first-child {
    padding-left: 0;
    margin-left: 15px;
}
.rating-result > span {
	background: url(/img/star.svg);
	height: 17px;
	width: 17px;
	background-repeat: no-repeat;
    background-size: contain;
}
.rating-result > span.active {
    background: url(/img/star-active.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.rating-area {
	overflow: hidden;
    width: 105px;
    margin-left: -20px;
}
.rating-area:not(:checked) > input {
	display: none;
}
.rating-area:not(:checked) > label {
	padding: 0;
	cursor: pointer;
	font-size: 25px;
	line-height: 25px;
	color: lightgrey;
	float: right;
}
.rating-area:not(:checked) > label{
	/*content: '★';*/
	background: url(/img/star.svg);
	height: 17px;
	width: 17px;
	background-repeat: no-repeat;
    background-size: contain;
}
.rating-area > input:checked ~ label {
	/*color: #03ca28;*/
	    background: url(/img/star-active.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.rating-area:not(:checked) > label:hover,
.rating-area:not(:checked) > label:hover ~ label {
	/*color: #03ca28;*/
		    background: url(/img/star-active.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.rating-area > input:checked + label:hover,
.rating-area > input:checked + label:hover ~ label,
.rating-area > input:checked ~ label:hover,
.rating-area > input:checked ~ label:hover ~ label,
.rating-area > label:hover ~ input:checked ~ label {
/*	color: #03ca28;*/
	    background: url(/img/star-active.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.rate-area > label:active {
	position: relative;
}
.reviews-next {
        margin-bottom: 20px;
            display: inline-block;
}
.reviews-next-box {
    text-align: center;
}
.reviews-next-box button:disabled,
.reviews-next-box button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}
.add-reviews,
.dostavka-box {
    padding-left: 45px;
    padding-right: 45px;
}
.tab-3 .desc-box {
    padding-left: 45px;
    padding-right: 45px;
}
.add-reviews-box,
.add-reviews-btn {
    padding: 25px;
    display: -ms-flexbox;    
    display: flex; 
}
.product-param-text {
    padding-top: 25px;
}
.product-param-text p,
.desc-box p,
.article-box p {
   margin-bottom: 10px; 
}
.product-param-text ul,
.desc-box ul,
.article-box ul {
    margin-left: 20px;
    margin-bottom: 10px;
}
.product-param-text ul li,
.desc-box ul li,
.article-box ul li {
    margin-bottom: 5px;
}
.map-wrap {
    min-height: 600px;
}
.owl-theme .owl-dots {
   display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.owl-theme .owl-dots .owl-dot {
    max-width: 24px;
}
.owl-dots button {
    min-width: auto;
}
@media (max-width: 768px) {
.map-wrap {
    min-height: 400px;
}
}
.locations-box {
    max-height: 285px;
    overflow: auto;
    font-size: 15px;
    line-height: 16px;
    padding-top: 45px;
}
.locations-box > ul {
    -webkit-columns: 4;
    -moz-columns: 4;
    columns: 4;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin: 0;
}
@media (max-width: 768px) {
    .locations-box > ul {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
}
.locations-box {
    margin-top: 0;
}
}
.locations-box  ul > li {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 0;
    padding: 0 0 15px 0;
    position: relative;
    overflow: hidden;
}
.locations-box  ul > li > ul > li {
    padding: 0 0 5px 0;
    display: block;
}
.locations-box a {
    color: #000000;
    text-decoration: underline;
}
.locations-box .letter {
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.add-reviews-btn {
    -webkit-justify-content:center;
    justify-content: center;
    border-top: 3px solid #f4f8fb;
}
.add-reviews-wrap {
    -webkit-box-shadow: 0px 0px 40px 0px rgba(143, 164, 171, 0.16);
    box-shadow: 0px 0px 40px 0px rgba(143, 164, 171, 0.16);
}
.add-reviews-wrap .title-block {
    border-bottom: 3px solid #f4f8fb;
    text-transform: none;
    padding: 15px 25px;
    text-align: left;
    color: #444;
    font-size: 32px;
}
.add-reviews_col-1 {
    flex-basis: 30%;
}
.add-reviews_col-1 input {
    display: block;
    padding: 15px;
    color: #444;
    border: 1px solid #ddd;    
    margin-bottom: 15px;
    width: 100%;
    max-width: 250px;    
}
.add-reviews_col-1 label,
.add-reviews_col-2 label {
    display: block;
    margin-bottom: 15px;
}
.add-reviews_col-2 label {
    width: max-content;
}
.add-reviews_col-2 textarea {
    width: 100%;
    min-height: 250px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 16px;
    border: 1px solid #ddd;
}
.add-reviews_col-1 select {
    padding: 15px;
    color: #444;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 250px;
    margin-bottom: 15px;
    background: #fff;
    position: relative;
}

.add-reviews_col-2 {
    flex-basis: 70%;
}
.add-reviews_add-photo {
    display: block;
    margin-top: 30px;
}
.add-reviews_add-photo span {
    padding: 15px;
    border: 1px solid #f4f8fb;
    background: #f4f8fb;
    color: #444;
    transition: 0.2s;
    cursor: pointer;
}
.foto-wrap {
    display: flex;
}
.add-reviews_add-photo span:hover {
    background: #03ca28;
    color: #fff;
}
.cat-box {
    display: -webkit-flex;
    display: flex;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 45px;
}
.cat-box-colum {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
}
.cat-item {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}
.cat-box-colum .cat-item.teplitca {
    background: url(/img/teplitca-cat.jpg);
    min-height: 420px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    max-height: 420px;
    margin-right: 15px;
}
.cat-box-colum .cat-item.besedka {
    background: url(/img/besedka-cat.jpg);
    min-height: 335px;
    max-height: 335px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;   
}
.cat-box-colum .cat-item.parnik{
    background: url(/img/parnik-cat-n.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;   
    min-height: 250px;
    max-height: 250px;
    margin-right: 15px;
}
.cat-box-colum .cat-item.naves {
    background: url(/img/naves-cat.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;      
    min-height: 335px;
    max-height: 335px;
}
.cat-item:nth-child(even) {
    background-position: right;  
}
.cat-item_title {
    position: absolute;
    left: 0;
    bottom: 15%;
    width: max-content;
    background: #03ca28;
    padding: 15px;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    /* margin: auto; */
    height: max-content;
    transition: 0.3s;
    
}
.cart-title {
    font-weight: 500;
    font-size: 16px;
    color: #444;
}
.cart-box {
    padding-left: 15px;
    padding-right: 15px;
}
.cart-title-wrap {
    display: none;
}
.item-cart-main {
    padding: 15px;
}
.item-cart-main .cart-photo img {
    max-width: 100%;
}
.item-cart-main .btn-del {
    display: block;
    white-space: nowrap;
    position: relative;
    text-align: center;
    font-size: 11px;
    line-height: 12px;
    color: #1a3c57;
    text-decoration: none;
}
.item-cart-main .btn-del .btn-action-ico {
    display: block;
    margin: 0 auto 5px auto;
}
.btn-action-ico.del {
    width: 26px;
    height: 26px;
    border: 2px solid #7a8d9a;
    border-radius: 1px;
    transition: 0.2s;
}
.btn-action-ico.del:after, .btn-action-ico.del:before {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: #193b54;
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    margin: -3px 0 0 -9px;
    -webkit-transform: -webkit-rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn-action-ico.del:before {
    -webkit-transform: -webkit-rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.cart-actions-wrap {
    position: relative;
}
.cart-box .cart-total-wrap .cart-total {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #444;
    padding: 25px;
    text-align: right;
}
.cart-inner-price .oldprice {
    text-decoration: line-through;
    color: red;
}
.catalog-box.owl-carousel {
    position: relative;
}
@media (max-width: 1399px) {
    .cat-box, .news-box, .action-box, .article-box, .locations-box {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media (min-width: 768px) {
    .cart-title-wrap {
    display: table;
    width: 100%;
    border: 1px solid #e8e8e8;
    border-bottom: none;
    }
    .cart-title-inner {
    display: table-cell;
    width: 22%;
    vertical-align: middle;
    position: relative;
    font-size: 14px;
    text-align: center;
    padding: 15px 0;
    border-right: 1px solid #ddd;
    }
    .cart-title-inner:last-child {
        border-right: 0;
    }
    .item-cart-main {
        padding: 20px 0 20px 0;
        display: table;
        width: 100%;
    }
    .item-wrap {
        border-top: 1px solid #ddd;
    }
    .item-cart-main .cart-photo-wrap {
        width: 22%;
        padding: 0 20px;
        display: table-cell;
        position: relative;
        vertical-align: middle;
    }
    .item-cart-main .cart-inner {
        display: table-cell;
        border-left: 1px solid #e8e8e8;
        position: relative;
        vertical-align: middle;
        padding: 0 15px;
         width: 40%;
    }
    .cart-title-inner.title02 {
        width: 40%;
    }
    .cart-title-inner.title03,
    .cart-title-inner.title04 {
        width: 19%;
    }
    .item-cart-main .cart-inner-price {
        width: 19%;
        padding: 0 0 0 0;
        display: table-cell;
        border-left: 1px solid #e8e8e8;
        position: relative;
        vertical-align: middle;
        text-align: center;
    }
    .item-cart-main .cart-actions-wrap {
        width: 19%;
        display: table-cell;
        border-left: 1px solid #e8e8e8;
        position: relative;
        vertical-align: middle;
        text-align: center;
    }
    .item-cart-main .cart-photo img {
        display: block;
        position: relative;
        max-height: 170px;
        margin: 0 auto;
    }
    .cart-box {
        padding-left: 45px;
        padding-right: 45px;
    }
    .items-wrap {
        border: 1px solid #ddd;
        border-top: 0;
    }
    .btn-action-ico.del:after, .btn-action-ico.del:before {
        margin: -9px 0px 0 -9px;
    }
}
.order-cart {
    padding-left: 45px;
    padding-right: 45px;
}
.order-cart-wrap {
    -webkit-box-shadow: 0px 0px 40px 0px rgba(143, 164, 171, 0.16);
    box-shadow: 0px 0px 40px 0px rgba(143, 164, 171, 0.16);
}
.order-cart-wrap .title-block {
    border-bottom: 3px solid #f4f8fb;
    text-transform: none;
    padding: 15px 25px;
    text-align: left;
    color: #444;
    font-size: 32px;
}
.form-cart-box {
    
}
.form-cart-box form {
    
}
.form-cart {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 25px;
}
.form-cart_block {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.form-cart_block span {
    margin-top: 10px;
    margin-bottom: 15px;
    display: block;
    background: #f4f8fb;
    padding: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-left: 3px solid #4caf50;
    width: fit-content;
}
.warn-msg {
    margin-top: 10px;
    margin-bottom: 15px;
    display: block;
    background: #ffedde;
    padding: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-left: 3px solid #fe7807;
    width: fit-content;
}
.warn-msg a {
    text-decoration: underline;
}
.warn-msg ol {
    padding: 5px 0 5px 25px;
}
.form-cart_block label {
    display: block;
    margin-bottom: 10px;
}
.form-cart_block input {
    height: 50px;
    width: 100%;
    max-width: 280px;
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
    margin-top: 0;
    border: 1px solid #ddd;
    padding-left: 15px;
}
.form-cart-params {
    padding: 0 25px 25px 25px;
}
.cart-action-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding: 25px;
    border-top: 3px solid #f4f8fb
}
.cart-action-box_itog {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #444;    
}
.cart-action-box_itog .priceold {
    text-decoration: line-through;
    color: red;
}
.cart-action-box_btn .btn {
    font-size: 22px;
}
.article-content p {
    margin-bottom: 10px;
}
.oferta-box p {margin-bottom:15px;}
.oferta-box ol {
    list-style: none; 
    counter-reset: li; 
    margin-top: 15px;
    }
.oferta-box ol > li {
    margin-bottom: 15px;
}
.oferta-box li {margin-left: 15px;list-style: none; }
.oferta-box li:before {
    counter-increment: li; 
    content: counters(li,".") ". "; 
}
@media (min-width: 1024px) {
.cat-item_title {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    /* top: 0; */
    width: max-content;
    background: #03ca28;
    padding: 15px;
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    /* margin: auto; */
    height: max-content;
    transition: 0.3s;
}

.cat-item:hover .cat-item_title {
    width: auto;
    height: auto;
    top: 0;
    margin: auto;
    font-size: 50px;
    background: #03ca288c;
}
.overlay {
    background: rgba(0,0,0,0.26);
    width: 100%;
    height: 100%;
    position: absolute;
    transition: 0.5s;
}
.cat-item:hover .overlay {
    opacity: 0;
}    
}
.buy-one-click-box_desc {
    flex-basis: 55%;    
}
.buy-one-click-box_btn {
    flex-basis: 45%;    
}
@media (max-width: 1799px) {

    .buy-one-click-box_desc {
    margin-bottom: 10px;
}
}
@media (max-width: 1399px) {
    .itog-box {
    display: block;
    padding: 15px;
}
.itog-box .itog,
.itog-box .btn-cart {
    flex-basis: 100%;
}
.buy-one-click-box_desc,
.whatsapp-btn-box_desc {
    margin-bottom: 10px;
}
.itog-box .itog,
.itog-box .btn-cart {
    padding: 0;
}
.itog-box .itog {
    margin-bottom: 10px;
}
.product-teplitca-page,
.product-param-box {
    padding-left: 15px;
    padding-right: 15px;
}
.product-teplitca-page .col-left {
    padding-right: 15px;
}
}
@media (max-width: 1239px) {
.buy-one-click-box,
.whatsapp-btn-box { 
    display: block;
    padding: 15px;
}
}
@media (min-width: 1240px) and (max-width: 1750px){
.buy-one-click-box_btn .btn,
span.input-group-btn,
.buy-one-click-box_btn input {
    width: 100%;
}
}
@media (min-width: 1024px) and (max-width: 1024px){
    .buy-one-click-box {
        display: flex;
    }
}
@media (max-width: 1024px) {
.product-teplitca-page .col-left,
.product-teplitca-page .col-right {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    padding: 0;
    width: 100%;
}
.product-teplitca-page .col-right {
    margin-top: 48px;
}
.cat-box, .news-box, .action-box, .article-box, .article-header {
    padding: 0 15px;
}
.product-param-box, .reviews-box, .order-cart {
    padding-left: 15px;
    padding-right: 15px;
}
span.input-group-btn {
    width: 50%;
}
.buy-one-click-box_btn input {
    padding: 10px 5px;
width: 50%;
}
.buy-one-click-box_btn .btn {
    width: 100%;
}
}
@media (max-width: 768px) {
.bredcrumbs {
    padding-left: 25px;
    padding-bottom: 0;
    padding-top: 25px;
}
.add-reviews-box {
    display: block;
}

.buy-one-click-box_btn {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;

}

.product-param-nav {
    padding: 25px 15px;
}
.add-reviews, .dostavka-box {
    padding: 0 15px;
}
.add-reviews_col-1 input,
.add-reviews_col-1 select {
    box-sizing: border-box;
    max-width: 100%;
}

}
@media (max-width: 767px) {
.passport-box {
    display: block;
}
.pasport-button {
    margin-left: 0;
    padding: 5px 10px;
    margin-top: 15px;
}
.cat-box,
.cat-box-colum .cat-item {
    display: block;
}
.cat-box-colum .cat-item.teplitca,
.cat-box-colum .cat-item.parnik {
    margin-right: 0;
}
.cat-item {
    min-height: 200px!important;
    max-height: 200px!important;
}
.bredcrumbs {
    padding-left: 15px;
}    
.footer__copyright {
    display: block;
}
.product-param-nav .container,
.reviews-item_photo {
    flex-flow: nowrap;
    position: relative;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    transform-origin: left center;
    transform: scale(1);
    overflow: auto;
}
.product-param-nav a {
    padding: 15px 10px;
}

.select-param-box label {
    line-height: 20px;
}
.title-block, h1 {
    padding-left: 5px;
    padding-right: 5px;
}
.rating-result-box,
.cart-action-box,
.cart-action-box_itog span {
    display: block;
}
.cart-action-box_itog span.pricefinal {
    display: inline-block;
}
.cart-action-box_btn {
    margin-top: 15px;
}
.cart-action-box_btn .btn {
    width: 100%;
    box-sizing: border-box;
}
.rating-result {
    padding: 0;
}
.cart-box .item-wrap {
    background: #f4f8fb;
    margin-bottom: 25px;
}    
.cart-box .item-wrap:last-child {
    margin-bottom: 0;
}
.cart-photo-wrap {
    margin-bottom: 15px;
}
.cart-info-inner {
    font-size: 13px;
}
.item-cart-main .cart-main-wrap .price {
    font-size: 20px;
    font-weight: 500;
}
.cart-main-inner:before {
    content: "Цена:";
    display: block;
    clear: both;
    position: absolute;
    font-size: 18px;
    line-height: 33px;
    height: 36px;
    left: 0;
    top: 0;
}

.item-cart-main .btn-del {
    position: absolute;
    right: 0px;
    bottom: 0px;
}
.item-cart-main .btn-del .button-title {
    display: none;
}
.cart-inner-price {
    margin-top: 15px;
}
.cart-title {
    margin-bottom: 15px;
}
.cart-inner-price .cart-main-inner {
    position: relative;
    padding-top: 30px;    
}
.form-cart_block {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
}
.product-param-row {
    display: flex;
}
.select-params-box {
    padding: 15px;
}
.product-param-row_desc {
    min-width: 140px;
}

.select-param-box ul li {
    margin-right: 5px;
}
}

.thumbnail {
    height: 100px;
    margin: 10px;
}

input[type=file] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.color-box {
    width: 26px;
    height: 26px;
    border-radius: 5px;
    display: inline-block;
    border: 1px solid #535151;
    cursor: pointer;
    margin-right: 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.color-box:after {
    position: relative;
    left: 25%;
    top: 5%;
    opacity: 0;
    color: #00ff2f;
    transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    moz-transition: opacity 0.3s ease-in-out;
    o-transition: opacity 0.3s ease-in-out;
}  

input[name="color"]:checked + label span {
  border-color: #10549f;
  border-width: 2px;
  opacity: 1;
}
input[name="color"]:checked + label span:after {
  content: "\2713";
  opacity: 1;
  text-shadow: #796f6f 1px 1px 1px, #796f6f -1px -1px 1px, #796f6f -1px 1px 1px, #796f6f 1px -1px 1px;
}

input[name="color"]:checked + label {
  font-weight: bold;
}
.before-title {
    position: relative;
    padding: 25px 0 25px 15px;
    margin-left: 45px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 30px;
    text-transform: uppercase;
    text-align: left;
    font-weight: normal;
}
.before-title:before {
    display: block;
    position: absolute;
    content: "";
    width: 5px;
    height: 33px;
    background: #007600;
    left: 0;
    top: auto;
}
@media (max-width: 1430px) {
    .before-title {
       margin-left: 15px;
    }
}
@media (max-width: 374px) {
    .before-title {
       padding-left: 0px;
       text-transform: none;
    }
    .before-title:before {
        display: none;
    }
}
.articl-box {
    position: absolute;
    right: 0;
    top: 0;
}
.articl-item {
    position: relative;
    background: #f5f5f5;
    font-size: 12px;
    padding: 3px 10px;
}

.oldp {
    font-weight: 400;
    font-size: 15px;
    color: #f00;
    text-decoration: line-through;
}
.about-video-wrap {
    background: #f4f8fb;
    margin: 45px 0;
}
.about-video {
    width: 625px;
    height: 352px;
}
.about-video-box {
    padding: 45px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about-video_video,
.about-video_text {
    -webkit-flex-basis: 50%;
    flex-basis: calc(50% - 40px);
}
.about-video_text .btn {
    width: max-content;
    margin-top: 15px;
}
@media (max-width: 1620px) {
.about-video {
    width: 590px;
    height: 333px;
}
}
@media (max-width: 1520px) {
.about-video {
    width: 540px;
    height: 305px;
}
}
@media (max-width: 1420px) {
.about-video {
    width: 510px;
    height: 287px;
}
}
@media (max-width: 1419px) {
.about-video {
    width: 480px;
    height: 273px;
}
}
@media (max-width: 1280px) {
.about-video {
    width: 437px;
    height: 247px;
}
}
@media (max-width: 1024px) {
.about-video {
    width: 389px;
    height: 220px;
}
.about-video-box {
    padding: 35px 0px;
}
}
@media (max-width: 767px) {
.about-video {
    width: 395px;
    height: 223px;
}
.about-video-box {
    display: block;
    padding: 25px 0;
}
.about-video_video {
    text-align: center;
}
.whatsapp-btn-box {
    flex-wrap: wrap;
}
.whatsapp-btn-box_desc,
.whatsapp-btn-box_btn {
    flex-basis: 100%;
}
.whatsapp-btn-box_btn {
    margin-top: 15px;
}
}
@media (max-width: 424px) {
.about-video {
    width: 345px;
    height: 195px;
}
}
@media (max-width: 374px) {
.about-video {
    width: 289px;
    height: 160px;
}
}
.soft-plus-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 25px;
}
.soft-plus-box_col {
    width: 50%;
    padding: 20px 20px;
    position: relative;
    box-sizing: border-box;
    
}
.soft-plus-item {
    position: relative;
    padding-left: 35px;
    margin-bottom: 25px;
}
.soft-plus-item span {
    font-weight: bold;
    font-size: 20px;
    display: block;
}
.soft-plus-item:after {
    content: '';
    position: absolute;
    background: url(../img/plus.svg);
    height: 20px;
    width: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    top: 5px;
}
.soft-window-furniture-box {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 25px;
    border-top: 1px solid #f5f5f5;
    border-left: 1px solid #f5f5f5;
}
.soft-window-furniture-item {
    -webkit-flex-basis: 33.33333%;
    flex-basis: 33.33333%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 20px;
    border-right: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}
.soft-window-furniture-pic {
    text-align: center;
}
.soft-window-furniture-pic img {
    max-width: 208px;
    max-height: 208px;
}
.soft-window-furniture-title {
    font-size: 18px;
    position: relative;
    display: block;
    margin-top: 15px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}
.long-prom {
    text-align: center;
    width: 100%;
    margin-top: 25px;
}
.long-prom img {
    max-width: 100%;
}
@media (max-width: 768px) {
    .soft-plus-box_col {
        width: 100%;
    }
    .soft-window-furniture-item {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    }
    .about-item {
        border-right: none;
        padding-left: 0;
    }
    .about-item svg {
        margin-right: 10px;
    }
}
@media (max-width: 1440px) {
     .main-item-7 .top-section-bg {
     width: 60%;
     background-position: left center;
     }
}
