/* Slideshow container */
.sherslideshow-container {
  position: relative;
  background: #f1f1f1f1;
}

/* Slides */
.shermySlides {
  display: none;
  width:900px
  text-align: center;
}

/* Next & previous buttons */
.sherprev, .shernext {
  cursor: pointer;
  position: absolute;
 
  width: auto;
  margin-top: -15%;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.shernext {
  position: absolute;
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.sherprev:hover, .shernext:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}

/* The dot/bullet/indicator container */
.sherdot-container {
    text-align: center;
    padding: 10px;
    background: #38a33d;
}

/* The dots/bullets/indicators */
.sherdot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.sheractive, .sherdot:hover {
  background-color: #717171;
}