/*
 vanillaSlideshow v0.1
 (c) Dimitri Mikadze
 https://github.com/DimitriMikadze/vanilla-slideshow
 License: MIT
*/
#vanilla-slideshow-container { 
	width: 100%; 
	height: 100%; 
}

#vanilla-slideshow .vanilla-slide { 
	width: 333px;  
	background-size: cover; 
	position: absolute; 
	opacity: 0;
}

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

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

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

/* Arrows */

#vanilla-slideshow-previous {
	position: relative;
    left: 5%;
    top: 200px;
    float: left!important;
	width: 48px;
	height: 50px;
	opacity: 0.7;
	z-index: 5; 
	display: none;
    cursor: pointer;
}

#vanilla-slideshow-next {
	    position: relative;
    right: 5%;
    top: 200px;
    float: right!important;
	width: 48px;
	height: 50px;
	opacity: 0.7;
	z-index: 5; 
	display: none;
    cursor: pointer;
}

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

/* Indicators */

#vanilla-indicators {
	display: inline-block;
	z-index: 5;
	   position: relative;
    top: 350px;
    left: 20%;
}

.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;
}
