

/* Start:/local/templates/.default/components/bitrix/catalog.section/.default/style.css?1760360985691*/
.shop-wrapper {
	/*padding: 4rem 0;*/
	padding: 0 0 4rem;
}

.shop-wrapper.with-filter {
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-gap: 2rem;
}

.shop-wrapper h1 {
	margin-top: 0;
}

.shop-wrapper .shop-content .sections {
	margin-bottom: 2rem;
}


.shop-wrapper .shop-content .catalog-section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

@media(max-width: 991px) {
	.shop-wrapper .shop-content .catalog-section {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width: 767px) {
	.shop-wrapper.with-filter {
		grid-template-columns: 1fr;
	}
}

@media(max-width: 575px) {
	.shop-wrapper .shop-content .catalog-section {
		grid-template-columns: 1fr;
	}
}
/* End */


/* Start:/local/templates/.default/components/bitrix/catalog.item/.default/style.css?17603609854391*/
.product-item-container {
	display: flex;
	align-items: stretch;
}

.product-item {
	border: 1px solid #EAEAEA;
	margin-left: -1px;
	padding: 1rem;
	width: 100%;
}

.product-item .product-item-image-wrapper {
	position: relative;
	display: block;
	height: 270px;
	width: 100%;
	overflow: hidden;
	margin-bottom: 1rem;
}

.product-item .product-item-image-wrapper img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all .3s;
}

.product-item:hover .product-item-image-wrapper img {
	left: -5%;
	top: -5%;
	width: 110%;
	height: 110%;
}

.product-item .product-item-title {
	text-align: center;
	margin-bottom: 2rem;
}

.product-item .product-item-title a {
	font-size: 1rem;
	font-weight: 400;
	color: var(--color-black);
}

.product-item .product-bottom-part {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.product-item .product-bottom-part .product-item-price-current {
	font-size: 1.125rem;
	font-family: "Montserrat";
	font-weight: 700;
}

.product-item .product-bottom-part .btn {
	border-radius: 0 5px;
	color: #fff;
	border-color: var(--color-secondary);
	transition: all .3s;
	text-indent: -9999px;
	overflow: hidden;
	background: url(/local/templates/.default/components/bitrix/catalog.item/.default/images/icon_cart_white.svg) center no-repeat var(--color-secondary);
}

.product-item .product-bottom-part .btn:hover {
	background-color: var(--color-black);
	border-color: var(--color-black);
}



/*Image Slider*/
.product-item-image-slider-slide-container {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	transition: opacity 300ms ease;
}

.product-item-image-slide {
	position: relative;
	display: none;
	height: 100%;
	background-color: #fff;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: .6s ease-in-out left;
}

@media all and (transform-3d), (-webkit-transform-3d) {
	.product-item-image-slide {
		transition: transform .6s ease-in-out;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-perspective: 1000px;
		perspective: 1000px;
	}

	.product-item-image-slide.next,
	.product-item-image-slide.active.right {
		left: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	.product-item-image-slide.prev,
	.product-item-image-slide.active.left {
		left: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	.product-item-image-slide.next.left,
	.product-item-image-slide.prev.right,
	.product-item-image-slide.active {
		left: 0;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.product-item-image-slider-slide-container > .active,
.product-item-image-slider-slide-container > .next,
.product-item-image-slider-slide-container > .prev { display: block; }

.product-item-image-slider-slide-container > .active { left: 0; }

.product-item-image-slider-slide-container > .next,
.product-item-image-slider-slide-container > .prev {
	position: absolute;
	top: 0;
	width: 100%;
}

.product-item-image-slider-slide-container > .next { left: 100%; }

.product-item-image-slider-slide-container > .prev { left: -100%; }

.product-item-image-slider-slide-container > .next.left,
.product-item-image-slider-slide-container > .prev.right { left: 0; }

.product-item-image-slider-progress-bar-container {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
}

.product-item-image-slider-progress-bar {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background-color: #f42c2c;
	opacity: .8;
}

.product-item-image-slider-control-container {
	position: absolute;
	right: 0;
	bottom: 10px;
	left: 0;
	z-index: 15;
	padding: 0;
	text-align: center;
	opacity: 0;
	transition: opacity 300ms ease;
}

.product-item-container.hover .product-item-image-slider-control-container,
.product-item-line-card:hover .product-item-image-slider-control-container { opacity: 1; }

.product-item-image-slider-control,
.product-item-image-slider-control.active {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(128, 128, 128, .8);
	opacity: .6;
	cursor: pointer;
	transition: all 300ms ease;
}

.product-item-image-slider-control:hover,
.product-item-image-slider-control.active:hover { cursor: pointer; }


/* End */


/* Start:/local/templates/.default/components/bitrix/catalog.section/.default/themes/blue/style.min.css?1760360985706*/
.bx-blue .product-item-image-slider-progress-bar{background-color:#0083d1}.bx-blue .product-item-image-slider-control:hover{background-color:rgba(0,131,209,.8)}.bx-blue .product-item-image-slider-control.active,.bx-blue .product-item-image-slider-control:hover{background-color:#0083d1}.bx-blue .product-item-scu-item-text-block:hover,.bx-blue .product-item-scu-item-color-block:hover,.bx-blue .product-item-scu-item-text-container.selected .product-item-scu-item-text-block,.bx-blue .product-item-scu-item-color-container.selected .product-item-scu-item-color-block{outline-color:#006cc0}.bx-blue .product-item-amount-field:focus{border-color:#006cc0}.bx-blue .catalog-section-header{border-color:#006cc0}
/* End */
/* /local/templates/.default/components/bitrix/catalog.section/.default/style.css?1760360985691 */
/* /local/templates/.default/components/bitrix/catalog.item/.default/style.css?17603609854391 */
/* /local/templates/.default/components/bitrix/catalog.section/.default/themes/blue/style.min.css?1760360985706 */
