.main-slider {
	position: relative;
	overflow: hidden;
}
.main-slider:before {
	content: "";
	background: url(../main-slider/img/fon.webp);
	background-size: auto;
	position: absolute;
	inset: 0;
}
.main-slider > .container {
	display: flex;
	align-items: stretch;
	gap: 5px;
	position: relative;
	padding: 0 5px;
	overflow: hidden;
}
.slider-left-item,
.slider-right-item,
.slider-center-item {
	padding: 0;
	max-height: 360px;
	overflow: hidden;
}
.slider-left-item {
	flex: 1;
	max-width: 355px;
} 
.slider-right-item {
	flex: 1;
	max-width: 355px;
}
.slider-center-item {
	flex: 2;
	max-width: 710px;
}
.main-slider .swiper-slide > a {
	margin: 0px;
	width: 100%;
	height: 100%;
}
.slider-text {
	position: absolute;
	bottom: 5px;
	width: calc(100% - 10px);
	text-align: center;
	background: rgba(255, 255, 255, 0.8);
	color: var(--text);
	padding: 5px;
	margin: 0 5px;
	border-bottom: 4px solid var(--brand);
	font-family: var(--font-Condensed);
	font-size: 1.2rem;
	border-radius: var(--radius);
}
.slider-stock {
	position: absolute;
	right: 10px;
	top: 10px;
	background: var(--stock);
	color: #ffffff;
	padding: 5px 10px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: var(--radius);
}
.main-slider .swiper-slide .label {
	position: absolute;
	top: 10px;
	left: 10px;
}
@media only screen and (max-width: 991.98px) {
	.slider-left-item {
		display: none;
	}
}
@media only screen and (max-width: 639.98px) {
	.slider-left-item,
	.slider-right-item,
	.slider-center-item {
		display: none;
	}
}
