.filtren .showchild .hint {
	border-radius: 10px;
}
.prod-list {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0 0 10px 10px;
	box-sizing: border-box;
}
.prod-list__item {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	border: 1px solid #ddd;
	box-sizing: border-box;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.prod-list__item:not(:last-child) {
	margin-bottom: 10px;
}
.prod-preview {
	width: 25%;
	padding: 10px;
	box-sizing: border-box;
	position: relative;
}
.prod-preview img {
	/*width: 100%;
	max-width: calc(100% - 40px);*/
	max-width: 170px;
	margin: 20px;
	display: flex;
	margin: auto;
}
.prod-detail {
	width: calc(75% - 250px);
	padding: 10px 20px;
	box-sizing: border-box;
}
.prod-name {
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	margin: 0 -10px 14px;
}
.prod-detail .review-stars {
	margin: 0 0 10px;
}
.prod-proplist {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}
.prod-proplist-showmore {
	color: #000;
	text-decoration: underline;
	font-size: 14px;
}
.prod-proplist__item {
	display: block;
	width: 100%;
	list-style: none;
}
.prod-proplist__item:not(:last-child) {
	margin-bottom: 4px;
}
.prod-proplist__item:last-child {
	display: none;
}
.prod-proplist__item span {
	font-size: 14px;
}
.prod-proplist__item span:nth-child(1) {
	color: #b8b8b8;
}
.prod-proplist__item span:nth-child(2) {
	color: #000;
}
.prod-info {
	width: 250px;
	padding: 10px;
	box-sizing: border-box;
	background-color: #f2f2f2;
}
.prod-icons  {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 0 10px;
	padding: 0 0 10px;
	border-bottom: 1px solid #ddd;
}
.prod-icons a:last-child {
	margin-right: 0;
}
.prod-exist {
	margin: 0 5px 0 0;
}
.prod-exist span {
	vertical-align: middle;
	font-size: 12px;
	color: #080;
}
.prod-exist img {
	width: 20px;
	height: 20px;
	vertical-align: middle;
}
.prod-cost {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 0 10px;
	padding: 0 0 10px;
	border-bottom: 1px solid #ddd;
}
.prod-cost-cur {
	width: 100%;
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: bold;
	color: #000;
}
.prod-cost-old {
	margin: 0 10px 0 0;
	font-size: 12px;
	text-decoration: line-through;
	color: #800;
}
.prod-cost-siz {
	font-size: 12px;
	color: #080;
}
.prod-buying {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 10px;
	padding: 0 0 10px;
	border-bottom: 1px solid #ddd;
}
.prod-buying-quantity {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.prod-buying-quantity .minus {
	border-radius: 3px 0 0 3px;
}
.prod-buying-quantity .plus {
	border-radius: 0 3px 3px 0;
}
.prod-buying-quantity .minus,
.prod-buying-quantity .plus {
	width: 25px;
	height: 36px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	background-color: #ccc;
	color: #000;
	font-size: 16px;
	text-decoration: none;
}
.prod-buying-quantity .measurename {
	height: 36px;
	display: flex;
	align-items: center;
	padding: 0 5px;
	background-color: #fff;
	justify-content: center;
}
.prod-buying-quantity .quantity {
	width: 36px !important;
	height: 36px !important;
	box-sizing: border-box;
	padding: 5px !important;
	font-size: 14px !important;
	text-align: center;
	background-color: #fff !important;
	border: none !important;
}
.prod-buying .add2basket {
	padding: 6px 8px;
	border-radius: 3px;
}

.prod-buying .add2basket .icon {
	width: 23px;
	height: 20px;
	margin: 0 5px 4px 0;
	background-position: -23px -418px;
	background-image: url("/local/templates/prostroy_default/assets/css/../img/icons.png");
}
.prod-info .delivery {
	padding: 0;
	border: none;
}
.delivery-green {
	color: green;
}
.delivery-orange {
	color: orange;
}
.prod-info .title {
	display: flex;
	align-items: center;
	margin: 0 0 10px;
}
.prod-info .title img {
	margin: 0 10px 0 0;
}
.prod-info .title p {
	font-weight: bold;
	font-size: 16px;
}
.prod-info .delivery ul {
	margin: 0;
}
.prod-info .delivery ul li {
	font-size: 12px;
	line-height: 16px;
}
.prod-info .delivery ul li:not(:last-child) {
	margin-bottom: 2px;
}
@media screen and (max-width: 990px) {
	.prod-preview {
		 width: calc(100% - 250px);
		 order: 0;
		 border-bottom: 1px solid #ddd;
	}
	.prod-detail {
		 width: 100%;
		 order: 2;
	}
	.prod-info {
		 width: 250px;
		 order: 1;
		 border-left: 1px solid #ddd;
		 border-bottom: 1px solid #ddd;
	}
	.prod-list__item {
		 border-bottom: 1px solid #ddd;
	}
	.prod-list__item:not(:last-child) {
		 margin-bottom: 20px;
	}
}
@media screen and (max-width: 750px) {
	.prod-list {
		 padding: 0 0 10px 0;
	}
	.prod-list__item:not(:last-child) {
		 margin-bottom: 10px;
	}
}
@media screen and (max-width: 600px) {
	.prod-preview {
		 width: 50%;
		 padding: 10px;
		 border-bottom: none;
		 order: 0;
	}
	.prod-preview .label-left,
	.prod-preview .label-right {
		 font-size: 12px;
	}
	.prod-detail {
		 width: 50%;
		 padding: 10px;
		 order: 1;
	}
	.prod-name {
		 margin: 0;
		 overflow-wrap: anywhere;
	}
	.prod-proplist {
		 width: 100%;
		 padding: 10px;
		 box-sizing: border-box;
		 order: 2;
	}
	.prod-info {
		 display: flex;
		 flex-wrap: wrap;
		 align-items: flex-start;
		 width: 100%;
		 border-left: none;
		 border-bottom: none;
		 margin: 0;
		 padding: 10px;
		 order: 3;
	}
	.prod-icons {
		 margin: 0 -10px -10px;
		 border-bottom: none;
		 padding: 5px;
	}
	.prod-exist {
		 margin: 0 5px 0 0;
		 border-bottom: none;
	}
	.prod-exist img {
		 min-width: 20px;
		 margin: 0 5px 0 0;
	}
	.prod-buying {
		 width: 100%;
		 padding: 0;
		 border-bottom: none;
		 order: 0;
		 margin-top: 5px;
	}
	.prod-buying-quantity {
		 display: none;
	}
	.prod-buying .add2basket {
		 margin: 0;
	}
	.prod-cost {
		 width: 50%;
		 margin: 0 0 10px;
		 padding: 0;
		 border-bottom: none;
		 order: 0;
	}
	.prod-info .delivery {
		 width: 50%;
		 order: 1;
	}
	.prod-proplist__item {
		 position: relative;
		 display: flex;
		 justify-content: space-between;
	}
	.prod-proplist__item.open {
		 display: flex !important;
	}
	.prod-proplist__item::before {
		 content: '';
		 position: absolute;
		 bottom: 0;
		 left: 0;
		 width: 100%;
		 border-bottom: 1px dotted #b8b8b8;
		 z-index: -1;
	}
	.prod-proplist__item span {
		 background-color: #fff;
	}
	.prod-proplist__item:nth-child(n+4) {
		 display: none;
	}
	.prod-proplist__item:last-child {
		 display: block;
	}
	.prod-proplist__item:last-child::before {
		 display: none;
	}
}
@media screen and (max-width: 450px) {
	.prod-preview img {
		 display: block;
		 margin: 0 auto;
	}
	.prod-exist span {
		 display: none;
	}
	.prod-cost-cur {
		 font-size: 18px;
	}
	.prod-preview .label-left, .prod-preview .label-right {
		 font-size: 12px;
	}
}
.prod-buying form .inbasket{
	display: none;
}
.prod-buying form.in .inbasket{
	display: inline-block !important;
}
.prod-list__item .rate-counter{
	display: inline-block;
}
.prod-list__item .marker-block{
	display: flow-root;
}
.prod-list__item .rating-block{
	display: inline-block;
}
.official{
	background: url("/local/templates/prostroy_default/img/oficial.svg");
	width: 20px;
	height: 20px;
	background-size: cover;
	display: inline-block;
}
.order_text{
	min-width: 200px;
	display: none;
	position: absolute;
	background: white;
	margin-top: 50px;
	padding: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.order_cont{
	display: inline-flex;
	margin: auto;
	float: right;
}
.order_cont:hover .order_text{
	 display: inherit;
}
#toTop {   
  display: none;   
  background: url("/images/arrow-up-to-top1.png") no-repeat top left;  
  width: 50px;   
  height: 50px;   
  text-align: center;   
  border-radius: 50%;   
  margin: 40px;   
  position: fixed;   
  bottom: 25px;   
  left: 30px;     
  z-index: 1000; 
} 
#toTop:hover {   
  cursor: pointer; 
  opacity: 0.8;  
}
.catalogmenucolumn li.first{
	position: relative;
	height: auto !important;
}

.catalogmenucolumn li.first ul{
	position: absolute;
	top: 0;
	height: auto !important;
	margin-top: 0px !important;
}
.catalogmenucolumn li.first img{
	display: flex;
	margin: auto 0;
}

.parameters-block__left-wrap {
	justify-content: flex-start;
}

.parameters-block__down {
	margin: auto 0 0 0;
}

.bx_item_detail .item_info_section {
	padding-left: 0;
}

.item_info_section .bx_item_section_name_gray {
	font-family: 'Open Sans';
	color: #b8b8b8;
	font-size: 14px;
}

.bx_item_detail .bx_item_detail_size ul li {
	width: auto !important;
	height: auto;
	margin: 5px 5px 5px 0;
}

.bx_item_detail .bx_item_detail_size ul li .cnt {
	padding: 0 10px;
	position: static;
	transform: none;
	font-family: 'Open Sans';
	color: #000;
	font-size: 14px;
	border: 2px solid #c0cfda;
	transition: .3s;
}
/*
.bx_item_detail .bx_item_detail_size ul li:hover .cnt {
	border: 2px solid #006cc0;
}
.bx_item_detail .bx_item_detail_scu .bx_scu ul li:hover .cnt {
	border: 2px solid #006cc0;
} */

.bx_item_detail .bx_item_detail_size ul li:active .cnt, .bx_item_detail .bx_item_detail_size ul li.bx_active .cnt {
	border: 2px solid #c4010c !important;
}
.bx_item_detail .bx_item_detail_scu .bx_scu ul li:active .cnt, .bx_item_detail .bx_item_detail_scu .bx_scu ul li.bx_active .cnt {
	border: 2px solid #c4010c !important;
}

.bx_item_detail .bx_item_detail_scu .bx_scu ul li {
	transition: .3s;
}

.bx_item_detail .bx_item_detail_size ul li:hover .cnt,
.bx_item_detail .bx_item_detail_scu .bx_scu ul li:hover .cnt {
	border: 2px solid #c4010c !important;
}

.img-wrap {
	position: relative;
	width: 100%;
	padding-top: 100%;
}

.img-wrap img{
	height: auto !important;
	width: auto !important;
	position: absolute;
	left: 50%;
	top: 50%;
	max-width: 100%;
	max-height: 100%;
	transform: translate(-50%, -50%);
}

.sectinfo .description {
	max-width: 100%;
	overflow: hidden;
}

.sectinfo .img img{
	float: unset !important;
}

.link-sections {
	/*display: none; */
	padding: 0 22px; 
	margin-bottom: 15px;
}
.link-sections a {
	font-size: 14px;
	color: #000;
	padding: 5px 10px;
	background-color: #dfdfdf;
	margin-right: 10px;
	display: inline-block;
	margin-bottom: 8px;
}

.link-sections a:hover {
	color: #333;
	background-color: #f2f2f2;
}
.presscentermainn {
	width: 20%;
	margin-top: 150px;
}


/*  07.07.21  */

.container {
	max-width: 1920px;
}

.wrapper {
	padding-top: 60px;
}

@media (max-width: 1180px) {
	.wrapper {
		 padding-top: 60px;
	}
}

@media (max-width: 990px) {
	.wrapper {
		 padding-top: 40px;
	}
}

/* Advantages */

.advantages {
	padding: 0 180px;
	background-color: #f3f3f3;
}

.advantages .wrapper {
	padding-top: 30px;
}

.advantages .name {
	margin-bottom: 50px;
	text-align-last: left;
}

@media (max-width: 1600px) {
	.advantages {
		 padding: 0 60px;
	}
}

@media (max-width: 990px) {
	.advantages {
		 padding: 0 15px;
	}
}

.advantages .advantages-wrp {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.advantages .advantages-item {
	display: flex;
	width: calc(50% - 30px);
	margin-bottom: 35px;
	text-align: left;
}

@media (max-width: 1400px) {
	.advantages .advantages-item {
		 flex-direction: column;
	}
}

@media (max-width: 768px) {
	.advantages .advantages-item {
		 display: flex;
		 width: 100%;
		 margin-bottom: 20px;
	}
}

.advantages .advantages-title {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}

@media (max-width: 1400px) {
	.advantages .advantages-title {
		 text-align: center;
	}
}

.advantages .advantages-txt p {
	line-height: 140%;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 12px;
}

@media (max-width: 600px) {
	.advantages .advantages-txt p {
		 font-size: 14px;
		 margin-bottom: 10px;
	}
}

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

.advantages .advantages-icon {
	transition: 0.2s linear;
	min-width: 120px;
	height: 120px;
	border-radius: 50%;
	background-color: #f6f6f6;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 45px;
}

@media (max-width: 1400px) {
	.advantages .advantages-icon {
		 margin: 0 auto 20px;
	}
}

@media (max-width: 600px) {
	.advantages .advantages-icon {
		 min-width: 80px;
		 height: 80px;
	}
}

.advantages .advantages-icon img {
	width: 70px;
	height: 70px;
}

@media (max-width: 600px) {
	.advantages .advantages-icon img {
		 width: 40px;
		 height: 40px;
	}
}

/* Brands */

.brands, .clients {
	background-color: #f3f3f3;
	margin-top: 30px;
}

/* Main-section */

.main-section {
	padding: 0 180px;
}

@media (max-width: 1600px) {
	.main-section {
		 padding: 0 60px;
	}
}

@media (max-width: 990px) {
	.main-section {
		 padding: 0 15px;
	}
}

.section__head {
	display: flex;
	align-items: flex-end;
	margin-bottom: 50px;
}

@media (max-width: 600px) {
	.section__head {
		 flex-wrap: wrap;
	}
}

.main-section .mainsections {
	width: 100%;
	float: none;
}

.main-section .mainsections-list {
	display: flex;
	flex-wrap: wrap;
}

.main-section li.section {
	padding: 30px 10px 30px 40px;
	display: flex;
	width: 33.33%;
	border: 2px solid #F3F3F3;
}

.main-section li.section:hover {
	transition: 0.2s linear;
	box-shadow: 0 0 10px 10px rgb(0 0 0 / 5%);
}

@media (max-width: 990px) {
	.main-section li.section {
		 padding: 10px;
		 width: 50%;
	}
}

@media (max-width: 750px) {
	body.adaptive .mainsections li.section {
		 padding: 10px;
		 width: 50%;
	}
}

@media (max-width: 600px) {
	body.adaptive .mainsections li.section {
		 width: 100%;
	}
}

.main-section .section>a {
	width: 40%;
}

.main-section .mainsections .subsections a {
	font-weight: 400;
	font-size: 16px;
	color: #333;
	margin-bottom: 8px;
}

@media (max-width: 480px) {
	body.adaptive .mainsections li.section {
		 flex-wrap: wrap;
	}
	.main-section .section>a {
		 margin: 0 auto;
	}
	.main-section .section .section-item {
		 width: 100%!important;
	}
	body.adaptive .mainsections .subsections {
		 display: block;
	}
	.main-section .mainsections .subsections a:last-child {
		 font-size: 12px;
	}
}

.main-section .mainsections .subsections a:last-child {
	margin-bottom: 0px;
}

.main-section .mainsections .parent {
	font-weight: 700;
	font-size: 18px;
	color: #333;
	margin-bottom: 15px;
}

.main-section .section .section-item {
	padding-left: 15px;
	width: 60%;
	text-align: left;
}

.main-section .section .section-item li {
	margin-bottom: 8px;
}

.main-section .section .section-item li:last-child {
	margin-bottom: 0;
}

/* Catalog-sort */

.catalog-sort {
	padding: 0 180px 30px;
}

@media (max-width: 1600px) {
	.catalog-sort {
		 padding: 0 60px;
	}
}

@media (max-width: 990px) {
	.catalog-sort {
		 padding: 0 25px;
	}
}

.catalog-sort .catalogsorter {
	margin-bottom: 50px;
	padding-left: 0;
}

.catalog-sort .catalogsorter-filter {
	display: flex;
	align-items: flex-end;
	line-height: 140%;
}

@media (max-width: 1400px) {
	.catalog-sort .catalogsorter-filter {
		 flex-wrap: wrap;
	}
	.catalog-sort .catalogsorter-filter ._title {
		 margin-bottom: 20px;
		 width: 100%;
	}
}

.filter__link {
	margin-left: auto;
	font-size: 18px;
	font-weight: 600;
	color: rgba(51, 51, 51, 0.6);
}

@media (max-width: 990px) {
	.filter__link {
		 font-size: 16px;
	}
}

@media (max-width: 600px) {
	.filter__link {
		 font-size: 14px;
		 width: 100%;
		 margin-top: 10px;
		 text-align: left;
	}
}

._title {
	font-weight: 700;
	text-transform: uppercase;
	color: #333333;
	font-size: 1.5rem;
	line-height: 120%;
}

@media (max-width: 990px) {
	._title {
		 font-size: 25px;
	}
}

@media (max-width: 660px) {
	._title {
		 font-size: 20px;
		 width: 100%;
	}
}

@media (max-width: 480px) {
	._title {
		 font-size: 20px!important;
	}
}

.catalog-sort .template {
	float: none;
	display: flex;
}

@media (max-width: 600px) {
	.catalog-sort .template {
		 width: 100%;
		 justify-content: space-between;
		 flex-wrap: wrap;
	}
}

.catalog-sort .template a {
	font-weight: 600;
	float: none;
	color: rgba(51, 51, 51, 0.7);
	line-height: 140%;
	font-size: 20px;
	padding: 0!important;
	margin: 0 0 0 55px;
}

@media (max-width: 1400px) {
	.catalog-sort .template a {
		 font-size: 20px;
		 margin: 0 15px 0 0;
	}
	.catalog-sort .template a:last-child {
		 margin-right: 0;
	}
}

@media (max-width: 1400px) {
	.catalog-sort .template a {
		 font-size: 20px;
		 margin: 0 15px 0 0;
	}
	.catalog-sort .template a:last-child {
		 margin-right: 0;
	}
}

@media (max-width: 600px) {
	.catalog-sort .template a {
		 font-size: 18px;
	}
}

.catalog-sort .template a:last-child {
	margin-right: 0;
}

.catalog-sort .catalogsorter .template a.selected {
	background: none;
	background-color: transparent;
	color: #D9042B;
	cursor: auto;
}

.catalog-sort .catalogsorter .template a:hover {
	background: none;
	background-color: transparent;
	color: #D9042B;
}

/* About */

.about {}

.about-wrp {
	padding: 0 180px;
	display: flex;
	justify-content: space-between;
}

@media (max-width: 1600px) {
	.about-wrp {
		 padding: 0 60px;
	}
}

@media (max-width: 1400px) {
	.about-wrp {
		 flex-wrap: wrap;
	}
}

.about .about-img {
	position: relative;
	width: 40%;
}

@media (max-width: 1400px) {
	.about .about-img {
		width: calc(50% - 2px);
	}
}

@media (max-width: 1180px) {
	.about .about-img {
		 display: none;
	}
}

.about img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px 0 0 10px;
}

.about .about-info {
	width: 60%;
	/*background-color: #D9042B;*/
	background-color: #fff;
	border-radius: 0 10px 10px 0;
	border-top: 2px solid#c9c9c9;
	border-bottom: 2px solid#c9c9c9;
	border-right: 2px solid#c9c9c9;
}

@media (max-width: 1400px) {
	.about .about-info {
		 width: 50%;
	}
}

@media (max-width: 1180px) {
	.about .about-info {
		 width: 100%;
		border-radius: 10px;
		border-left: 2px solid#c9c9c9;
	}
}

.about .about-info__wrp {
	padding: 60px 85px 60px 100px;
	line-height: 140%;
	text-align: left;
}

@media (max-width: 1600px) {
	.about .about-info__wrp {
		 padding: 30px 50px 40px 50px;
	}
}

@media (max-width: 1400px) {
	.about .about-info__wrp {
		 padding: 30px;
	}
}

@media (max-width: 990px) {
	.about .about-info__wrp {
		 padding: 25px;
	}
}

.about .about-info__title {
	font-weight: 700;
	line-height: 140%;
	font-size: 26px;
	color: #333;
	text-transform: uppercase;
	margin-bottom: 35px;
}

@media (max-width: 990px) {
	.about .about-info__title {
		 font-size: 25px;
		 margin-bottom: 25px;
	}
}

@media (max-width: 600px) {
	.about .about-info__title {
		 font-size: 25px;
		 margin-bottom: 15px;
	}
}

.about .about-info__txt {
	max-width: 695px;
	margin-bottom: 35px;
}

@media (max-width: 1180px) {
	.about .about-info__txt {
		 max-width: 100%;
		 margin-bottom: 35px;
	}
}

@media (max-width: 990px) {
	.about .about-info__txt {
		 margin-bottom: 25px;
	}
}

.about .about-info__txt p {
	font-size: 16px;
	line-height: 140%;
	color: #333;
	font-weight: 400;
	margin-bottom: 20px;
}

@media (max-width: 990px) {
	.about .about-info__txt p {
		 font-size: 16px;
		 margin-bottom: 15px;
	}
}

@media (max-width: 600px) {
	.about .about-info__txt p {
		 font-size: 14px;
	}
}

.about .about-info__txt p:last-child {
	margin-bottom: 0px;
}

.about .about-info__links {
	display: flex;
}

@media (max-width: 1400px) {
	.about .about-info__links {
		 flex-direction: column;
	}
}

.about .about-info__link {
	padding: 13px 50px;
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	transition: 0.3s linear;
	text-decoration: none;
}

@media (max-width: 1400px) {
	.about .about-info__link {
		 max-width: 250px;
		 text-align: center;
	}
}

.about .about-info__link:first-child {
	background-color: #D9042B;
	color: #fff;
	border: 1px solid transparent;
	margin-right: 20px;
}

@media (max-width: 1400px) {
	.about .about-info__link:first-child {
		 margin-right: 0;
		 margin-bottom: 15px;
	}
}

.about .about-info__link:hover:first-child {
	transition: 0.3s linear;
	background-color: transparent;
	color: #333;
	border: 1px solid #333;
}

.about .about-info__link:last-child {
	transition: 0.3s linear;
	background-color: transparent;
	color: #333;
	border: 1px solid #333;
}

.about .about-info__link:hover:last-child {
	transition: 0.3s linear;
	background-color: #D9042B;
	color: #fff;
	border: 1px solid transparent;
}

/*Slides main*/


.slides-main .wrapper {
	padding-top: 30px;
}
.slides-main .brands-wrp, .slides-main .clients-wrp {
	padding: 0 180px;

}

@media (max-width: 1600px) {
	.slides-main .brands-wrp, .slides-main .clients-wrp {
		 padding: 0 60px;
	}
}

@media (max-width: 990px) {
	.slides-main .brands-wrp, .slides-main .clients-wrp {
		 padding: 0 25px;
	}
}

.slides-main .brands-body, .slides-main .clients-body, .slides-main .certificates-body {
	display: flex;
}

.slides-main .brands-item, .slides-main .clients-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 30px;
	cursor: pointer;
	transition: 0.2s linear;
}

.slides-main .brands-item__wrp, .slides-main .clients-item__wrp {
	position: relative;
	width: 100%;
	padding-bottom: 74%;
}

.slides-main .brands-item__wrp img, .slides-main .clients-item__wrp img {
	position: absolute;
	max-width: 160px;
	max-height: 120px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media (max-width: 800px) {
	.slides-main .brands-item__wrp img, .slides-main .clients-item__wrp img {
		max-width: 120px;
		max-height: 90px;
	}
}

.slides-main .certificates-body .clients-item {
	padding: 20px;
}

.slides-main .certificates-body .clients-item__wrp img {
	max-width: 240px;
	max-height: 180px;
}

.slides-main .brands-item:hover, .slides-main .clients-item:hover {
	transition: 0.2s linear;
	box-shadow: 0 0 10px 5px rgb(0 0 0 / 5%);
}

.slides-main .brands-body, .slides-main .clients-body, .slides-main .certificates-body {
	position: relative;
	min-width: 0;
}

.slides-main .slick-track {
	display: flex;
}

.slides-main .brands-item {
	min-width: 0;
	margin-right: -1px;
}

.slides-main .slick-arrow {
	position: absolute;
	z-index: 10;
	top: 50%;
	transform: translateY(-50%)!important;
}

.slides-main .slick-list {
	margin: 0 -15px;
	padding: 15px;
}

.slides-main .slick-next, .slides-main .slick-prev {
	content: '';
	display: flex!important;
	align-items: center;
	justify-content: center;
	background-color: #D9042B;
	width: 45px;
	height: 45px;
	border-radius: 50px;
	margin: 0;
	border-bottom: 0;
	border-right: 0;
	border-left: 0;
	transform: none;
}

.slides-main .slick-prev {
	left: -22.5px;
}

.slides-main .slick-next {
	right: -22.5px;
}

.slides-main .slick-prev:before {
	content: '';
	display: block;
	width: 10px;
	height: 16px;
	background: url('/local/templates/prostroy_default/img/arrow-main-left.png');
}

.slides-main .slick-next:before {
	content: '';
	display: block;
	width: 10px;
	height: 16px;
	background: url('/local/templates/prostroy_default/img/arrow-main-right.png');
}

/*header*/

.header-top .authinhead {
	padding: 8px 20px 10px;
	border: 1px solid rgba(217, 4, 43, 0.2);
	border-radius: 30px;
	text-align: center;
}

.header-top .tpanel-bottom__lc {
	display: none;
}

@media (max-width: 600px) {
	.header-top .authinhead {
		 display: none!important;
	}
	.header-top .tpanel-bottom__lc {
		 display: flex;
		 align-items: center;
		 justify-content: center;
		 padding: 10px;
		 font-size: 14px;
		 border: 1px solid rgba(217, 4, 43, 0.2);
		 border-radius: 30px;
		 text-align: center;
	}
	.tpanel-bottom__lc-arr {
		 border-right: 1px solid rgba(217, 4, 43, 0.2);
	}
	.header-top .tpanel-bottom__lc a {
		 padding: 0 10px;
		 font-weight: 600;
		 line-height: 175%;
		 color: rgba(51, 51, 51, 1);
	}
	.authinheadinner .authinhead-icon {
		 display: none;
	}
	.header .tpanel-bottom__lc-links {
		 display: flex;
		 justify-content: space-between;
	}
}

@media (max-width: 450px) {
	.header-top .tpanel-bottom__lc {
		 padding: 6px;
		 font-size: 12px;
	}
}

.authinhead .authinheadinner--blue-arr {
	border-right: 1px solid rgba(217, 4, 43, 0.2);
	padding-right: 5px;
}

.authinhead a {
	font-weight: 600;
	font-size: 14px;
	line-height: 175%;
	color: rgba(51, 51, 51, 1);
	text-decoration: none;
}

.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1920px;
	padding: 0 180px;
}

@media (max-width: 1600px) {
	.header-top {
		 padding: 0 60px;
	}
}

@media (max-width: 1400px) {
	.header-top {
		 flex-wrap: wrap;
	}
}

@media (max-width: 990px) {
	.header-top {
		 padding: 0 15px;
	}
}

@media (max-width: 666px) {
	.header-top .tpanel.b-tpanel {
		 height: auto;
	}
}

.header-top .header-logo {
	min-width: 205px;
	margin-right: 20px;
}

.header-top .header-logo img {
	height: 70px;
	transform: translateY(10px);
}

@media (max-width: 1600px) {
	.header-top .header-logo {
		 min-width: 1px;
	}
	.header-top .header-logo img {
		 height: 75px;
		 transform: translateY(10px);
	}
}

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

.burger {
	display: none;
}

@media (max-width: 1400px) {
	.header-top .header-logo {
		 margin: 0 auto;
	}
}

@media (max-width: 600px) {
	.header-top .header-logo {
		 display: none;
	}
	.header-logo-mob {
		 margin: 0 auto;
		 display: block;
		 width: 150px;
	}
	.burger {
		 position: relative;
		 z-index: 100000;
		 cursor: pointer;
		 display: block;
	}
}

.header-top .tpanel {
	width: 100%;
	max-width: 1400px;
	height: auto;
	background-color: transparent;
}

.tpanel .tpanel-top {
	display: flex;
	padding: 16px 0;
	border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

@media (max-width: 1180px) {
	.tpanel .tpanel-top {
		 flex-wrap: wrap;
	}
}

.tpanel-top .tpanel-top__phone {
	display: flex;
	align-items: center;
	margin-right: 30px;
}

@media (max-width: 1600px) {
	.tpanel-top .tpanel-top__phone {
		 margin-right: 15px;
	}
}

@media (max-width: 1180px) {
	.tpanel-top .tpanel-top__phone {
		 order: 1;
		 margin-right: 0px;
		 width: 50%;
	}
}

@media (max-width: 600px) {
	.tpanel-top .tpanel-top__phone {
		 order: 2;
		 margin-right: 0px;
		 width: 50%;
	}
}

@media (max-width: 500px) {
	.tpanel-top .tpanel-top__phone {
		 width: 100%;
	}
}

@media (max-width: 1180px) {
	.b-tpanel__section:last-child {
		 order: 2;
		 width: 50%;
		 text-align: right;
	}
}

@media (max-width: 666px) {
	.b-tpanel__section:last-child {
		 border-left: none!important;
		 padding-left: 0!important;
	}
	.authinhead {
		 padding: 10px 28px 12px!important;
	}
}

@media (max-width: 600px) {
	.b-tpanel__section:last-child {
		 order: 1;
		 width: 100%;
		 display: flex!important;
		 align-items: center;
		 justify-content: space-between;
		 margin-bottom: 20px;
		 position: relative;
	}
}

.tpanel-top .tpanel-top__phone-icon {
	border: 1px solid rgba(217, 4, 43, 0.2);
	border-radius: 50px;
	margin-right: 14px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tpanel-top .tpanel-top__phone-icon svg {
	width: 20px;
	height: 20px;
}

@media (max-width: 600px) {
	.tpanel-top .tpanel-top__phone-icon {
		 display: flex;
		 align-items: center;
		 justify-content: center;
		 width: 30px;
		 height: 30px;
	}
	.tpanel-top .tpanel-top__phone-icon svg {
		 padding: 0;
		 width: 20px;
		 height: 20px;
	}
}

.tpanel-top .tpanel-top__phone-numbers select {
	border: none;
}

.tpanel-top .tpanel-top__feedback {
	display: flex;
	align-items: center;
	margin-right: 40px;
}

@media (max-width: 1600px) {
	.tpanel-top .tpanel-top__feedback {
		 margin-right: 15px;
	}
}

@media (max-width: 1180px) {
	.tpanel-top .tpanel-top__feedback {
		 width: calc(50% - 10px);
		 order: 3;
		 margin-right: 0;
	}
}

.tpanel-top .tpanel-top__feedback-item {
	margin-right: 17px;
}

.tpanel-top .tpanel-top__feedback-item a {
	color: #d9042b;
	font-size: 13px;
	font-weight: 600;
}

.tpanel-top .tpanel-top__feedback-item:last-child {
	margin-right: 0;
}

.tpanel .tpanel-top__info {
	display: flex;
}

@media (max-width: 1180px) {
	.tpanel .tpanel-top__info {
		 order: 4;
		 justify-content: flex-end;
		 width: 50%;
	}
}

@media (max-width: 600px) {
	.tpanel-top .tpanel-top__feedback {
		width: 100%;
	}
	.tpanel .tpanel-top__info {
		 justify-content: space-between;
		 flex-wrap: wrap;
		 width: 100%;
		 margin-top: 10px;
	}
}

.tpanel .tpanel-top__info {
	display: flex;
	align-items: center;
}

.tpanel .tpanel-top__info-item {
	display: flex;
	align-items: center;
	margin-right: 40px;
}

@media (max-width: 1600px) {
	.tpanel .tpanel-top__info-item {
		 display: flex;
		 align-items: center;
		 margin-right: 20px;
	}
}

.tpanel .tpanel-top__info-item:last-child {
	margin-right: 0;
}

@media (max-width: 600px) {
	.tpanel .tpanel-top__info-item:last-child {
		 margin-bottom: 10px;
	}
	.tpanel .tpanel-top__info-item {
		 margin-right: 5px;
		 margin-bottom: 10px;
	}
}

.tpanel .tpanel-top__info-item__icon {
	border: 1px solid rgba(217, 4, 43, 0.2);
	border-radius: 50px;
	margin-right: 14px;
	min-width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tpanel .tpanel-top__info-item__icon svg {
	width: 20px;
	height: 20px;
}

.tpanel .tpanel-bottom {
	padding: 9px 0;
	display: flex;
	justify-content: space-between;
}

@media (max-width: 600px) {
	.tpanel .tpanel-bottom {
		 padding: 9px 0;
		 display: flex;
		 align-items: center;
	}
	.tpanel-bottom .tpanel-bottom__list {
		 display: none!important;
	}
	.tpanel-bottom .tpanel-bottom__list.open {
		 position: fixed;
		 padding: 100px 100px!important;
		 top: 0;
		 background-color: #fff;
		 color: #fff!important;
		 display: block!important;
		 height: 100%;
		 width: 100%;
		left: 0;
		max-width: 600px;
		text-align: initial;
		 z-index: 9999;
		 box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.4);
	}
	.tpanel-bottom .tpanel-bottom__list-item a {
		 color: #d9042b;
	}
	.tpanel .tpanel-top__info-item__icon {
		 display: flex;
		 align-items: center;
		 justify-content: center;
		 min-width: 30px;
		 height: 30px;
	}
	.tpanel .tpanel-top__info-item__icon svg {
		 padding: 0px;
		 width: 20px;
		 height: 20px;
	}
}

.tpanel-bottom .tpanel-bottom__list {
	display: flex;
	align-items: center;
}

@media (max-width: 1600px) {
	.tpanel-bottom .tpanel-bottom__list {
		 flex-wrap: wrap;
	}
}

@media (max-width: 600px) {
	.tpanel-bottom .tpanel-bottom__list {
		 order: 2;
	}
}

.tpanel-bottom .tpanel-bottom__list-item {
	font-size: 15px;
	font-weight: 400;
	color: #777777;
	margin-right: 15px;
}

@media (max-width: 600px) {
	.tpanel-bottom .tpanel-bottom__list-item {
		 margin-right: 0;
	}
}

.tpanel-bottom .tpanel-bottom__list-item:last-child {
	margin-right: 0;
}

.tpanel-bottom .tpanel-bottom__list-item a {
	color: inherit;
}

.tpanel-bottom .tpanel-bottom__links {
	display: flex;
	align-items: center;
}

@media (max-width: 600px) {
	.tpanel-bottom .tpanel-bottom__links {
		 margin-bottom: 0;
	}
}

.tpanel .tpanel-bottom__links-item {
	border: 1px solid rgba(217, 4, 43, 0.2);
	border-radius: 50px;
	margin-right: 20px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tpanel .tpanel-bottom__links-item:last-child {
	margin-right: 0;
}

.tpanel .tpanel-bottom__links-item svg {
	width: 20px;
	height: 20px;
}

@media (max-width: 600px) {
	.tpanel .tpanel-bottom__links-item {
		 display: flex;
		 align-items: center;
		 justify-content: center;
		 width: 30px;
		 height: 30px;
		 margin-right: 10px;
	}
	.tpanel .tpanel-bottom__links-item svg {
		 padding: 0px;
		 width: 20px;
		 height: 20px;
	}
}

.authinheadinner {
	display: flex;
}

.authinheadinner .authinhead-icon {
	width: 20px;
	height: 25px;
}

.authinheadinner .authinheadinner-links {
	display: flex;
	align-items: center;
}

.authinheadinner .authinheadinner-links a {
	padding: 0 10px;
}

.authinheadinner .authinheadinner-links a:last-child {
	padding-right: 0;
}

.header .g-wrap {
	padding: 0 180px;
	max-width: 1920px;
	min-width: 1px;
}

@media (max-width: 1600px) {
	.header .g-wrap {
		 padding: 0 60px;
	}
}

@media (max-width: 990px) {
	.header .g-wrap {
		 padding: 0 15px;
	}
}

.header .b-header__row {
	border-radius: 5px;
	display: flex;
	align-items: center;
	padding: 8px 4px 8px 4px;
	background-color: #d9042b;
}

.header .searchinhead {
	border: none;
}

.header .searchinhead .aroundtext .text {
	font-size: 16px;
	font-weight: 400;
	padding: 0;
	background-color: #fff;
}

@media (max-width: 666px) {
	.header .searchinhead .aroundtext .text {
		 font-size: 13px;
	}
}

.header .searchinhead .aroundtext {
	display: flex;
	align-items: center;
	margin: 0;
	padding-right: 0;
	padding: 8px 30px;
}

@media (max-width: 666px) {
	.header .searchinhead .aroundtext {
		 padding: 8px 12px;
	}
}

.header .searchinhead form {
	border-radius: 4px;
	background: none;
	background-color: #fff;
}

.header .searchinhead .zoom {
	background: none;
	background-color: #fff;
	padding: 0;
}

.header .catalogmenucolumn {
	float: none;
	min-width: 390px;
}

@media (max-width: 666px) {
	.header .catalogmenucolumn {
		 float: none;
		 width: 100%;
		 min-width: 1px;
	}
}

.header .catalogmenu li.parent {
	background-color: #d9042b;
	max-width: 390px;
}

@media (max-width: 666px) {
	.header .catalogmenu li.parent {
		 max-width: 100%;
	}
}

.catalogmenu li ul {
	max-width: 300px;
}

.catalogmenu li ul ul {
	margin: -1px 0 0 99%;
}

.header .catalogmenu li ul.first {
	max-width: 390px;
}

.header .catalogmenu a.parent {
	font-weight: 600;
	padding: 16px 19px 16px;
	color: #fff;
	font-size: 18px;
	background: none;
	display: flex;
	align-items: center;
}

.header .catalogmenu li ul.first {
	top: 50px;
	z-index: 999!important;
}

.catalogmenu a.parent .icon.menu {
	background-image: none;
}

.header .catalogmenu a.parent .icon.menu {
	float: none;
	width: 18px;
	height: 15px;
	margin: 0;
	margin-right: 15px;
}

.header .catalogmenu li.first {
	height: auto!important;
	min-height: 40px;
	display: flex;
	border-right: 1px solid #F3F3F3;
	border-bottom: 1px solid #F3F3F3;
	border-left: 1px solid #F3F3F3;
}

.header .catalogmenu.hover li.more {
	display: flex;
}

.header .catalogmenu li.more {
	display: none;
}

.header .catalogmenu li a.first, .catalogmenu li.sub a {
	display: flex;
	align-items: center;
	width: 100%;
	color: #214496;
	font-size: 14px;
	padding: 3px 28px 3px 12px;
}

.header .catalogmenu li a.first:hover, .catalogmenu li.sub a:hover {
	color: #d9042b!important;
}

.header .catalogmenu li.first:hover {
	border-left: 3px solid #d9042b;
	color: #d9042b;
}

.catalogmenu li.sub:hover {
	border-left: 3px solid #d9042b;
}

.catalogmenu li.sub:hover>a {
	color: #d9042b!important;
}

.header .catalogmenusmall li.parent {
	background-color: #fff;
}

.catalogmenu2 a, .catalogmenusmall a {
	color: #000;
}

body.adaptive .catalogmenu li ul.first.show {
	z-index: 105!important;
	-webkit-box-shadow: 0px 0px 53px 20px rgba(34, 60, 80, 0.05);
	-moz-box-shadow: 0px 0px 53px 20px rgba(34, 60, 80, 0.05);
	box-shadow: 0px 0px 53px 20px rgba(34, 60, 80, 0.05);
}

.header .catalogmenu li ul a {
	color: #214496;
	display: flex;
	/*justify-content: space-between;*/
	align-items: center;
}

.header .catalogmenu li ul a:hover {
	color: #d9042b!important;
}

.header .catalogmenu li.morelink a {
	color: #214496;
	text-transform: uppercase;
	font-size: 16px;
	width: 100%;
}

.header .catalogmenu li.morelink a:hover {
	color: #d9042b!important;
}

.header .catalogmenu li a.first img {
	max-width: 40px;
	min-width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	margin-right: 11px;
}

.header .catalogmenu li a.first svg,
.header .catalogmenu li a.sub svg {
	margin-left: auto;
}

.header .catalogmenu li ul ul {
	margin-top: auto!important;
}

/* Второй уровень меню */

.catalogmenu li.sub {
	flex-wrap: wrap;
	min-height: 40px;
	display: flex;
	align-items: center;
}

.header .catalogmenu li.sub:hover, .catalogmenu li.first:hover>a, .header .catalogmenu li.sub:hover>a, .header .catalogmenu a.first:hover, .header .catalogmenu a.sub:hover, .header .pmenu a:hover, .header .navi div:hover, .header #jssor_slider1 .navi .av:hover, .header .filtren .showchild:hover, .header .filtren .lvl1.color .lvl2 label:hover, .header .filtren .body li.lvl1 ul.property li.lvl2 label.pic:hover, .header .catalogsorter .dropdownin a:hover, .header .aroundowlslider1 .owl-dots .owl-dot:hover, .header .comparelist a:hover {
	background-color: transparent!important;
}

.header .catalogmenu a.first:hover, .header .catalogmenu a.sub:hover {
	color: #d9042b!important;
}

.header .catalogmenu li ul a {
	width: 100%;
}

/*main-slider*/

.container .main-slider {
	min-height: 588px;
	padding-top: 20px;
	padding-left: 593px;
	max-width: 1256px;
	padding-right: 172px;
	margin-bottom: 30px;
}

@media (max-width: 1600px) {
	.container .main-slider {
		 padding-left: 450px;
		 padding-right: 52px;
	}
}

@media (max-width: 1010px) {
	.container .main-slider {
		 padding-left: 60px;
		 padding-right: 52px;
	}
}

@media (max-width: 990px) {
	.container .main-slider {
		 padding: 0 7px 0 15px;
	}
}

.main-slider .main-slider__body {
	margin-bottom: 20px;
}

@media (max-width: 1400px) {
	.main-slider .main-slider__body {
		 margin-bottom: 20px;
	}
}

.main-slider .main-slider__body-item {
	position: relative;
	width: 100%;
	height: 377px;
}

@media (max-width: 1400px) {
	.main-slider .main-slider__body-item {
		 height: 350px;
	}
}

@media (max-width: 600px) {
	.main-slider .main-slider__body-item {
		 height: 250px;
	}
}

@media (max-width: 500px) {
	.main-slider .main-slider__body-item {
		height: 190px;
	}
}

.main-slider .main-slider__body-item img {
	position: absolute;
	/*object-fit: cover;*/
	border-radius: 10px;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.main-slider .main-slider__body-wrp {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 135px;
	transform: translateY(-50%);
	text-align: left;
	max-width: 390px;
	color: black;
	background: rgba(255, 255, 255, 0.85);
	padding: 10px;
}

@media (max-width: 600px) {
	.main-slider .main-slider__body-wrp {
		 top: 50%;
		 left: 50%;
		 transform: translate(-50%, -50%) scale(0.6);
		 width: 100%;
		 max-width: 100%;
	}
}

.main-slider .main-slider__body-subtitle {
	font-size: 16px;
	opacity: 0.7;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 15px;
	color: #214496;
}

@media (max-width: 990px) {
	.main-slider .main-slider__body-subtitle {
		 font-size: 14px;
		 margin-bottom: 10px;
	}
}

.main-slider .main-slider__body-title {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 24px;
	line-height: 120%;
	color: #c4010c;
}

@media (max-width: 990px) {
	.main-slider .main-slider__body-title {
		 font-size: 25px;
		 margin-bottom: 15px;
	}
}

@media (max-width: 600px) {
	.main-slider .main-slider__body-title {
		 font-size: 20px;
	}
}

.main-slider .main-slider__body-txt {
	font-size: 16px;
}

@media (max-width: 990px) {
	.main-slider .main-slider__body-txt {
		 font-size: 14px;
	}
}

.main-slider .main-slider__info {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.main-slider .main-slider__info-item {
	position: relative;
	width: calc(33.3% - 14.5px);
	height: 190px;
}

@media (max-width: 1400px) {
	.main-slider .main-slider__info-item {
		 width: calc(50% - 10px);
		 height: 209px;
	}
	.main-slider .main-slider__info-item:not(:last-child) {
		 margin-bottom: 20px;
	}
}

@media (max-width: 450px) {
	.main-slider .main-slider__info-item {
		 width: 100%;
	}
}

.main-slider .main-slider__info-item img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 10px;
}

.main-slider .main-slider__info-wrp {
	padding: 76px 54px 25px 23px;
	position: relative;
	z-index: 2;
	text-align: left;
	font-weight: 600;
	color: #fff;
}

@media (max-width: 1400px) {
	.main-slider .main-slider__info-wrp {
		 padding: 40px;
	}
}

@media (max-width: 990px) {
	.main-slider .main-slider__info-wrp {
		 padding: 25px;
	}
}

@media (max-width: 600px) {
	.main-slider .main-slider__info-wrp {
		 padding: 15px;
	}
}

@media (max-width: 450px) {
	.main-slider .main-slider__info-wrp {
		 position: absolute;
		 bottom: 0;
	}
}

.main-slider__info-subtitle {
	font-size: 12px;
	margin-bottom: 8px;
}

.main-slider__info-title {
	margin-bottom: 8px;
	font-size: 18px;
}

.main-slider__info-txt {
	font-size: 14px;
	line-height: 140%;
}

.main-slider .slick-next, .main-slider .slick-prev {
	z-index: 1;
	content: '';
	display: flex!important;
	align-items: center;
	justify-content: center;
	background-color: #D9042B;
	width: 45px;
	height: 45px;
	border-radius: 50px;
	margin: 0;
	border-bottom: 0;
	border-right: 0;
	border-left: 0;
	transform: none;
}

@media (max-width: 600px) {
	.main-slider .slick-next, .main-slider .slick-prev {
		 width: 30px;
		 height: 30px;
	}
}

.main-slider .slick-next {
	right: 30px;
}

.main-slider .slick-prev {
	left: 30px;
}

@media (max-width: 600px) {
	.main-slider .slick-next {
		 right: 10px;
	}
	.main-slider .slick-prev {
		 left: 10px;
	}
}

.main-slider .slick-prev:before {
	content: '';
	display: block;
	width: 10px;
	height: 16px;
	background: url('/local/templates/prostroy_default/img/arrow-main-left.png');
}

.main-slider .slick-next:before {
	content: '';
	display: block;
	width: 10px;
	height: 16px;
	background: url('/local/templates/prostroy_default/img/arrow-main-right.png');
}

.main-slider .slick-dots {
	display: flex;
	justify-content: center;
	bottom: 25px;
}

.main-slider .slick-dots li {
	margin: 0;
	margin-right: 13px;
}

.main-slider .slick-dots li:last-child {
	margin-right: 0;
}

.main-slider .slick-dots button {
	position: relative;
	border: 1px solid;
	border-radius: 50px;
	border-color: transparent;
}

.main-slider .slick-dots .slick-active button {
	position: relative;
	border-radius: 50px;
	border-color: rgba(217, 4, 43, 1);
}

.main-slider .slick-dots li button:before {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	content: '';
	border-radius: 50px;
	opacity: 1;
	background-color: #fff;
}

.main-slider .slick-dots .slick-active button:before {
	background-color: rgba(217, 4, 43, 1);
}

.footer .container {
	max-width: 1920px;
	padding: 0 140px;
	width: auto!important;
}

@media (max-width: 1600px) {
	.footer .container {
		 padding: 0 60px;
	}
}
@media (max-width: 725px){
	.vertical-slider__el.swiper-slide img {
		max-height: 100%;
		max-width: 100%;
	}
}

@media (max-width: 990px) {
	.footer .container {
		 padding: 0 15px;
	}
}

.footer .centeringin {
	margin: 0;
}

.footer .line1 {
	padding: 30px 0;
	text-align: left;
}

.footer .line1 .contacts {
	margin: 0;
}

.footer .title {
	font-weight: 600;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.footer .line2 {
	text-align: left;
	padding: 26px 0 40px;
}

.footer .footer-bottom {
	display: flex;
	justify-content: space-between;
}

.footer .footer-bottom__txt {
	width: calc(57.3% - 25px);
	font-size: 12px;
	color: #333;
}

.footer .footer-bottom__txt p:last-child {
	font-weight: 700;
	font-size: 12px;
	margin-top: 8px;
}

.footer .footer-bottom__pay {
	width: calc(42.7% - 25px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer .footer-bottom__pay-item img {
	width: 100%;
	max-width: 100px;
}

@media (max-width: 600px) {
	.footer .footer-bottom__pay-item img {
		max-width: 75px;
	}
}

.footer .sovservice img {
	max-width: 25px;
}

#ajaxprods_main .buy-bl__part2 {
	min-height: 73px;
}

.hidden {
	display: none;
}
.main-section .mainsections .subsections a.js-show-more,
.main-section .mainsections .subsections a.js-hide-more {
	font-size: 14px;
	color: #0077cb;
}

/* certificates */
.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.mfp-fade.mfp-wrap .mfp-content .lc-form {
	padding: 0;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

.mfp-gallery .mfp-close,
.mfp-gallery .mfp-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	padding: 0;
	border-radius: 50%;
	background-color: #D9042B;
	opacity: 1;
}

.mfp-gallery .mfp-close {
	right: 15px;
	top: 15px;
	line-height: 90%;
}

.mfp-gallery .mfp-arrow {
	margin: 0 25px;
	background-image: 10px 16px;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateY(-50%);
}

.mfp-gallery .mfp-arrow::before,
.mfp-gallery .mfp-arrow::after {
	content: none;
}

.mfp-gallery .mfp-arrow-right {
	background-image: url(/./local/templates/prostroy_default/img/arrow-main-right.png);
}

.mfp-gallery .mfp-arrow-left {
	background-image: url(/./local/templates/prostroy_default/img/arrow-main-left.png);
}

.mfp-gallery .mfp-bottom-bar {
	display: none;
}

.mfp-gallery .mfp-content {
	background: white;
	border-radius: 5px;
	padding: 20vw;
}

.mfp-gallery figure {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 80%;
}

.mfp-gallery .mfp-figure:after {
	content: none;
}

.mfp-gallery img {
	width: 100%;
	height: 100%;
	padding: 0;
	object-fit: contain;
}

@media screen and (max-width: 1024px) {
	.mfp-gallery .mfp-close {
		width: 30px;
		height: 30px;
		font-size: 24px;
		right: 0;
		top: 0;
		transform: translate(100%, -100%);
	}
}

@media screen and (max-width: 768px) {
	.mfp-gallery .mfp-content {
		padding: 40vw;
	}

	.mfp-gallery .mfp-arrow {
		width: 30px;
		height: 30px;
	}
}
/* certificates */



/*25.10.2021*/

/*.header .catalogmenucolumn .parent .lvl1{*/
/*	margin-top: 10px;*/
/*}*/
/*.header .catalogmenu a.parent{*/
/*	padding-bottom: 5px;*/
/*}*/
.header .catalogmenu li ul.first{
	border-top: 12px solid #d9042b;
	top: 47px;
}

/*26.10.2021 - наличие */
.quantity.buy-quantity.delivery{
	/* width: 100%; */
	text-align: left;
	display: block;
}
.parameters-block__text.parameters-block__text--black.change{
	font-weight: 900;
}

