/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin-left: 0.3%;
}


/* Next & previous buttons */
.xyoprev, .xyonext {
  cursor: pointer;
  position: absolute;
  top: 100%;
  width: 20%;
  margin-top: 1.5em;
  color: #c2a2a2;
  font-weight: bold;
  font-size: 0.5em ;
  transition: 0.6s ease;
  border-radius: 0 .05em .05em 0;
  box-shadow: 0.02em 0.02em #c2a2a2;
}

/* Position the "next button" to the right */
.xyonext {
  margin-left: 65%;
  border-radius: .5em 3.5em 0.5em 3.15em;
  padding: 0.85em 2em ;
}
.xyoprev {
  padding: 0.85em 1em ;
  border-radius: 3.5em 0.5em 3.5em .5em;
}

/* On hover, add a black background color with a little bit see-through */
.xyoprev:hover{
  background-color: #813b40;
  border-radius: 3.5em 0.5em 0.5em 3.5em;
}
.xyonext:hover{
  background-color: #813b40;
  border-radius: 0.5em 3.5em 3.5em 0.5em;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: .85em;
  padding: .4em .6em;
  position: absolute;
  bottom: .4em;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #813b40;
  font-size: .6em;
  padding: .4em .6em;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor:pointer;
  height: .6em;
  width: .6em;
  margin: 0 .1em;
  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;
}

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

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

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .slprev, .slnext,.text {font-size: 11px}
}
