/* {box-sizing:border-box} */

/* Slideshow container 
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-radius: 10px;
  border: 5px solid;
}

*/

.left {

  width: 34px;
  height: 105px;
  left: -10px;
  position: absolute;
  top: 50%;
  margin-top: -52.5px;
  background-image: url('../graphics/slideshow-left.png');

}

.right {

  width: 34px;
  height: 105px;
  right: -20px;
  position: absolute;
  top: 50%;
  margin-top: -52.5px;
  background-image: url('../graphics/slideshow-right.png');

}

.slideshow-container img {

  border-radius: 10px;
  border: 5px solid #c8c8c8;
  max-height: 247px;
  min-width: 320px;
  min-height: 100px;
  height: 247px;

}

.slideshow-container {
  position: relative;
  min-height: auto;
  min-width: 320px;
  max-width: 706px;
  max-height: 253px; /* 253 */
  margin: 10px auto;
  margin-left: 10px;
  border-radius: 10px;
  margin-right: 20px;

}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  color: #c8c8c8;
  top: 50%;
  font-family: MrsEavesBold;
  font-size: 40px;
  margin-top: -20px;
  margin-left: -5px;
  
}

/* Position the "next button" to the right */
.next {
  right: 0;
  margin-right: -15px;

}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {

  color: #0095da;

}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  min-height: 15px;
  min-width: 15px;
  max-height: 15px;
  max-width: 15px;
  background-color: #c8c8c8;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  margin-top: 10px;
  position: relative;
  border: 2px solid #ffffff;
  right: 35px;
  top:-60px;
}

.active, .dot:hover {
  background-color: #0095da;
}

/* Fading animation */
.faded {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}