
        /* Estilos generales del contenedor del slideshow */
.sliders {

    display: flex;
    flex-wrap: wrap;
}

.slider {
    border-radius: 100px;

    width: 100%;
    max-width: 600px;
    margin: 20px;
    margin: auto;
}

.slideshow-container {
    border-radius: 100px;

    width: 98%;
    position: relative;
    margin: auto;
}

.mySlides1, .mySlides2, .mySlides3, .mySlides4, .mySlides5, .mySlides6, .mySlides7, .mySlides8, .mySlides9, .mySlides10{

    display: none;
}

/*///////////////////////
img {
    vertical-align: middle;
} ///*/

/* Botones de navegación */

.picture img{

    width: 100%;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Contenedor de miniaturas */
.thumbnail-container {
    text-align: center;
    margin-top: 20px;
    display: flex;
}

.thumbnail {
    border-radius: 10px;

    width: 23%;
    cursor: pointer;
    transition: 500ms;
    margin: 5px;
    box-shadow: 2px 2px 2px black;
}

.thumbnail:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.active-slide {
    display: block !important;
}

.active-thumbnail {
    border: 2px solid #717171;
}

