/**************************/
/****** POPUP by JGZ ******/
/**************************/

/* 
    Created on : 30-ene-2023, 16:42:42
    Updated on : 30-Jun-2025, 10:30:27
    Author     : joaquim.gomez
*/

/* The Modal (background) */
.popupModal {
    border-style: none; /* No borders */
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    overflow: auto; /* Enable scroll if needed */
    background-color: transparent; /* transparent */
    /* Pos */
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* Modal Content (image) */
.popupModal-content {
    display: block;
    width: 100%;
    max-width: 700px;
}

/* Animations */
.popupModal-content {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}



/* Close Button */
.closePopup {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #363636;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.closePopup:hover,
.closePopup:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Close Button2 */
.closePopup2 {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #363636;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.closePopup2:hover,
.closePopup2:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Close Button3 */
.closePopup3 {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #363636;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.closePopup3:hover,
.closePopup3:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .popupModal-content {
        width: 100%;
    }
}
