* {box-sizing:border-box}

/* Slideshow container */
.character-container {
  max-width: 700px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 95%;
  width: 131px;
  height: 107px;
  padding: 16px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: -8%;
}

.prev {
	left: 30%;
}



/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 50px;
  width: 50px;
  margin: 0 10px;
  background-image: url(../images/dot.png);
  border-radius: 50%;
  display: inline-block;
  transition: background-image 0.6s ease;
}

.active, .dot:hover {
  background-image: url(../images/dot_hover.png);
}


@media all and (max-device-width: 767px) {
	
.prev, .next {
  top: 98%;
  
}
	
.prev {
	left: 0%;
}

}
