.mySlides img {
	height: 100vh;
	position: fixed;
    left: 50%;
    top: 49.9%;
    transform: translate(-50%, -50%);
}

.mySlides .text img {
	height: auto;
	width: auto;
	position: fixed;
	left: auto;
	bottom: auto;
	top: auto;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #1f97ed;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #ff6201;
}

.dots-container {
  text-align: center;
  width: 100%;
  position: fixed;
  bottom: 25px;
}

.slider-overlay {
	width: 100vw;
	height: 100vh;
	background: #00000020;
	z-index: 100;
	position: fixed;
	top: 0;
}

body {
  font-family: Verdana, sans-serif; margin:0}
  .mySlides {display: none}
  img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: none;
  position: fixed;
  margin: auto;
  text-align:center;
  z-index: -999;
}

/* Next & previous buttons */
.slideshow-container .prev, .slideshow-container  .next {
  cursor: pointer;
  position: fixed;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 2.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  display: none;
}

/* Position the "next button" to the right */
.slideshow-container .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.slideshow-container  .prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.slideshow-container .text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: fixed;
  bottom: 48%;
  width: 40%;
  text-align: center;
  left: 30%;
  z-index: 500;
}

/* Number text (1/3 etc) */
slideshow-container .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: fixed;
  top: 0;
}

/* The dots/bullets/indicators */
.slideshow-container .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 2.6s ease;
}

.slideshow-container .active, .slideshow-container  .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 3.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* For smaller pix sized screens than 501px */
@media only screen and (max-width: 500px) {
    
   .dots-container {
        left: -80px;
        bottom: 80px;
   }
	
	.player-container {
        padding: 5px;
    }
	
	#audio-secondary-pause-btn, #audio-secondary-play-btn {
	left: calc(50% - 25px);
	}
	
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .slideshow-container .prev, .slideshow-container  .next, .slideshow-container .text {font-size: 11px}
}