@charset "ISO-8859-1";
/* Slideshow container */
@media(orientation:landscape){
	figure {margin: 0 auto;}
	@media screen and (max-width:800px){
	}	
	@media screen and (max-width:1000px){
	}	
	@media screen and (max-width:1200px){
	}	
	@media screen and (max-width:1400px){
	}	
	@media screen and (max-width:1600px){
	}	
	@media screen and (min-width:1800px){
	}	
}
@media(orientation:portrait){
}

.slide-img{
	pointer-events:none;
}
.slideshow-container {
  width: 60%; height:30%;
  position: relative;
  margin: 0 auto;
}

.mySlides {
	display: none;
	width: 80%; height:100%;
	margin:0 auto;
	}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px 8px 16px 8px;
	margin-top: -22px;
	color: white;
	font-weight: bold;
	font-size: 3rem;
	transition: 0.3s ease;
	border-radius: 3px 3px 3px 3px;
	user-select: none;
	background-color:#787878;
	opacity:.5;
}

/* Position the "next button" to the right */
.next {
  right: 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  opacity:.8;
  /*background-color: rgba(0,0,0,0.8);*/
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 1.25rem;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #787878;/*grey in rgb 120,120,120*/
  font-size: 1rem;
  padding: 0px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
