/* CSS Slideshow       */  
* {box-sizing:border-box}  

.mySlides {display:none}

/* Slideshow container */
.slideshow-container {
/*  width:800px; */  
  position: relative;
  margin: auto; 
} 

/* Next & previous buttons */
a.prev, a.next {
  cursor: pointer;
  position: absolute;
  top: 70px;
  width: auto;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  background:rgb(228,228,228);
}

a.prev {left:4px;border-radius: 0 5px 5px 0;padding: 10px;}
a.next { right: 4px; border-radius: 5px 0 0 5px; padding: 10px; }

a.prev:hover, a.next:hover {
  background-color: rgb(165,165,165);
}

/* Caption text */
div.slide-txt {
  color: red;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  font-weight:bold;
}

.dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  margin: 5px 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
  text-align:center;
}

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

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