#vanilla-slideshow-container {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background-image: url("../img/mainback2.png");
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	overflow: hidden;
	z-index: 11;
}

#vanilla-slideshow .vanilla-slide {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

#vanilla-slideshow .vanilla-slide.vanilla-active {
	opacity: 1;
}

#vanilla-slideshow .vanilla-slide img {
	min-height: 100%;
	min-width: 1024px;
	width: 100%;
	height: auto;
	position: fixed;
	top: 0;
	left: 0;
}

@media screen and (max-width: 1024px) {
	#vanilla-slideshow .vanilla-slide img {
		left: 50%;
		margin-left: -512px;
	}
}

/* Actions */
#vanilla-slideshow-play {
	display: none;
}

/* Arrows */

/* #vanilla-slideshow-previous {
	position: absolute;
	left: 10px;
	top: 40%;
	width: 48px;
	height: 50px;
	background-position: 0 100%;
	cursor: pointer;
	opacity: 0.7;
	z-index: 5;
	display: none;
}

#vanilla-slideshow-next {
	position: absolute;
	right: 10px;
	top: 40%;
	width: 48px;
	height: 50px;
	background-position: 100% 100%;
	cursor: pointer;
	opacity: 0.7;
	z-index: 5;
	display: none;
}

#vanilla-slideshow-previous:hover,
#vanilla-slideshow-next:hover {
	opacity: 1;
} */

/* Indicators */

#vanilla-indicators {
	display: inline-block;
	z-index: 5;
	position: absolute;
	bottom: 50px;
}

.vanilla-indicators {
	box-shadow: 0 0 10px #333333;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid #ffffff;
	float: left;
	margin-right: 3px;
	cursor: pointer;
}

.vanilla-indicators.vanilla-active {
	background-color: #ffffff;
}

.vanilla-slide .vanilla-title {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
}

.vanilla-slide .vanilla-content {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	max-height: 80%;
	max-width: 80%;
	padding: .75rem;
	color: #ffffff;
	transform: translate(-50%, 0);
	background-color: rgba(100, 100, 100, .4);
	border-radius: .75rem;
}

.vanilla-slide .vanilla-video-play {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	inset: 0;
	color: #ffffff;
	font-size: 12rem;
	background-color: rgba(0, 0, 0, .4);
	cursor: pointer;
	z-index: 1;
}

.vanilla-slide.vanilla-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#vanilla-slideshow-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: .5rem;
	background: rgba(0, 0, 0, .1);
	z-index: 2;
}

#vanilla-slideshow-progress div {
	display: block;
	width: 0;
	height: .5rem;
	background: rgba(255, 255, 255, .5);
	transition: width 0ms linear;
}

.vanilla-actions-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

.vanilla-actions {
	background: #ffffff;
	background: linear-gradient(180deg, rgba(50, 50, 50, .75) 0%, rgba(100, 100, 100, .5) 45%, rgba(250, 250, 250, 0) 100%);
}

.vanilla-actions i {
	font-size: 1.5rem;
	;
}