/*================================
Estilos para la ventana emergente
=================================*/
.overlay {
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    z-index: 10000;
}

.overlay.active {
    visibility: visible;
}

.popup {
    background: #f8f8f8;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 20px;
    width: 70vh;
    opacity: 0;
    transition: 1s ease all;
    transform: scale(0.7);
}

/*============================================
Estilos para la imagen de la ventana emergente 
=============================================*/
.imagen-popup {
    width: 100%;
    border-radius: 5px;
}

.popup .btn-cerrar-popup {
    line-height: 16px;
    font-size: 30px;
    display: block;
    text-align: right;
    color: #999191;
    transition: 0.3s ease all;
}

.popup .btn-cerrar-popup:hover {
    color: #000;
}

/*===========================================
Animmaciones para el popup
=========================================== */
.popup.active {
    opacity: 1;
    transform: scale(1);
}