* {boxi-sizing:border-box}

/* Slideshow container */
.slideshow-container {
	max-width: 900px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.previ, .nexti {
	color: #FF6634 !important;
    background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.nexti {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.previ:hover, .nexti:hover {
	  color: #fff !important;
    background-color: rgba(255, 102, 52, 0.6);
}

/* Caption text */
.texti {
  color: #fff;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  background-color: rgba(255, 102, 52, 0.6);
}





/* Fading animation */
.fadei {
  -webkit-animation-name: fadei;
  -webkit-animation-duration: 1.5s;
  animation-name: fadei;
  animation-duration: 1.5s;
}

@-webkit-keyframes fadei {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fadei {
  from {opacity: .4}
  to {opacity: 1}
}