

/* Start:/local/components/our/banners/templates/.default/style.css?17568780692572*/
.slider {
    position: relative;
    width: 100%;
    overflow: hidden; /* Чтобы скрыть изображения, выходящие за пределы контейнера */
    height: 40vw; /* Высота для десктопной версии (в два раза меньше) */
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%; /* Устанавливаем высоту на 100% */
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    height: 100%; /* Устанавливаем высоту на 100% */
	overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Обеспечивает, чтобы изображение заполняло слайд */
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb;
    cursor: pointer;
}

.indicator.active {
    background-color: #717171;
}

/* Адаптивный дизайн для ipad */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px){
     .slider {
        max-height: 40vw; /* Высота для мобильных устройств (в два раза больше) */
    }
	.mobile_img {
		display: block;
	}
	.desktop_img {
		display: none;
	}
}
/* iPad (альбомный режим) */
@media only screen and (min-device-width : 768px) and (max-device-width : 1366px) and (orientation : landscape) {
	.slider {
        max-height: 36vw; /* Высота для мобильных устройств (в два раза больше) */
    }
	.mobile_img {
		display: block;
	}
	.desktop_img {
		display: none;
	}
}
/* Адаптивный дизайн для мобильных устройств */
@media (max-width: 768px) {
    .slider {
        max-height: 40vw; /* Высота для мобильных устройств (в два раза больше) */
    }
	.mobile_img {
		display: block;
	}
	.desktop_img {
		display: none;
	}
}
@media (max-width: 768px) {
	.mobile_img {
		display: none;
	}
	.desktop_img {
		display: block;
	}
}

/* End */


/* Start:/bitrix/templates/new/components/bitrix/catalog.section/main-products/style.css?1729054942296*/
.card-img-top {
	height: 124px; /* Устанавливаем высоту изображения */
	object-fit: cover; /* Обрезаем изображение, чтобы оно заполнило контейнер, сохраняя пропорции */
}
.section-link { color: #F9AB50; }
/* End */
/* /local/components/our/banners/templates/.default/style.css?17568780692572 */
/* /bitrix/templates/new/components/bitrix/catalog.section/main-products/style.css?1729054942296 */
