.slideshow {
	width: 100%;
}

.slideshow-container {
	position: relative;
	margin: auto;
	width: 100%;
}

.mySlides {
	display: none;
}

.mySlides img {
	width: 100%;
}

.text {
	color: #f2f2f2;
	font-size: 0.6em;
	position: absolute;
	padding: 8px 12px;
	bottom: 3px;
	text-align: center;
	width: 100%;
}

.numberText {
	color: #f2f2f2;
	font-size: 0.7em;
	position: absolute;
	top:  0;
	padding: 8px 12px;
}

.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -25px;
	padding: 16px;
	color:  var(--claro_01);
	font-weight: bold;
	font-size: 1.8em;
	transition: 0.6s ease;
	border-radius: 0 5px 5px 0;
	user-select: none;
}

.next {
	right: 0;
	border-radius: 5px 0 0 5px;
}

.prev:hover, .next:hover {
	background: rgba(0, 0, 0, 0.8);
}

.dot {
	cursor: pointer;
	height: 10px;
	width: 10px;
	margin: 15px 35px 10px 35px;
	background: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
} 

.active, .dot:hover {
	background: #717171;
}

.fade {
	animation-name: fade;
	animation-duration: 2.5s;
}

@keyframes fade {
	0% {  opacity: 0.0;}
	100% {  opacity: 1.0;}
}

@media only screen and (min-width: 992px){ 
 	.slideshow-container {
	max-width: 1200px;
	}
}	
