/* Slideshow container */
.slide-show__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-show__slide{
 /* Position and center the image to scale nicely on all screens */
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 position: relative;
 width: 100%;
 height: 100%;
	   
}

/* Next & previous buttons */
.slide-show__prev, .slide-show__next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 1;
}

/* Position the "next button" to the right */
.slide-show__next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.slide-show__prev:hover, .slide-show__next:hover {
  background-color: rgba(0,0,0,0.8);
}

.slide-show__dots{
  
  position: absolute;
	bottom: .5rem;
	left: 50%;
	transform: translate(-50%, -.5rem);
  
  text-align : "center";
  
}

/* The dots/bullets/indicators */
.slide-show__dot {
  cursor: pointer;
  height: 16px;
  width: 16px;
  margin: 0 8px;
  background-color: rgba(187, 187, 187, 0.692);
  border-radius: 100%;
  display: inline-block;
  transition: background-color 0.6s ease;
  z-index: 1;
}

.slide-show__active, .slide-show__dot:hover {
  background-color: rgba(113, 113, 113, 0.579);
}

/* Fading animation */
.slide-show__fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes slidein {
  from {
	margin-left: 100%;
  }

  to {
	margin-left: 0%;
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .slide-show__prev, .slide-show__next {font-size: .75rem}
}