@charset "utf-8";
/* CSS Document */

/* MINIATURAS */

#galeria-listado {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

#galeria-listado img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity .2s;
}

#galeria-listado img:hover {
    opacity: .8;
}


/* VISOR DE GALERÍA */

.galeria-visor {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.90);

    align-items: center;
    justify-content: center;
}

.galeria-visor.activo {
    display: flex;
}


/* CONTENEDOR */

.galeria-contenido {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 95%;
    max-height: 95%;
}


/* FOTO + MARCO BLANCO */

.galeria-foto {
    background: #fff;
    padding: 10px;
    box-shadow: 0 0 25px rgba(0,0,0,.6);
}

.galeria-foto img {
    display: block;
    max-width: 80vw;
    max-height: 75vh;
    width: auto;
    height: auto;
}


/* TÍTULO */

.galeria-titulo {
    color: #222;
    font-size: 16px;
    text-align: center;
    padding: 10px 5px 3px;
}


/* CERRAR */

.galeria-cerrar {
    position: absolute;
    right: -15px;
    top: -15px;
    z-index: 10;

    width: 35px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 50%;

    background: #000;
    color: #fff;
    font-size: 25px;
    line-height: 28px;
    cursor: pointer;
}


/* FLECHAS */

.galeria-flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    border: 0;
    background: rgba(0,0,0,.6);
    color: #fff;

    width: 45px;
    height: 60px;
    font-size: 35px;

    cursor: pointer;
}

.galeria-flecha:hover {
    background: rgba(0,0,0,.9);
}

.galeria-anterior {
    left: -60px;
}

.galeria-siguiente {
    right: -60px;
}


/* RESPONSIVE */

@media (max-width: 700px) {

    #galeria-listado img {
        width: calc(50% - 8px);
        height: auto;
    }

    .galeria-foto img {
        max-width: 85vw;
        max-height: 75vh;
    }

    .galeria-anterior {
        left: 5px;
    }

    .galeria-siguiente {
        right: 5px;
    }
}