.advertising-banners {
	margin-bottom: -20px;
}

.swiperAdvertisingBanners {
	border-radius: 30px;
	cursor: pointer;
}
.swiperAdvertisingBanners img {
	border-radius: 30px;
	max-width: 100%;
	height: auto;
	max-height: 630px;
}
.swiperAdvertisingBanners .swiper-button-prev, .swiperAdvertisingBanners .swiper-button-next {
	background: rgba(255, 255, 255, 0.8);
	width: 35px;
	height: 35px;
	border-radius: 50%;
}
.swiperAdvertisingBanners .swiper-button-prev:hover, .swiperAdvertisingBanners .swiper-button-next:hover {
	background: var(--bg-button-white);
}
.swiperAdvertisingBanners .button {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	height: 35px;
	margin: 0 auto;
	background: rgba(184, 237, 32, 0.9);
	text-transform: uppercase;
	font-family: "InterSB";
	font-size: 13px;
	max-width: 190px;
	z-index: 1;
}
.swiperAdvertisingBanners .button:hover {
	background: var(--bg-button-hover);
	color: var(--bg-button-text);
	border-color: var(--bg-button-hover);
}
.swiperAdvertisingBanners .button:hover svg {
	-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
}
.swiperAdvertisingBanners .button:active {
	background: var(--bg-button-active);
	border-color: var(--bg-button-active);
}

.autoplay-progress {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 10;
	width: 48px;
	height: 48px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	font-weight: bold;
	color: var(--color-text);
}
.autoplay-progress svg {
	--progress: 0;
	position: absolute;
	left: 0;
	top: 0px;
	z-index: 10;
	width: 100%;
	height: 100%;
	stroke-width: 4px;
	stroke: var(--bg-button-focus);
	fill: none;
	stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
	stroke-dasharray: 125.6;
	-webkit-transform: rotate(-90deg);
			transform: rotate(-90deg);
}

@media (max-width: 575.98px) {
	.swiperAdvertisingBanners .button {
		top: auto !important;
		bottom: 0;
		max-width: 100%;
		height: 32px;
		font-size: 14px;
		background: var(--bg-button);
		border-radius: 0 0 30px 30px;
	}
	
	.autoplay-progress {
		right: 8px;
		bottom: 8px;
	}
}