<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.video-reels-wrapper {
	display: grid;
	width: 100%;
	height: 100%;
}
.video-reels {
	width: 100%;
	height: 100%;
	margin: 20px -10px 20px 0;
	position: relative;
	overflow: hidden;
}
.video-reels .swiper-slide {
	display: block;
	text-align: center;
}
.video-reels .swiper-button-next {
	right: 5px;
}
.video-reels .swiper-button-prev {
	left: 5px;
}
.video-reels .swiper-button-yellow {
	top: 50%;
	margin-top: -40px;
	background-color: #fed625;
	color: #212121;
	background-size: 60% 60%;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
.video-reels video {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	border-radius: 10px;
	position: relative;
	cursor: pointer;
	transition: opacity 0.3s;
}
.video-reels video:hover {
	opacity: 0.9;
}
.video-reels .swiper-button-next.swiper-button-disabled, 
.video-reels .swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}
.video-reels .slide-view {
	position: absolute;
    left: 50%;
    bottom: 60px;
    color: #ffffff;
    background-color: #17a200;
    width: 150px;
    margin: 0 0 0 -75px;
    padding: 10px 10px 9px 10px;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 5px;
    box-sizing: border-box;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'dinpro', Tahoma, Arial, Sans-Serif;
    font-weight: normal;
}
.video-reels .slide-view:hover {
	background-color: #1dcb00;
}

@media (max-width: 1000px) {
	.video-reels .slide-view {
		bottom: 55px;
		width: 130px;
		margin: 0 0 0 -65px;
		padding: 7px 5px 6px 5px;
	}
}
@media (max-width: 900px) {
	.video-reels .slide-view {
		left: 50%;
		bottom: 60px;
		width: 150px;
		margin: 0 0 0 -75px;
	}
}
@media (max-width: 767px) {
}
@media (max-width: 400px) {

}</pre></body></html>