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

#vanilla-slideshow .vanilla-slide {
	width: 100%;
    height: 33vw;
	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 {
  width: 100%;
  height: 33vw;
  top: 0;
  left: 0;
}

/* Arrows */

#vanilla-slideshow-previous {
	position: absolute;
	left: 30px;
	top: 40%;
	width: 48px;
	height: 50px;
	background-position: 0 100%;
	cursor: pointer; 
	opacity: 0.7;
	z-index: 2; 
	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: 2; 
	display: none;
}

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

/* Indicators */

#vanilla-indicators {
	display: flex;
    justify-content: center;
	z-index: 2;
	position: absolute;
	bottom: 50px;
    text-align: center;
    width: 100%;
    right: 0;
    left: 0;
}

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

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