 /* Slideshow container */
.slideshow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
		height: 100%;
}

/* Imagenes galería */
.mySlides  {
    border-radius: 16px;
		background-position: center center;
		background-size: cover;
		background-repeat: no-repeat;
		background-size: contain;	 
		height: 100%;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: #5AA100 !important;
    background-color: rgba(255,255,255,0.7);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

div#idSlideShow {
		width: 100%;
		height: 100%;
		background-color: white;
		border-radius: 16px;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev {
	left: 0;
	border-radius: 0px 3px 3px 0px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
   background-color: rgba(255,255,255,1);
}


/* Number text (1/3 etc) */
.numbertext {
    color: #5AA100;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
		background-color: white;
    border-radius: 16px 0;
}


.active {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
}


