/*Requires that you add .slidecursor class for small and large screens in regular css. cursor: auto on small screens and cursor: zoom-in on large screens*/

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;	
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1000px;
}

/* The Close Button */
.close {
  z-index: 1;	
  padding: 8px;
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  background-color: #303030;	 
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}






/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Hide the number text by default */
.numbertext {
  display: none;
}


/* Next & previous buttons */
.prevslide, .nextslide {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  -webkit-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.nextslide {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prevslide:hover, .nextslide:hover {
  color: white;
  background-color: rgba(0,0,0,0.8);
}


.numbertext {
  color: #020202;
  font-size: 12px;
  padding-top: 2px;
  padding-bottom: 3px;
  padding-left: 0px;
  padding-right: 0px;
  transition: background-color 0.6s ease;
}



/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 18px;
  width: 18px;
  margin: 0 2px;
/*  background-color: #717171; */
  background-color: #4EB720;
  box-shadow: 1px 1px #505050;  
  -webkit-border-radius: 50%;  
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease; 
}

.active, .dot:hover {
  background-color: #bbb;
}

/* Fading animation */
.slidefade {
  animation-name: slidefade;
  animation-duration: 1.5s;
}

@keyframes slidefade {
  from {opacity: .4}
  to {opacity: 1}
}
