/*
 vanillaSlideshow v0.1
 (c) Dimitri Mikadze
 https://github.com/DimitriMikadze/vanilla-slideshow
 License: MIT
*/
@import url(http://fonts.googleapis.com/css?family=PT+Sans);

html, body { 
	width: 100%; 
	
	margin: 0; 
	padding: 0; 
	
	font-family: 'PT Sans', sans-serif;
}

#vanilla-slideshow-container {
	width: 100%;
	height: 100vh;
	position: relative;
	text-align: center;
}
.footerwrapper {
    position: fixed;
    bottom: 0px;
    width: 100%;
    background: #fff;
    z-index: 20;
}

div#vanilla-slideshow {
    position: relative;
}

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

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

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

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

/* 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 !important;
}

#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 !important;
}

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

/* Indicators */

#vanilla-indicators {
	    display: inline-block;
    z-index: 5;
    position: absolute;
    bottom: 80px;
    right: 0px;
    width: 20px;
}

.vanilla-indicators {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    float: left;
    margin-bottom: 10px;
    cursor: pointer;
}

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