

/* Start:/local/templates/main/components/bitrix/catalog/objectsCatalog/style.css?17731310156476*/
.grid{}
.grid .bx_content_section{
	margin-bottom: 15px;
}
.grid .bx_sidebar{
	margin-bottom: 15px;
}

/* grid2x1 */
.grid2x1{}
.grid2x1 .bx_content_section{
	float: left;
	width: 66%;
	margin-bottom: 15px;
}
.grid2x1 .bx_sidebar{
	float: right;
	width: 33%;
	margin-bottom: 15px;
	padding-left: 5%;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
@media (max-width:960px){
	.grid2x1 .bx_sidebar{
		padding-left: 4%;
	}
}
@media (max-width:640px) {
	.grid2x1 .bx_content_section,
	.grid2x1 .bx_sidebar{
		width: 100%;
		float: none;
	}
	.grid2x1 .bx_sidebar{
		padding-left: 3%;
	}
}
@media (max-width:479px){
	.grid2x1 .bx_sidebar{
		padding-left: 1%;
	}

}

.catalog-block-header{
	font-size:14px;
	font-weight: bold;
	text-align: left;
	margin:5px 0;
	padding:5px 15px;
	border-bottom: 2px solid #d9dee6;
	color: #000;
}

body.bx-theme-blue .catalog-block-header{border-color:#006cc0;}
body.bx-theme-green .catalog-block-header{border-color:#63aa28;}
body.bx-theme-red .catalog-block-header{border-color:#da3737;}
body.bx-theme-yellow .catalog-block-header{border-color:#f4b236;}



.interior {
	background-color: #fff;
	padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
	.interior {
		padding-bottom: 60px;
	}
}
.interior__header {
	margin-bottom: 36px;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.interior__header {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 20px;
	}
}
.interior__header-info {
	max-width: 435px;
}
.interior__header-info .section-title {
	margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
	.interior__header-info .section-title {
		margin-bottom: 20px;
		font-weight: 600;
	}
}
.interior__header-info p {
	color: #727272;
	font-size: 15px;
	font-weight: 300;
	line-height: 140%;
	letter-spacing: -0.225px;
}
@media screen and (max-width: 768px) {
	.interior__header-info p {
		font-size: 12px;
		font-weight: 400;
		line-height: 150%;
		letter-spacing: -0.18px;
	}
}
.interior__header-controls {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 36px;
}
@media screen and (max-width: 768px) {
	.interior__header-controls {
		justify-content: flex-start;
		align-items: center;
	}
}
.interior__tabs {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
@media screen and (max-width: 768px) {
	.interior__tabs {
		overflow-x: scroll;
		justify-content: flex-start;
	}
}
.interior__tab {
	border-radius: 5px;
	background: #f6f6f6;
	cursor: pointer;
	padding-left: 25px;
	padding-right: 25px;
}
.interior__tab.btn-global {
	background: #f6f6f6;
}
.interior__tab.active {
	background-color: #fed400;
}
.interior__slider-navs {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
@media screen and (max-width: 768px) {
	.interior__slider-navs {
		display: none;
	}
}
.interior__pane {
	display: none;
	position: relative;
}
.interior__pane.active {
	display: block;
}
@media screen and (max-width: 768px) {
	.interior__pane.active {
		padding-bottom: 30px;
	}
}
.interior__slide {
	border-radius: 12px;
	overflow: hidden;
}

.interior__slide.swiper-slide {
	height: 392px;
}
@media screen and (max-width: 768px) {
	.interior__slide.swiper-slide {
		height: 250px;
	}
}
.interior__slide img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.interior__slider-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
@media screen and (min-width:768px) {
	.interior__slider-pagination {
	display: none;
}
}
.interior__slider-pagination.swiper-pagination {
	z-index: 1;
}
.interior__slider-bullet {
	width: 6px;
	height: 6px;
	background: #dfdfdf;
	border-radius: 50%;
	transition: 0.2s ease-in-out;
}
.interior__slider-bullet.active {
	background: #fed400;
	transform: scale(1.2);
}

.interior-popup {
	display: flex;
	position: fixed;
	inset: 0;
	background: #fff;
	z-index: 1000;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	transition: all 0.5s ease;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}
.interior-popup.active {
	opacity: 1;
	pointer-events: all;
	visibility: visible;
}
.interior-popup__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 24px 36px;
	width: 100%;
	flex-shrink: 0;
}
@media screen and (max-width: 768px) {
	.interior-popup__header {
		padding: 16px;
	}
}
.interior-popup__count {
	color: rgba(0, 0, 0, 0.5);
	font-size: 16px;
	font-weight: 400;
	line-height: 110%;
}
.interior-popup__count span {
	color: rgb(0, 0, 0);
}
.interior-popup__close {
	width: 15px;
	height: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 0.3s;
}
.interior-popup__close:hover {
	opacity: 1;
}
.interior-popup__close svg {
	display: block;
	width: 100%;
	height: 100%;
}
.interior-popup__content {
	padding: 18px 0 32px;
	flex-grow: 1;
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	max-height: calc(100svh - 68px);
}
@media screen and (max-width: 768px) {
	.interior-popup__content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		max-height: calc(100svh - 52px);
	}
}
.interior-popup__slides {
	max-width: calc(100% - 210px);
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	border-radius: 12px;
}
@media screen and (max-width: 768px) {
	.interior-popup__slides {
		max-width: 100%;
		border-radius: 0;
		height: auto;
	}
}
.interior-popup__slides .swiper-slide {
	height: initial;
}
.interior-popup__slides .swiper-slide img {
	display: block;
	width: auto;
	height: 100%;
	object-fit: contain;
	border-radius: 12px;
	margin: 0 auto;

}
@media screen and (max-width: 768px) {
	.interior-popup__slides .swiper-slide {
	}
}
.interior-popup__arrows {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-left: 36px;
	padding-right: 36px;
	z-index: 2;
}
@media screen and (max-width: 768px) {
	.interior-popup__arrows {
		padding-left: 16px;
		padding-right: 16px;
	}
}
@media screen and (max-width: 768px) {
	.interior-popup__arrow {
		background-color: hsla(0, 0%, 100%, 0.3);
		border: 0.67px solid hsla(0, 0%, 100%, 0.1);
	}
	.interior-popup__arrow:hover {
		background-color: #fff;
	}
}
/* End */


/* Start:/local/templates/main/components/bitrix/catalog.section/.default/style.css?173945217856*/
.disabled {
	pointer-events: none;
	opacity: 0.5;
}

/* End */
/* /local/templates/main/components/bitrix/catalog/objectsCatalog/style.css?17731310156476 */
/* /local/templates/main/components/bitrix/catalog.section/.default/style.css?173945217856 */
