/*
 vanillaSlideshow v0.1
 (c) Dimitri Mikadze
 https://github.com/DimitriMikadze/vanilla-slideshow
 License: MIT
*/

#vanilla-slideshow-container { 
	width: 100%; 
	height: 100%; 
	position: relative; 
	text-align: center;
}



#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-slide-bg { 
	width: 100%; 
	height: 100%; 
	position: absolute; 
        object-fit: cover;

}

#vanilla-slideshow .vanilla-slide.vanilla-active {
    opacity: 1;
    z-index: 9;
}
#vanilla-slideshow .vanilla-slide img {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 3;
	opacity: 0%;
}

/* Arrows */

#vanilla-slideshow-next {
	position: absolute;
	right: 0;
	width: 100px;
	height: 90%;
	cursor: pointer;
	opacity: 0.7;
	z-index: 92;
	display: none;
	mix-blend-mode: difference;
	text-align: center;
	}
#vanilla-slideshow-previous {
	position: absolute;
	left: 0;
	width: 100px;
	height: 90%;
	cursor: pointer;
	opacity: 0.7;
	z-index: 92;
	display: none;
	mix-blend-mode: difference;
	text-align: center;
}
#vanilla-slideshow-next img {
	top: 55%;
	position: relative;
	display: flex;
	right: -35px;
	}
#vanilla-slideshow-previous img {
	top: 55%;
	position: relative;
	display: flex;
	left: 35px;
}

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

/* Indicators */

#vanilla-indicators {
	display: inline-block;
	z-index: 92;
	position: absolute;
	bottom: 50px;
	mix-blend-mode: difference;
}
.vanilla-indicators {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 0px solid #ffffff;
	float: left;
	margin-right: 5px;
	margin-left: 5px;
	cursor: pointer;
	background-color: #ffffff;
	opacity: 0.5;
}

.vanilla-indicators.vanilla-active {
	opacity: 1;
}
