/* =========================================================
   FIRENZE - HOMEPAGE POPUP
   ========================================================= */

#firenze-home-popup {
    display: none;

    position: fixed;
    z-index: 999999;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;

    align-items: center;
    justify-content: center;
}

#firenze-home-popup.is-visible {
    display: flex;
}


/* =========================================================
   SFONDO
   ========================================================= */

.firenze-popup-overlay {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: rgba(0, 0, 0, 0.70);

    cursor: pointer;
}


/* =========================================================
   BOX
   ========================================================= */

.firenze-popup-box {
    position: relative;

    z-index: 2;

    width: 90%;
    max-width: 750px;

    max-height: 90vh;

    padding: 35px;

    box-sizing: border-box;

    background: #ffffff;

    overflow: auto;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.40);

    animation: firenzePopupOpen 0.35s ease-out;
}


/* =========================================================
   TITOLO
   ========================================================= */

.firenze-popup-box h2 {
    margin: 0 0 25px;

    padding: 0;

    text-align: center;

    font-size: 30px;
    line-height: 1.2;

    font-weight: 400;
}


/* =========================================================
   IMMAGINE
   ========================================================= */

.firenze-popup-image {
    width: 100%;

    text-align: center;
}

.firenze-popup-image img {
    display: block;

    width: 100%;
    height: auto;

    max-height: 70vh;

    object-fit: contain;

    margin: 0 auto;
}


/* =========================================================
   PULSANTE CHIUSURA
   ========================================================= */

.firenze-popup-close {
    position: absolute;

    z-index: 10;

    top: 8px;
    right: 8px;

    width: 38px;
    height: 38px;

    padding: 0;

    border: 0;

    background: rgba(0, 0, 0, 0.65);

    color: #ffffff;

    font-size: 28px;
    line-height: 36px;

    text-align: center;

    cursor: pointer;
}

.firenze-popup-close:hover {
    background: rgba(0, 0, 0, 0.90);
}


.firenze-popup-text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Montserrat';
    text-decoration-line: underline;
}

/* =========================================================
   ANIMAZIONE
   ========================================================= */

@keyframes firenzePopupOpen {

    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


/* =========================================================
   BLOCCA SCROLL
   ========================================================= */

body.firenze-popup-open {
    overflow: hidden;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .firenze-popup-box {
        width: 92%;

        padding: 25px 20px 20px;

        max-height: 85vh;
    }

    .firenze-popup-box h2 {
        margin-bottom: 18px;

        font-size: 23px;
    }

    .firenze-popup-image img {
        max-height: 70vh;
        
    }

    .firenze-popup-close {
        width: 34px;
        height: 34px;

        font-size: 24px;
        line-height: 32px;
    }

}