
/* Slideshow container */
.slideshow-container {
  width: 100%;
  margin: auto;
}

/* Next & previous buttons */
.prev_prod, .next_prod {
  cursor: pointer;
  position: relative;
  width: auto;
  padding: 16px;
  margin-top: 0px;
  color: #666;
  background-color: #CCC;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
/* Position the "next button" to the right */
.next_prod {
  	right: 0;
	float: right;
  	border-radius: 3px 0 0 3px;
}
/* Position the "prev button" to the left */
.prev_prod {
  	right: 0;
	float: left;
  	border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev_prod:hover, .next_prod:hover {
  background-color: rgba(0,0,0,0.8);
  color:#FFF;
}
/* The dots/bullets/indicators */
.dotti {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dotti.active, .dotti: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) {
  .prev_prod, .next_prod,.text {font-size: 11px}
}