

/* Start:/local/templates/main/components/bitrix/catalog/metal/style.css?17340014591122*/
.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;}

/* End */


/* Start:/local/templates/main/components/bitrix/catalog/metal/bitrix/catalog.section.list/subsection-sm/style.css?17866046134156*/
.catalog-sections-slider {
		--sections-gap: 26px;
		--sections-per-view: 4;

		position: relative;
		width: 100%;
		margin-top:-20px !important;
		margin-bottom: 20px;
}
.catalog-sections-slider__track {
		user-select: none;
		cursor: grab;
}

.catalog-sections-slider__track:active {
		cursor: grabbing;
}

.catalog-sections-slider__item {
		flex-shrink: 0;
		margin-top:29px !important;
}

.catalog-sections-slider__arrow[hidden] {
		display: none;
}
.catalog-sections-slider__viewport {
		overflow: hidden;
}

.catalog-sections-slider__track {
		display: flex;
		gap: var(--sections-gap);
		transition: transform 0.4s ease;
		will-change: transform;
		touch-action: pan-y;
}

.catalog-sections-slider__item {
		flex: 0 0 calc(
				(100% - (var(--sections-gap) * (var(--sections-per-view) - 1)))
				/ var(--sections-per-view)
		);
		min-width: 0;
}

.catalog-sections-slider__card {
		display: flex;
		height: 100%;
		min-height: 300px;
		flex-direction: column;
		overflow: hidden;
		border: 1px solid #e5e5e5;
		background: #fff;
		color: inherit;
		text-decoration: none;
		transition:
				box-shadow 0.2s ease,
				transform 0.2s ease;
}

.catalog-sections-slider__card:hover {
		/* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
		transform: translateY(-2px); */
}

.catalog-sections-slider__image {
		position: relative;
		display: block;
		height: 226px;
		overflow: hidden;
		background: #f3f3f3;
}

.catalog-sections-slider__image img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 1.4s ease; /* плавная анимация */
		will-change: transform;
}

.catalog-sections-slider__card:hover .catalog-sections-slider__image img {
		transform: scale(1.10);
}

.catalog-sections-slider__no-image {
		display: flex;
		width: 100%;
		height: 100%;
		align-items: center;
		justify-content: center;
		color: #999;
		font-size: 14px;
}

.catalog-sections-slider__content {
		display: flex;
		min-height: 83px;
		flex: 1 1 auto;
		flex-direction: column;
		padding: 17px 18px 4px;
}

.catalog-sections-slider__name {
		display: block;
		color: #3399cc;
		font-size: 28px;
		font-weight: 300;
		line-height: 1.2;
		text-transform: uppercase;
}
.catalog-sections-slider__name:hover{
	color:#272d33;
}
.catalog-sections-slider__count {
		display: block;
		/* margin-top: 14px; */
		color: #777;
		font-size: 17px;
		line-height: 2.8;
}

.catalog-sections-slider__arrow {
		position: absolute;
		z-index: 5;
		top: 118px;
		display: flex;
		width: 53px;
		height: 53px;
		align-items: center;
		justify-content: center;
		border: 0;
		background: #3399cc;
		cursor: pointer;
		transition: background-color 0.2s ease,
				opacity 0.2s ease;
}

.catalog-sections-slider__arrow:hover {
		background: #272d33;
}

.catalog-sections-slider__arrow:disabled {
		opacity: 0;
		pointer-events: none;
}

.catalog-sections-slider__arrow--prev {
		left: 20px;
}

.catalog-sections-slider__arrow--next {
		right: 20px;
}

.catalog-sections-slider__arrow span {
		display: block;
		width: 18px;
		height: 18px;
		border-top: 4px solid #fff;
		border-right: 4px solid #fff;
}

.catalog-sections-slider__arrow--prev span {
		margin-left: 7px;
		transform: rotate(-135deg);
}

.catalog-sections-slider__arrow--next span {
		margin-right: 7px;
		transform: rotate(45deg);
}

@media (max-width: 1200px) {
		.catalog-sections-slider {
				--sections-per-view: 3;
		}

		.catalog-sections-slider__name {
				font-size: 24px;
		}
}

@media (max-width: 900px) {
		.catalog-sections-slider {
				--sections-per-view: 2;
				--sections-gap: 18px;
		}

		.catalog-sections-slider__image {
				height: 240px;
		}
}

@media (max-width: 600px) {
		.catalog-sections-slider {
				--sections-per-view: 1;
				--sections-gap: 14px;
		}

		.catalog-sections-slider__card {
				min-height: 0;
		}

		.catalog-sections-slider__image {
				height: 230px;
		}

		.catalog-sections-slider__name {
				font-size: 22px;
		}

		.catalog-sections-slider__arrow {
				top: 120px;
				width: 48px;
				height: 48px;
		}

		.catalog-sections-slider__arrow--prev {
				left: 10px;
		}

		.catalog-sections-slider__arrow--next {
				right: 10px;
		}
}
/* End */


/* Start:/local/templates/main/components/bitrix/system.pagenavigation/new_metal/style.css?1734001462748*/
/*div.modern-page-navigation {
	padding: 0.5em 0;}
div.modern-page-navigation a, 
span.modern-page-current, 
span.modern-page-dots
{
	border-left-width: 1px;
	border-left-style: solid;
	padding-left: 0.75em;
	padding-right: 0.5em;
	text-decoration: none;
}
div.modern-page-navigation a.modern-page-previous { 
	border-right-width: 1px; 
	border-right-style: solid; 
	border-left: none; }
div.modern-page-navigation a.modern-page-first, 
div.modern-page-navigation span.modern-page-first { 
	border-left: none; 
	padding-left: 0.5em; }
span.modern-page-current { 
	font-weight: bold; }
div.modern-page-navigation a, 
span.modern-page-current, 
div.modern-page-navigation a.modern-page-previous, 
span.modern-page-dots { 
	border-color: #cdcdcd; }
*/
/* End */
/* /local/templates/main/components/bitrix/catalog/metal/style.css?17340014591122 */
/* /local/templates/main/components/bitrix/catalog/metal/bitrix/catalog.section.list/subsection-sm/style.css?17866046134156 */
/* /local/templates/main/components/bitrix/system.pagenavigation/new_metal/style.css?1734001462748 */
