@import url("fonts/joshkarola.css");

body {
	font-family: var(--base-font-family);
	font-weight: var(--base-font-weight);
	color: var(--body-color);
	font-size: var(--base-font-size);
	line-height: var(--base-font-lineheight);
	width: 100%;
	background: var(--body-bg);
}
body.overflow{overflow: hidden;}
a, .a{
	color: var(--body-color);
}
.a:focus,
.a:hover,
a:focus,
a:hover{
	text-decoration: none;
	color: var(--hover-color);
}
:active, :hover, :focus {
    outline: 0!important;
    outline-offset: 0!important;
}
::placeholder{
	color: var(--icon-color);
	font-weight: 300;
	font-size: 1.4rem;
}
.a,
a, 
a *, 
button, 
label, 
.products__item,
.middle-line *,
.sticky-grgroup,
.slick-arrow{
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
input, button, .input-lg, .btn{
	border-radius: var(--border-radius);
}

#content{
	min-height: 30vw;
}

div.required .control-label:not(span):before, td.required:before {
    content: '* ';
    color: #F00;
    font-weight: bold;
}
.scroll-box{
	overflow-y: auto;
	overflow-x: hidden;
}
.rowall {
    display: flex;
    flex-flow: wrap;
}
.rowall .col-0, .rowall .col-1, .rowall .col-2 {
    width: 100%;
}
.rowall .col-2 {
    order: 2;
}
.rowall .col-1 {
    order: 1;
}
.rowall .col-0 {
    order: 0;
}

.mt-5{margin-top: 5px;}
.mt-10{margin-top: 10px;}
.mt-15{margin-top: 15px;}
.mt-30{margin-top: 30px;}
.mt-50{margin-top: 50px;}
.mt-70{margin-top: 70px;}
.mb-5{margin-bottom: 5px;}
.mb-10{margin-bottom: 10px;}
.mb-15{margin-bottom: 15px;}
.mb-30{margin-bottom: 30px;}
.mb-50{margin-bottom: 50px;}
.mb-70{margin-bottom: 70px;}

@media (max-width: 575px) {
	.xs-mt-5{margin-top: 5px;}
	.xs-mt-10{margin-top: 10px;}
	.xs-mt-15{margin-top: 15px;}
	.xs-mt-30{margin-top: 30px;}
	.xs-mt-50{margin-top: 50px;}
	.xs-mt-70{margin-top: 70px;}
	.xs-mb-5{margin-bottom: 5px;}
	.xs-mb-10{margin-bottom: 10px;}
	.xs-mb-15{margin-bottom: 15px;}
	.xs-mb-30{margin-bottom: 30px;}
	.xs-mb-50{margin-bottom: 50px;}
	.xs-mb-70{margin-bottom: 70px;}
}

.a{
	border: none;
	background: transparent;
	padding: 0;
}

.btn{
	padding: 10px 15px;
}
.btn-primary{
	border-color:  var(--primary-color);
	background-color: var(--primary-color);
	background: linear-gradient(0deg, var(--primary-color) 0%, var(--primary-color) 100%);
	color: #fff;
}
.btn-primary:hover{
	border-color:  var(--hover-color);
	background-color: var(--hover-color);
	background: linear-gradient(0deg, var(--hover-color) 0%, var(--primary-color) 100%);
	color: #fff;
	box-shadow: var(--button-shadow);
}
.btn-special{
	border-color:  #e50f0f;
	background-color: #e50f0f;
	background: linear-gradient(0deg, #e50f0f 0%, #e50f0f 100%);
	color: #fff;
	font-weight: 500;
}
.btn-special:hover{
	border-color:  #e50f0f;
	background-color: #e50f0f;
	background: linear-gradient(0deg, #e50f0f 0%, #e50f0f 100%);
	color: #fff;
	box-shadow: var(--button-shadow);
}

.content-line{
	padding: 60px 15px;
}

.breadcrumb{
	background-color: var(--secondary-color);
	border-radius: var(--border-radius);
	margin-bottom: 0;
}
@media (max-width: 767px) {
	.breadcrumb > li{
		display: none;
	}
	.breadcrumb > li:nth-last-child(2){
		display: block;
		font-size: 1.4rem;
	}
	.breadcrumb > li + li:before {
		display: none;
	}
	.breadcrumb > li:nth-last-child(2):before {
		padding: 0 10px 0 0;
		color: var(--theme-third-color);
		display: inline-block;
		font: normal normal normal 14px / 1 FontAwesome;
		font-size: inherit;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f104";
	}
	
}


/*HEADER*/
header{
	margin-bottom: 15px;
}
.top-line .container{
	display: flex;
	margin-bottom: 15px;
}
.tip-line__menu{
	margin: 0 auto 0 0;
}
.tip-line__contacts{
	margin: 0 0 0 auto;
}
.tip-line__menu,
.tip-line__contacts{
	padding: 0;
}
.tip-line__menu > li,
.tip-line__contacts > li{
	display: inline-block;
	list-style: none;
}
.tip-line__menu > li:not(:last-child),
.tip-line__contacts > li:not(:last-child){
	margin-right: 15px;
}
.tip-line__menu > li > a,
.tip-line__contacts > li > a{
	display: inline-block;
	padding: 5px 10px;
	margin: 5px 0;
}
.tip-line__menu > li > a:hover{
	color: var(--hover-color)
}
.tip-line__menu > li:first-child > a{
	background-color: var(--primary-color);
	color: #fff;
	border-radius: var(--border-radius);
}
.tip-line__menu > li:first-child > a:hover{
	background-color: var(--hover-color);
}
.tip-line__contacts > li > a{
	font-weight: 500;
}
.tip-line__contacts > li > button{
	padding: 5px;
}
.middle-line .container{
	display: flex;
	align-items: center;
	padding-top: 15px;
	padding-bottom: 15px;
	position: relative;
}
.middle-line__main{
	border-radius: var(--border-radius);
	background-color: var(--primary-color);
	padding: 10px;
	display: flex;
}
.middle-line__main-logo{
	width: 210px;
	min-width: 210px;
}
.middle-line__main-logo img{
	width: 180px;
	min-width: 180px;
	margin-right: 30px;
}
.middle-line__main-catalog{
	border: none;
	background-color: #ffffff1f;
	color: #fff;
	padding: 5px 20px;
	font-weight: 500;
	white-space: nowrap;
}
.middle-line__main-catalog.active,
.middle-line__main-catalog:hover{
	box-shadow: var(--button-shadow);
}
.middle-line__main-catalog i{
	opacity: 0.7;
	margin-left: 5px;
}
.middle-line__main-catalog.active i{
	transform: rotate(180deg);
}
.middle-line__search{
	width: 100%;
	margin: 0 30px;
	position: relative;
	background-color: var(--secondary-color);
	border: 1px solid var(--secondary-color);
	border-radius: var(--border-radius);
}
.middle-line__search:hover{
	background-color: #fff;
}
.middle-line__search > input{
	position: relative;
	z-index: 1;
	height: 72px;
	padding: 0 100px 0 30px;
	border: none;
	background: transparent;
}
.middle-line__search button.btn{
	position: absolute;
    top: calc(50% - 22px);
    right: 30px;
    z-index: 2;
    border: none;
    background-color: transparent;
    border-radius: var(--border-radius);
}
.middle-line__search:hover button.btn{
	background-color: var(--secondary-color);
}
.middle-line__main-buttons{
	white-space: nowrap;
}
.middle-line__main-buttons button{
	position: relative;
	display: inline-block;
	border: none;
	background-color: transparent;
	text-align: center;
	vertical-align: middle;
	font-size: 1.2rem;
	padding: 12px 10px;
}
.middle-line__main-buttons button:hover{
	background-color: var(--secondary-color);
}
.middle-line__main-buttons button > i{
	display: block;
	margin: 0 auto 10px auto;
	color: var(--icon-color);
	font-size: 2.2rem;
}
.middle-line__main-buttons button > span{
	position: absolute;
    top: 6px;
    right: calc(50% - 24px);
    background-color: var(--primary-color);
    color: #fff;
    padding: 0 5px;
    min-width: 20px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 20px;
}
.middle-line__main-buttons button > span[data-total="0"]{
	display: none;
}
.middle-line .tip-line__contacts{
	display: none;
}
.catalog-menu {
    position: absolute;
    background-color: #fff;
    padding: 15px;
    top: 100%;
    left: 15px;
    right: 15px;
    z-index: 999;
    margin-top: 10px;
    border-radius: var(--border-radius);
    box-shadow: var(--drop-shadow);
    opacity: 0;
    display: none;
    max-height: 40vw;
    overflow-y: auto;
}
.catalog-menu.active {
	opacity: 1;
    display: block;
}
.catalog-menu__list {
    margin: 0;
    padding: 0;
    column-count: 5;
}
.catalog-menu__list > li {
    margin-bottom: 15px;
    list-style: none;
    display: block;
}
.catalog-menu__list-title {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}
.catalog-menu__list-items {
    margin: 0;
    padding: 0;
}
.catalog-menu__list-items > li {
    list-style: none;
    display: block;
    margin-bottom: 3px;
}

/*FIXED HEADER*/
@media (min-width: 901px) {
	.fixed-header .middle-line{
		position: fixed;
		left: 0;
		top: 0;
		z-index: 999;
		width: 100%;
		background-color: #fff;
		box-shadow: var(--drop-shadow);
	}
	.fixed-header .middle-line .container{
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.fixed-header .middle-line__main{
		padding: 5px 10px;
	}
	.fixed-header .middle-line__main-logo{
		width: 180px;
		min-width: 180px;
	}
	.fixed-header .middle-line__main-logo img {
		width: 150px;
		min-width: 150px;
		margin-right: 30px;
	}
	.fixed-header .middle-line__search > input {
		height: 55px;
	}
	.fixed-header .middle-line__main-buttons > button{
		padding: 2.5px 10px;
	}
	.fixed-header .middle-line__main-buttons > button > span{
		top: 0;
	}
}

@media (max-width: 1024px) {
	.top-line .container{
		margin-bottom: 0;
	}
	.middle-line__main-logo{
		width: 148px;
		min-width: 148px;
	}
	.middle-line__main-logo img{
		width: 128px;
		min-width: 128px;
	}
	.middle-line__search > input{
		height: 58px;
	}
	.middle-line__main-buttons button{
		padding: 4px 10px;
	}
}
@media (max-width: 900px) {
	.top-line{
		display: none;
	}
	.middle-line .container{
		display: block;
		padding-bottom: 0;
	}
	.middle-line__main{
		width: max-content;
	}
	.middle-line__main-logo{
		width: auto;
		min-width: auto;
	}
	.middle-line__main-logo img{
		margin-right: 0;
	}
	.middle-line__main-catalog{
		display: none;
	}
	.middle-line__main-buttons{
		display: none;
	}
	.middle-line__search{
		margin: 15px 0 0 0;
	}
	
	.mobile-search-fixed{
		position: fixed!important;
		left: 30px;
		right: 30px;
		z-index: 9999;
		width: auto;		
	}
	
	
	.middle-line__search > input{
		padding: 0 15px;
	}
	.middle-line__search button.btn{
		right: 15px;
	}
	.middle-line .tip-line__contacts{
		position: absolute;
		top: 30px;
		right: 35px;
		display: block;
	}
	.middle-line .tip-line__contacts > li > span{
		font-size: 1.6rem;
		font-weight: 500;
	}
}

/*BANNER*/
.category-banner{
	display: flex;
    height: 500px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: #fff;
}
.category-banner.slick-slider{
	overflow: visible;
}
.category-banner__item{
	display: flex!important;
    align-items: center;
    padding: 30px 400px 30px 60px;
    background-repeat: no-repeat;
    background-position: calc(100% - 30px) center;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
	height: 500px!important;
}
.category-banner__item-title{
	font-size: 5rem;
    font-weight: 500;
}
.category-banner__item-total{
	color: var(--icon-color);
    font-size: 2rem;
    margin-bottom: 30px;
}
.category-banner__item-total span{
	font-weight: 500;
}
@media (max-width: 800px) {
	.category-banner__item{
	    align-items: flex-start;
		padding: 30px;
		background-position: calc(100% + 15px) calc(100% - 28px);
		background-size: 280px;
	}
	.category-banner__item-title{
		font-size: 4rem;
	}
	.category-banner__item-total{
		font-size: 1.6rem;
	}
}

.door-selector{
	display: flex;
    padding: 30px;
    height: 500px;
    box-shadow: var(--box-shadow);
    background-color: var(--secondary-color);
    align-content: flex-start;
    flex-direction: column;
}
.door-selector__title{
	font-size: 2rem;
    font-weight: 500;
	margin-bottom: 30px;
}

@media (max-width: 1123px) {
	.door-selector{
		margin-top: 30px;
		height: auto;
	}
}

/*CATEGORIES THUMBS*/
.categories-item{
	display: block;
	position: relative;
	box-shadow: var(--box-shadow);
	background-color: #fff;
	padding: 30px;
	height: 100%;
	color: var(--body-color);
}
.categories-item:hover{
	box-shadow: var(--box-shadow-hover);
}
.intro .categories-item{
	color: #fff;
	background-color: var(--primary-color);
}
.categories-item .thumb{
	display: block;
	height: 250px;	
	min-height: 250px;	
	background-position: center;
	background-repeat: no-repeat;
}
.categories-item.long .thumb{
	height: 70%;
}
.categories-item .title{
	display: block;
    margin: 1rem 0;
    font-weight: 500;
    font-size: 2rem;
}
.categories-item .sub-title{
	color: var(--icon-color);
}
.intro .categories-item .sub-title{
	color: var(--secondary-color);
}
.categories-item .added{
	color: var(--icon-color);
}

/*FORMS*/
.selector{
	color: var(--body-color);
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
	
}
.selector.active{
	position: relative;
	z-index: 20;
}
.selector .selector-title{
	background-color: #fff;
	position: relative;
	font-weight: 500;
	padding: 10px 20px;
	box-shadow: var(--box-shadow);
	border-radius: var(--border-radius);
	cursor: pointer;
	width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.selector.active .selector-title{
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.selector .selector-title span{
	color: var(--icon-color);
}
.selector .selector-title i{
	position: absolute;
	top: calc(50% - 7px);
	right: 10px;
	color: var(--icon-color);
}
.selector.active .selector-title i{
	transform: rotate(180deg);
}
.selector .selector-options{
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
	width: 100%;
	padding: 10px 20px;
	box-shadow: var(--drop-shadow);
	border-bottom-right-radius: var(--border-radius);
	border-bottom-left-radius: var(--border-radius);
	background-color: #fff;
	max-height: 300px;
	overflow-y: auto;
	display: none;
}
.selector .selector-options.disabled:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	background-color: transparent;
}
.selector.active .selector-options{
	display: block;
}
.selector .selector-options .item{
	display: block;
	width: 100%;
	cursor: default;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.selector .selector-options .item:not(:last-child){
	margin-bottom: 5px;
}
.selector .selector-options .item.disabled{
	opacity: 0.4;
}

/*PRODUCTS*/
.products{
	padding: 0;
	margin-bottom: 0;
}
.products > li{
	display: block;
	list-style: none;
	margin-bottom: 30px;
}
.products__item{
	position: relative;
	padding: var(--products-grid) var(--products-grid) 105px var(--products-grid);
	box-shadow: var(--box-shadow);
	border-radius: var(--border-radius);
	height: 100%;
	background-color: #fff;
}
.products__item:hover{
	box-shadow: var(--box-shadow-hover);
}
.products__item-images {
    overflow: hidden;
    position: relative;
    display: flex;
}
.products__item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    transition: opacity 0.25s;
    background: #fff;
    opacity: 0;
}
.products__item-image.active {
    opacity: 1;
}
.products__item .products__item-pagination {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: -ms-flexbox;
    display: flex;
    padding: 0 3rem;
}
.products__item .products__item-page {
    display: block;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    margin: 0 0.35rem;
    border-bottom: 1px solid var(--icon-color);
    transition: border-color 0.25s;
    position: relative;
}
.products__item .products__item-page.active{
    border-bottom: 1px solid var(--primary-color);
}
.products__item-name{
	display: block;
	margin-top: 2rem;
	font-weight: 500;
	opacity: 0.9;
}
.products__item-name:hover{
	opacity: 1;
}
.products__item-bottom{
    position: absolute;
    left: var(--products-grid);
    right: var(--products-grid);
    bottom: var(--products-grid);
    display: flex;
    align-items: center;
    justify-content: space-between;	
}
.products__item-price{
	font-size: 1.8rem;
	font-weight: 500;
	margin: 0;
}
.products__item-price i,
.products__item-price del{
	font-size: 1.2rem;
	color: var(--icon-color);
	display: block;
}
.products__item-price ins{
	text-decoration: none;
	display: block;
}
.products__item-label{
	position: absolute;
	top: var(--products-grid);
	left: 0;
	z-index: 10;
}
.products__item-label > div{
	padding: 2px var(--products-grid);
    margin-bottom: 5px;
    font-weight: 500;
	width: max-content;
}
.products__item-label > div.new{
	background-color: var(--secondary-color);
}
.products__item-label > div.special{
	background-color: #f00;
	color: #fff;
}
.products__item-label > div.popular{
	background-color: var(--primary-color);
	color: #fff;
}
.btn-primary.in-cart{
	border-color: #078724;
    background-color: #078724;
    background: linear-gradient(0deg, #078724 0%, #078724 100%);
    color: #fff;
}
.btn.btn-default.active{
	color: var(--primary-color);
}

/*SERVICES*/
.services-grid__item{
	position: relative;
	padding: 30px 30px 105px 30px;
	box-shadow: var(--box-shadow);
	border-radius: var(--border-radius);
	height: 100%;
	background-color: #fff;
}
.services-grid__item.intro{
	background-color: var(--primary-color);
    background-image: url(../image/ruler.png);
    background-repeat: no-repeat;    
    background-position: center 80%;
    background-size: 84%;
	color: #fff;
}
.services-grid__item:hover{
	box-shadow: var(--box-shadow-hover);
}
.services-grid__item-title{
	font-weight: 500;
	font-size: 1.8rem;
	margin-bottom: 15px;
}
.services-grid__item-description > ul{
	margin: 0;
	padding: 0;
}
.services-grid__item-description > ul > li{
	display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.services-grid__item-description > ul > li:not(:last-child){
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--secondary-color);
}
.services-grid__item-description > ul > li > .title{
	flex: 0 0 70%;
}
.services-grid__item-description > ul > li > .title > span{
	color: var(--icon-color);
	display: block;
}
.services-grid__item-description > ul > li > .price{
	white-space: nowrap;
	font-weight: 500;
}
.intro .services-grid__item-description{
	color: var(--secondary-color);
}
.services-grid__item > .btn{
	position: absolute;
	left: 30px;
	bottom: 30px;
}

/*@media (max-width: 575px) {
	.services-grid__item{
		height: auto;
	}
}*/

.mobile-bottom-menu{
	position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1005;
    width: 100%;
    min-width: 100%;
    background-color: #fff;
    padding: 10px 30px;
    display: none;
    justify-content: space-between;
	-webkit-box-shadow: 0px -5px 8px 0px rgba(34, 60, 80, 0.2);
	-moz-box-shadow: 0px -5px 8px 0px rgba(34, 60, 80, 0.2);
	box-shadow: 0px -5px 8px 0px rgba(34, 60, 80, 0.2);
}
.mobile-bottom-menu button{
	border: none;
	padding: 0;
	background: transparent;
	position: relative;
	line-height: 1px;
}
.mobile-bottom-menu button svg{
	width: 2em;
	height: 2em;
}
.mobile-bottom-menu button i{
	font-size: 3rem; 
	color: var(--icon-color);
}
.mobile-bottom-menu button.active i{
	color: var(--primary-color);
}
.mobile-bottom-menu button > .total{
	position: absolute;
    top: 2px;
    right: -7px;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: #fff;
    height: 16px;
    width: 16px;
    text-align: center;
    border-radius: 16px;
	padding-top: 7px;
}
.mobile-bottom-menu button > .total[data-total="0"]{
	display: none;
}

@media (max-width: 1024px) {
	.catalog-menu__list{
		column-count: 4;
	}
}
@media (max-width: 900px) {
	.mobile-bottom-menu{
		display: flex;
	}
}

@media (max-width: 776px) {	
	header .catalog-menu.active{
		display: block;
		position: fixed;
		top: 0;
		bottom: 45px;
		left: 0;
		right: 0;
		z-index: 1000;
		border-radius: 0;
		margin: 0;
		max-height: 100%;
		padding: 30px 30px 70px 30px;
	}
	.catalog-menu__list{
		column-count: 1;
		margin-bottom: 60px;
	}
	.catalog-menu__list-items{
		display: none;
	}
	.catalog-menu__list > li{
		position: relative;
		padding: 10px 30px 10px 0;
		border-bottom: 1px solid var(--secondary-color);
	}
	.catalog-menu__list > li:after{
		content: "\f105";
		display: inline-block;
		font: normal normal normal 14px / 1 FontAwesome;
		font-size: inherit;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		position: absolute;
        right: 0;
        top: calc(50% - 7px);
	}
	.catalog-menu__list-title{
		font-size: 1.6rem;
	}
	.catalog-menu__list__sub{
		display: block;
		position: fixed;
		top: 0;
		bottom: 45px;
		left: 100%;
		width: 100%;
		z-index: 1001;
		border-radius: 0;
		margin: 0;
		max-height: 100%;
		padding: 30px 30px 70px 30px;
		overflow-y: auto;
		background-color: #fff;
		transition: left 0.25s;
		box-shadow: var(--box-shadow);
	}
	.catalog-menu__list__sub.active{
		left: 0;
	}
	.catalog-menu__list__sub > li{
		font-size: 1.6rem;
		display: block;
		list-style: none;
		padding: 10px 0;
		border-bottom: 1px solid var(--secondary-color);
	}
	.catalog-menu__list__sub > li.back{
		padding: 10px 0 10px 30px;
		border-bottom: none;
		font-weight: 500;
		position: relative;
	}
	.catalog-menu__list__sub > li.back:after{
		content: "\f104";
		display: inline-block;
		font: normal normal normal 14px / 1 FontAwesome;
		font-size: inherit;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		position: absolute;
        left: 0;
        top: calc(50% - 7px);
	}
	.catalog-menu__list__sub > li > a{
		display: block;
		width: 100%;
	}
	.tip-line__menu > li{
		display: block;
		border-bottom: 1px solid var(--secondary-color);
	}
	.tip-line__menu > li > a{
		margin: 0;
		padding: 10px 0;
		display: block;
		width: 100%;
	}
	.tip-line__menu > li:first-child > a{
		padding: 10px;
		text-align: center;
	}
}



/*REVIEWS*/
.reviews-item{
	height: 100%;
	padding: 30px;
	border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
	background-color: #fff;
}
.reviews-head{
	display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 48px;
    margin-bottom: 15px;
    font-weight: 500;
}
.reviews-head-stars{
	display: block;
    font-size: 0.7rem;
    margin-bottom: 1rem;
	color: #ffb300;
}
.reviews-item img{
	width: 48px;
	height: 48px;
	margin-right: 15px;
}
.reviews-body{
	padding: 0 30px 15px;
    margin-bottom: 20px;
    margin-left: -30px;
    margin-right: -30px;
    border-bottom: 1px solid var(--bg-secondary-color);
}
.reviews-body a{
	color: var(--primary-color);
}
.reviews-body a:hover{
	color: var(--hover-color);
}
.reviews-body p{
	height: 84px;
	overflow: hidden;
}
.reviews-body span{
	display: block;
    color: var(--icon-color);
    font-size: 13px;
	margin-bottom: 15px;
}
.reviews-foot{
	display: flex;
    align-items: center;
    justify-content: flex-start;
}
.reviews-foot-letter{
	font-size: 1.8rem;
    font-weight: 600;
    background-color: var(--primary-color);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: var(--border-radius);
    text-align: center;
    line-height: 4.4rem;
    margin-right: 1.5rem;
}
.reviews-foot-title{
	font-size: 1.8rem;
}
.reviews-foot-title small{
	display: block;
    font-size: 1.3rem;
    color: var(--icon-color);
}
.reviews-item i{
    color: #ffb300;
}

.reviews-foot .reviews-foot-date{
	margin: 0 0 0 auto;
	color: var(--icon-color);
    font-size: 13px;
}

/*POPUP*/
.popup{
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999999999;
	display: flex;
}
.popup:before{
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.6);
}
.popup > div{
	position: relative;
	z-index: 3;
	margin: auto;
}
/*.popup > div:before{
	content: '';
	position: absolute;
	top: -50px; right: -50px; bottom: -50px; left: -50px;
	z-index: 0;
}*/
.popup > div .close{
	position: absolute;
    top: 32px;
    right: 30px;
    background: none;
    border: none;
    opacity: 1;
}
.popup > div .close img{
	width: 19px;
}
@media (max-width: 991px) {
	.popup > div:before{display: none;}
}

.account-form{
	width: 508px;
	max-width: 95%;
	padding: 30px;
	background-color: #fff;
	border-radius: var(--border-radius);
	box-shadow: var(--drop-box);
}

.form .form-name{
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 25px;
	padding-right: 40px;
}
.form .input-box{
	position: relative;
}
.form .input-box:not(:last-child){
	margin-bottom: 25px;
}
.form .input-box.agreement{
	text-align: center;
}
.form .input-box .input{
	position: relative;
    z-index: 1;
    width: 100%;
    padding: 10px 10px;
    border: none;
    box-shadow: var(--box-shadow);
	background-color: #ffffff47;
}
.form .input-box .input:focus{
	background-color: #ffffff;
}
.form .input-box label{
	position: absolute;
    top: calc(50% - 10px);
    left: 25px;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: normal;
    cursor: auto;
}
.form .input-box .input.ne + label{
	top: -16px;
    font-size: 1.2rem;
    background-color: #ffffff;
    padding: 3px;
    border-radius: 4px;
}
.form .input-box.err label{
	color: var(--theme-primary-color);
}
.form .input-box button{
	display: block;
	width: 100%;
	margin: 0 auto;
}
.form .input-box button span{
	opacity: 0.6;
}
.form.active .input-box button{
	opacity: 0.6;
}
.form p{
	font-size: 18px;
}
.form .error{
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    display: flex;
}
.form .error:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
	background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(1px);
}
.form .error .body{
	position: relative;
	z-index: 2;
	margin: auto;
    background-color: #e19292;
    color: #fff;
    width: 80%;
    max-height: 80%;
    padding: 30px;
    border-radius: 10px;
}
.form .error .body div:not(:last-child){
	margin-bottom: 15px;	
}

/*PRODUCT*/
.product{
	padding: 30px;
	border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
	background-color: #fff;
	position: relative;
}

.product .label{
	position: absolute;
	top: 30px;
	left: 0;
	z-index: 10;
	padding: 0;
}
.product .label > div {
    padding: 5px var(--products-grid);
    margin-bottom: 5px;
    font-weight: 500;
	font-size: 1.6rem;
    width: max-content;
}
.product .label > div.new{
	background-color: var(--secondary-color);
	color: var(--body-color);
}
.product .label > div.special{
	background-color: #f00;
	color: #fff;
}
.product .label > div.popular{
	background-color: var(--primary-color);
	color: #fff;
}

.product h1{
	font-size: 2.4rem;
}
.product .product-images{
	text-align: center;
}
.product .product-slide{
	margin: 30px auto 0;
	width: 500px;
	max-width: 100%;		
	position: relative;
}
.product .product-slide__list{
	display: block;	
	margin: 0 -1px;
	padding: 0;	
	display: flex;	
}
.product .product-slide__body{
	border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius);
	overflow: hidden;
}
.product .product-slide:has(.nav):hover .product-slide__body{
	border-radius: 0;
}
.product .product-slide .nav{
	position: absolute;
    top: 0;
    z-index: 5;
    height: 100%;
    padding: 10px;
    background-color: #fff;
    display: flex;
    align-items: center;
	border: 1px solid var(--secondary-color);
	cursor: pointer;
	opacity: 0;
}
.product .product-slide:hover .nav{
	opacity: 1;
}
.product .product-slide .nav i{
	opacity: 0.2;
}
.product .product-slide .nav.active i{
	opacity: 1;
}
.product .product-slide .nav:hover{
	color: var(--primary-color);
}
.product .product-slide .nav.prev{
	left: -29px;
	border-top-left-radius: var(--border-radius);
	border-bottom-left-radius: var(--border-radius);
}
.product .product-slide .nav.next{
	right: -29px;
	border-top-right-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
}
.product .product-slide__list li{
	display: block;
    list-style: none;
    padding: 10px;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
	cursor: pointer;
	border: 1px solid transparent;
}
.product .product-slide__list li:not(:last-child){
	border-right-color: var(--secondary-color);
}
.product .product-slide__list li:hover,
.product .product-slide__list li.active{
	background-color: var(--secondary-color);;
}
.product .product-thumb{
	display: flex;
	margin: 0 auto;
	width: 500px;
	max-width: 100%;
	overflow: hidden;
	position: relative;
}
.product .product-thumb__item{
	-ms-flex: 0 0 100%;
    flex: 0 0 100%;
	opacity: 0;
	transition: opacity 0.25s;
	background-color: #fff;
}
.product .product-thumb__item.active{
	opacity: 1;
}
.product .product-descr__sku{
	font-size: 1.rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--secondary-color);
    padding-top: 10px;
}
.product .product-descr__sku span{
	color: var(--icon-color);
}
.product .product-descr__sku button{
	background: none;
	border: none;
}
.product .product-descr__sku button svg{
	width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    vertical-align: text-top;
    margin-right: 3px;
}
.product .product-descr__sku button.active i,
.product .product-descr__sku button.active svg{
	color: var(--primary-color);
}

.product-descr__specifications{
	width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
}
.product-descr__specifications th,
.product-descr__specifications td{
	font-size: 1.4rem;
    font-weight: 400;
	padding: 5px 0;
}
.product-descr__specifications th{
	color: var(--icon-color);    
	vertical-align: top;
	padding-right: 5px;
}
.descr__specifications-title{
	font-weight: 500;
}
.descr__specifications-line {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	background: none;
}
.descr__specifications-line:after{
	content: "";
	display: block;
	border-bottom: 1px dashed #D7DBE9;
	-ms-flex: 1;
	flex: 1;
	margin: 0 0 0 0.5rem;
	position: relative;
	top: 0.4rem;
}
.descr__specifications-title{
	font-weight: 500;
	display: block;
}
table tbody tr:not(:first-child) .descr__specifications-title{
	margin-top: 30px;
}

@media (max-width: 1123px) {
	#product-menu{
		display: none;
	}
	.product-descr,
	#product-menu-mobile{
		margin-top: 30px;
	}
}

#product .products__item-price{
	font-size: 2.8rem;
}

.products__item-quantity{
	display: flex;
    align-items: stretch;
    margin: 20px 0;
}
.products__item-quantity button{
	border: 1px solid var(--secondary-color);
	border-radius: 0;
	background: none;
	padding: 0 10px;
	height: 27px;
}
.products__item-quantity button.minus{
	border-top-left-radius: var(--border-radius);
	border-bottom-left-radius: var(--border-radius);
}
.products__item-quantity button.plus{
	border-top-right-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
}
.products__item-quantity input{
    border: none;
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    border-radius: 0;
    flex: 0 0 50px;
    text-align: center;
	height: 27px;
}

.products__item-stock{
	margin: 15px -30px -15px -30px;
    padding: 15px 30px 0;
    font-weight: 500;
    border-top: 1px solid var(--secondary-color);
}
.products__item-stock > span:before{
	content: '';
    width: 11px;
    height: 11px;
    display: inline-block;
    border-radius: 11px;
    background-color: var(--icon-color);
    margin-right: 4px;
}
.products__item-stock > span.in-stock:before{
	background-color: #06790b;
}

.product-descr__options-label{
	font-weight: 500;
	margin-bottom: 10px;
}
.product-descr__options label.label-radio{
	padding: 5px 10px;
    margin: 0 5px 5px 0;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
	cursor: pointer;
}
.product-descr__options label.label-radio:has(input:checked){
    border-color: var(--primary-color);
    background-color: var(--primary-color);
	color: #fff;
}

.product-reviews{
	display: flex;
}
.product-reviews .reviews-item{
	display: flex;
    flex-flow: wrap;
    height: auto;
    padding: 0;
    border-radius: 20px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
	border-radius: 0;
}
.product-reviews .reviews-item:not(:first-child){
	border-top: 1px solid var(--secondary-color);
	padding-top: 20px;
	margin-top: 20px;
}
.product-reviews .reviews-body{
	padding: 15px 30px;
    margin-bottom: 0;
    border-bottom: none;
	order: 1;
	width: 100%;
}
.product-reviews .reviews-body p{
	height: auto;
}
.product-reviews  .reviews-foot{
	order: 0;
	width: 100%;
}
.product-reviews  .reviews-head-stars{
	order: 2;
	width: 100%;
}

.product-reviews #review{
	-ms-flex: 0 0 60%;
    flex: 0 0 60%;
}

.product-reviews__form{
	-ms-flex: 0 0 40%;
    flex: 0 0 40%;
	padding-left: 30px;
}
@media (max-width: 777px) {
	.product-reviews{
		flex-direction: column;
	}
	.product-reviews__form{
		padding-left: 0;
		margin-top: 15px;
		padding-top: 15px;
		border-top: 1px solid var(--secondary-color);
	}
}

.product-rating{
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.product-rating .rating{
	font-size: 3rem;
	font-weight: 500;
	line-height: 0;
}
.product-rating .rating i{
	color: #ffb300;
	font-size: 3rem;
	margin-right: 5px;
}
.product-rating .rating svg{
	width: 3rem;
	height: 3rem;
	color: #ffb300;
	position: relative;
	top: 3px;
	left: -8px;
}
.product-rating .total{
	margin-top: 8px;
	color: var(--icon-color);
}

.tab-pane.card{
	padding: 30px;
	margin-bottom: 0;
	border-top-right-radius: var(--border-radius);
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
	background-color: #fff;
}
.tab-pane.card h2{
	font-size: 2rem;
}

.card{
    background-color: #fff;
    border-radius: var(--border-radius);
	margin-bottom: 30px;
	box-shadow: var(--box-shadow);
	background-color: #fff;
}
.card .card-header{
	position: relative;
}
.card .card-header h2,
.card .card-header h3 {
	margin: 0;
    padding: 0;
}
.card .card-header button{
	position: relative;
	padding: 25px;
    border: none;
    background: transparent;
    font-size: 1.6rem;
	width: 100%;
	text-align: left;
}
.card .card-header button:after{
	content: "\f0d7";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--icon-color);
    position: absolute;
    right: 9px;
    top: calc(50% - 0px);
    line-height: 0px;
	transform: rotate(180deg);
}
.card .card-header button.collapsed:after{
	transform: rotate(0deg);
}

.card .card-body{
	padding: 0 25px 25px;
}

.sticky-grgroup_item{
	padding: 30px;
	border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
	background-color: #fff;
}
.sticky-grgroup_item.intro{
	background-color: var(--primary-color);
}
.sticky-grgroup_item.intro .form-name{
	color: #fff;
}
.sticky-grgroup_item.intro .agreement,
.sticky-grgroup_item.intro .agreement a{
	font-size: 11px;
    text-align: left;
	color: var(--secondary-color);
}

.timer{
	position: relative;
	margin-bottom: 30px;
}
.timer img{
	position: absolute;
    top: -35px;
    right: -25px;
    z-index: 5;
    width: 80px;
}
.timer .countdown{
	display: flex;
    justify-content: space-between;
    align-items: center;
	width: 100%;
	padding-right: 70px;
}
.timer .countdown .countdown-number{
	text-align: center;
	color: var(--secondary-color);
	border-radius: var(--border-radius);
	width: 25%;
	flex: 0 0 25%;
	padding: 5px;
	background-color: #ffffff30;
}
.timer .countdown .countdown-number:not(:last-child){
	margin-right: 3px;
}
.timer .countdown .countdown-number .countdown-time{
	font-size: 2rem;
	font-weight: 500;
    display: block;
	margin: 0 auto;
}
.timer .countdown .countdown-number .countdown-text{
	font-size: 11px;
}
/**/
.nav-tabs{
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus{
	color: #fff;
    cursor: default;
    background-color: var(--primary-color);
	border-color: transparent;
}

#scroll-top {
    position: fixed;
    left: 50px;
    bottom: 50px;
    z-index: 105;
    border: none;
    border-radius: 100%;
    background-color: #fff;
    width: 0px;
    height: 0px;
    opacity: 0;
    overflow: hidden;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    padding-bottom: 3px;
}
#scroll-top.active {
    width: 50px;
    height: 50px;
    opacity: 1;
    box-shadow: var(--drop-shadow);
}

.cart-data{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity 0.25s, visibility 0.25s;
    opacity: 0;
	visibility: hidden;
	overflow: hidden;
}
.cart-data.active{
	opacity: 1;
	visibility: visible;
}
.cart-data__title{
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-data__title > span{
	font-size: 2rem;
	font-weight: 500;
}
.cart-data__title > i{
	cursor: pointer;
	font-size: 1.6rem;
}
.cart-data__body{
	width: 100;
	height: 100%;
}
.cart-data__close{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	height: 100%;
	width: 100%;
}
.cart-items{
	position: relative;
	right: -100%;
	height: 100%;
	z-index: 2;
    width: 600px;
	max-width: 100%;
    background-color: var(--secondary-color);
    margin: 0 0 0 auto;
	padding: 30px;
}
.cart-data.active .cart-items{
	right: 0;
}
.cart-items .scroll-box{
	max-height: calc(100% - 180px);	
	margin-bottom: 30px;
}
.cart-items__item{
	position: relative;
	background-color: #fff;
    padding: 15px;
    margin-bottom: 15px;
	border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-items__item > button:hover,
.cart-items__item > button{
	position: absolute;
    left: 7px;
    top: calc(50% - 4px);
    padding: 0;
    background: transparent;
	opacity: 0;
}
.cart-items__item:hover > button{
	opacity: 1;
}
.cart-items__item > button:hover i{
	color: #f00;
}
.cart-items__item > button > i{
	font-size: 1.2rem;
}
.cart-items__item-thumb{
	flex: 0 0 70px; 
	margin: 0 1.5rem;
}
.cart-items__item-info{
	white-space: normal;
}
.cart-items__item-price{
	flex: 0 0 120px;
    text-align: right;
    font-weight: 500;
}
.cart-items__item-price > span{
	font-weight: 400;
	font-size: 1.2rem;
	color: var(--icon-color);
	display: block;
}
.cart-items__bottom{
	background-color: #fff;
    padding: 15px;
    margin-bottom: 15px;
	border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-items__totals > span:first-child{
	color: var(--icon-color);
}
.cart-items__totals > span:last-child{
	font-weight: 500;
    font-size: 1.6rem;
}

.title-more-link{
	display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-more-link > a{
	display: block;
	color: var(--primary-color);
}
.title-more-link > a:after{
    content: "\f178";
	color: var(--icon-color);
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-left: 10px;
    vertical-align: middle;
}

@media (max-width: 900px) {
	.title-more-link{
		display: block;
	}
	.title-more-link > a{
		
	}
}

.drop-box{
	position: relative;
	z-index: 100;
	width: max-content;
}
.drop-box:after{
    content: "\f0d7";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--icon-color);
    position: absolute;
    right: -17px;
    top: calc(50% - 0px);
    line-height: 0px;
}
.drop-box .drop-box__menu{
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 10;
	min-width: 300px;
	max-width: 400px;
	display: none;
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: var(--drop-shadow);
	padding: 20px 30px;
	border-radius: var(--border-radius);
}
.drop-box .drop-box__menu.left{
	right: auto;
	left: 0;
}
.drop-box:hover .drop-box__menu{
	display: block;
}
.drop-box .drop-box__menu .option{
	cursor: pointer;
	white-space: nowrap;
}
.drop-box .drop-box__menu .option:not(:last-child){
	margin-bottom: 5px;
}
.drop-box .drop-box__menu .option:hover,
.drop-box .drop-box__menu .option.active{
	color: var(--primary-color);
}

.drop-box > a{
	padding-right: 0!important;
}

.drop-box__menu > li{
	display: block;
	padding: 10px 0;
}
.drop-box__menu > li:not(:last-child){
	border-bottom: 1px solid var(--secondary-color);
}

.selectST > .title{
	cursor: pointer;
	font-weight: 500;
}

.description-data{
	display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}
.description .description-thumb{
	-webkit-box-flex: 0;
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
    max-width: 150px;
	margin-right: 30px;
}
.description .description-body{
	height: auto;
	overflow: hidden;
}
.description .read-more{
	color: var(--primary-color);
	margin-top: 15px;
	display: none;
}
.description .read-more:before{
	content: 'Читать дальше';
}
.description .read-more.active:before{
	content: 'Скрыть';
}
.description .read-more i{
	color: var(--icon-color);
	vertical-align: middle;
}
.description .read-more.active i{
	transform: rotate(-90deg);
}
.description-rating{
	font-size: 1.2rem;
}
.description-rating .title{
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 10px;
}
.description-rating .stars{
	color: var(--icon-color);
}
.description-rating .stars > span{
	font-size: 1.8rem;
	font-weight: 500;
}
.description-rating .stars > svg{
	width: 2rem;
    height: 2rem;
    position: relative;
	top: 4px;
    color: #ffb300;
}
.pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: flex
;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex: 1;
    flex: 1;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 500;
}
.pagination > li > a, 
.pagination > li > span{
	display: inline-block;
	margin: 0 1px;
	border: none;
	border-radius: var(--border-radius);
	color: var(--body-color);
	background: transparent;
}
.pagination > .active > a, 
.pagination > .active > span, 
.pagination > .active > a:hover,
.pagination > .active > span:hover, 
.pagination > .active > a:focus, 
.pagination > .active > span:focus{
	background: var(--primary-color);
	color: #fff;
}
.pagination > li > a > i, 
.pagination > li > span > i{
	color: var(--icon-color)
}
@media (min-width: 768px) {
    .pagination {
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.list-group{
	padding: 0;
	margin: 0 0 30px;
	border-radius: var(--border-radius);
	background-color: #fff;
    box-shadow: var(--box-shadow);
	overflow: hidden;
}
.list-group li{
	display: block;
	list-style: none;
	position: relative;
}
.list-group li:not(:last-child){
	border-bottom: 1px solid var(--secondary-color);
}
.list-group .list-group-title{
	padding: 15px;
	background-color: var(--primary-color);
	color: #fff;
}
.list-group .list-group-item{
	border: none;
	border-radius: 0;
	padding-right: 50px;
	background: transparent;
}
.list-group .list-group-item.active{
	background-color: var(--secondary-color);
	color: var(--body-color);
}
.list-group .list-group-counter{
	position: absolute;
    right: 15px;
    top: calc(50% - 10px);
    z-index: 2;
    display: block;
    background-color: var(--secondary-color);
    color: var(--icon-color);
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 20px;
    font-size: 13px;
}

.compare-products{
	position: relative;
}
.compare-products__output{
	position: absolute;
    top: 381px;
    z-index: 100;
    padding: 0 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	height: 46px;
}
.compare-products__item,
.compare-products__specifications{
	padding: 30px;
	border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.compare-products__item{
	margin-bottom: 60px;
}
.compare-products__item .image{
	display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 15px;
}
.compare-products__item .name{
	margin-bottom: 10px;
}
.compare-products__item .name a{
    color: var(--body-color);
    font-weight: 500;
    height: 101px;
    display: block;
}
.compare-products__item .buttons{
	margin-top: 10px;
}
.compare-products__specifications:hover{
	background-color: var(--secondary-color);
}
.compare-products__specifications-item{
	margin-left: -30px;
	margin-right: -30px;
	padding: 0 30px;
}
.compare-products__specifications-item.active{
	background-color: var(--secondary-color);
}
.compare-products__specifications-item:hover{
	background-color: #fff;
}
.compare-products__specifications-item:not(:last-child){
	margin-bottom: 15px;
}
.compare-products__specifications-item .name{
	color: var(--icon-color);
}
.compare-products__specifications-item .value{
	font-weight: 500;
}
.switch{
	margin: 0;
	height: 20px;
	width: 40px;
	border-radius: var(--border-radius);
	border: 1px solid #ccc;
	position: relative;
	vertical-align: middle;
	overflow: hidden;
	cursor: pointer;
	display: inline-block;
}
.switch:after{
	content: '';
	position: absolute;
	top: -1px;
	right: calc(100% - 20px);
	width: 20px;
	height: 20px;
	border-radius: var(--border-radius);
	background-color: var(--icon-color);
	transition: left 0.25s;
}
.switch:has(input:checked):after{
	right: 0;
	background-color: var(--primary-color);
}
.switch > input{
	display: none;
}

.manufacturer-name{
	display: inline-block;
	padding: 10px 15px;
	box-shadow: var(--box-shadow);
	border-radius: var(--border-radius);
	background-color: #fff;
}
.manufacturer-name:hover{
	box-shadow: var(--box-shadow-hover);
}

[data-select]{
	opacity: 0;
}

.sticky-grgroup{
	position: sticky;
    top: 30px;
}
.fixed-header .sticky-grgroup{
	top: 100px;
}


.article__page{
	min-height: 55vh;
}
.article__page .article__subline{
	margin-bottom: 30px;
}
.article__page .article__subline .article__subline-tag{
	margin-right: 30px;
}
.article__page .article__subline .article__subline-info{
	font-weight: 500;
	font-size: 1.6rem;
}
.article__page .article__page-body{
	margin: 0 6vw;
}

.conpany-contacts__address{
	height: 100%;
	padding: 30px;
	border-radius: var(--border-radius);
    box-shadow:  var(--box-shadow);
	background-color: #fff;
}
.conpany-contacts__address h2{
	padding: 0;
    margin: 0 0 30px;
    font-size: 2.3rem;
}
.conpany-contacts__address p{
	font-weight: 500;
}
.conpany-contacts__address p:not(:last-child){
	padding-bottom: 12px;
	margin-bottom: 15px;
	border-bottom: 1px solid var(--secondary-color);
}
.conpany-contacts__address p > span.title{
	display: block;
	margin-bottom: 5px;
	color: var(--icon-color);
}
.conpany-contacts__map{
	height: 100%;
	min-height: 300px;
	border-radius: var(--border-radius);
    box-shadow:  var(--box-shadow);
	background-color: #fff;
	overflow: hidden;
}
.conpany-contacts__map > iframe{
	border: none;
	width: 100%;
	height: 100%;
}

.telephone i{
	color: var(--primary-color);
	margin-right: 5px;
}

.services-list__group{
	padding: 30px;
	border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);	
}
.services-list__group:not(:last-child){
	margin-bottom: 30px;
}
.card-body .services-list__group{
	padding: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;	
}
.services-list__group-name{
	margin: 0 0 15px 0;
    font-weight: 500;
    font-size: 2.4rem;
}
.services-list__group-items{
	margin: 0;
	padding: 0;
}
.services-list__group-items > li{
    display: flex;
    list-style: none;
    align-items: flex-start;
    justify-content: space-between;
	margin-left: -30px;
    margin-right: -30px;
    padding: 15px 30px;
}
.services-list__group-items > li:hover{
	background-color: var(--secondary-color);
}
.services-list__group-items > li:not(:last-child){
	border-bottom: 1px solid var(--secondary-color);
}
.services-list__group-items .name{
	font-weight: 500;
	width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.services-list__group-items .name:after{
	content: "";
    display: block;
    border-bottom: 1px dashed #fff;
    -ms-flex: 1;
    flex: 1;
    margin: 0 0 0 0.5rem;
    position: relative;
    top: 1.4rem;
}
.services-list__group-items .name > p > span{
	display: block;
	color: var(--icon-color);
	font-weight: normal;
}
.services-list__group-items .price{
	margin-left: 5px;
    font-weight: 500;
    white-space: nowrap;
}

.manufacturers{
	padding: 0;
	margin-bottom: 0;
}
.manufacturers__item{
	display: block;
	text-align: center;
	padding: 30px;
	border-radius: var(--border-radius);
    box-shadow:  var(--box-shadow);
	background-color: #fff;
}
.manufacturers__item:hover{
	box-shadow:  var(--box-shadow-hover);
}
.manufacturers__item > img{
	margin: 0 auto;
}

.galety__item{
	background-color: #fff;
	padding: 30px;
	box-shadow: var(--box-shadow);
	text-align: center;
}
.galety__item > img{
	margin: 0 auto;
}
/*FOOTER*/
footer{
	margin-top: 30px;
	background: #333;
    padding: 50px 0 20px;
    color: #fff;
}
footer a{
	color: var(--secondary-color);
}
footer .logo{
    display: block;
    width: 240px;
    margin-bottom: 15px;
}
footer .contact{
    display: block;
    margin-bottom: 15px;
    font-size: 1.8rem;
}
footer ul > li:not(:last-child) a{
	display: inline-block;
	margin-bottom: 10px;
}