.elementor-4505 .elementor-element.elementor-element-9dfcb65{--display:flex;}#elementor-popup-modal-4505{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-4505 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-4505 .dialog-close-button{display:flex;}#elementor-popup-modal-4505 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS for html, class: .elementor-element-b2d336f *//* =========================================================
   POPUP DOSSIER EREDITÀ DIGITALE
   ========================================================= */

.dossier-popup,
.dossier-popup * {
    box-sizing: border-box;
}


/* NASCONDE IL CHECKBOX */

#dossier-popup-toggle {
    display: none;
}


/* =========================================================
   POPUP E SFONDO
   ========================================================= */

.dossier-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    font-family: Arial, Helvetica, sans-serif;
}


.dossier-popup-overlay {
    position: absolute;
    inset: 0;

    background: rgba(10, 17, 25, 0.78);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}


/* =========================================================
   BOX PRINCIPALE
   ========================================================= */

.dossier-popup-box {
    position: relative;
    z-index: 2;

    width: min(1180px, 100%);
    max-height: 94vh;

    overflow: hidden;

    background: #f8fafc;

    border-radius: 22px;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.35),
        0 10px 30px rgba(0, 0, 0, 0.15);

    animation: dossierPopupIn 0.45s ease-out;
}


/* =========================================================
   CONTENUTO DESKTOP
   ========================================================= */

.dossier-popup-content {
    display: grid;

    grid-template-columns:
        minmax(270px, 1fr)
        minmax(300px, 400px)
        minmax(270px, 1fr);

    align-items: center;

    gap: 34px;

    padding: 45px 50px;
}


/* =========================================================
   CHIUDI
   ========================================================= */

.dossier-close {
    position: absolute;

    top: 14px;
    right: 18px;

    z-index: 10;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.07);

    color: #26313c;

    font-size: 27px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition: all 0.2s ease;
}


.dossier-close:hover {
    background: #1d2d3d;

    color: #fff;

    transform: rotate(90deg);
}


/* =========================================================
   COLONNA SINISTRA
   ========================================================= */

.dossier-left {
    padding-right: 5px;
}


/* BADGE */

.dossier-badge {
    display: inline-flex;

    align-items: center;

    padding: 8px 13px;

    margin-bottom: 20px;

    border: 1px solid #b9d9f8;

    border-radius: 30px;

    background: #eaf5ff;

    color: #1670c5;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.4px;
}


/* TITOLO SINISTRA */

.dossier-left h2 {
    margin: 0 0 17px;

    color: #142536;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(34px, 3.2vw, 52px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -1.5px;
}


.dossier-left h2 span {
    display: block;

    color: #bd470c;
}


/* SOTTOTITOLO */

.dossier-subtitle {
    max-width: 380px;

    margin: 0 0 28px;

    color: #4b5965;

    font-size: 16px;

    line-height: 1.5;
}


/* =========================================================
   BENEFIT
   ========================================================= */

.dossier-benefits {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.dossier-benefit {
    display: flex;

    gap: 11px;

    align-items: flex-start;
}


.dossier-benefit > span {
    flex: 0 0 auto;

    width: 22px;
    height: 22px;

    display: flex;

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

    margin-top: 1px;

    border-radius: 50%;

    background: #20ad62;

    color: white;

    font-size: 13px;

    font-weight: 900;
}


.dossier-benefit strong {
    display: block;

    margin-bottom: 2px;

    color: #1d2d3d;

    font-size: 14px;
}


.dossier-benefit small {
    display: block;

    color: #66727c;

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   IMMAGINE CENTRALE
   ========================================================= */

.dossier-center {
    display: flex;

    justify-content: center;

    align-items: center;
}


.dossier-image-wrapper {
    position: relative;

    width: 100%;
    max-width: 360px;

    border-radius: 5px;

    transform: rotate(-1deg);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.dossier-image-wrapper:hover {
    transform: rotate(0deg) translateY(-5px);

    box-shadow:
        0 28px 55px rgba(0, 0, 0, 0.28);
}


.dossier-image {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 5px;
}


/* ETICHETTA SULL'IMMAGINE */

.dossier-image-label {
    position: absolute;

    right: 12px;
    bottom: 12px;

    padding: 9px 15px;

    border-radius: 30px;

    background: #d94739;

    color: white;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.4px;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   COLONNA DESTRA
   ========================================================= */

.dossier-right {
    padding-left: 5px;
}


/* EYEBROW */

.dossier-eyebrow {
    margin-bottom: 13px;

    color: #bd470c;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.1px;

    line-height: 1.4;
}


/* TITOLO DESTRA */

.dossier-right h3 {
    margin: 0 0 17px;

    color: #172b3c;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(24px, 2.2vw, 34px);

    font-weight: 500;

    line-height: 1.12;

    letter-spacing: -0.5px;
}


/* DESCRIZIONE */

.dossier-description {
    margin: 0 0 23px;

    color: #56636d;

    font-size: 14px;

    line-height: 1.55;
}


/* =========================================================
   PREZZO
   ========================================================= */

.dossier-price {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 18px;
}


.old-price {
    color: #92999f;

    font-size: 18px;

    text-decoration: line-through;
}


.new-price {
    color: #bd470c;

    font-size: 38px;

    font-weight: 900;

    line-height: 1;
}


.price-label {
    padding: 5px 8px;

    border-radius: 4px;

    background: #fff0e8;

    color: #bd470c;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.5px;
}


/* =========================================================
   CTA
   ========================================================= */

.dossier-cta {
    display: flex;

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

    width: 100%;

    min-height: 58px;

    padding: 15px 20px;

    border-radius: 9px;

    background: #d95105;

    color: #fff !important;

    font-size: 16px;

    font-weight: 900;

    letter-spacing: 0.3px;

    text-align: center;

    text-decoration: none !important;

    box-shadow:
        0 8px 20px rgba(217, 81, 5, 0.25);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.dossier-cta span {
    margin-left: 10px;

    font-size: 22px;

    transition: transform 0.2s ease;
}


.dossier-cta:hover {
    background: #bd4504;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(217, 81, 5, 0.32);

    color: #fff !important;
}


.dossier-cta:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TRUST
   ========================================================= */

.dossier-trust {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 7px 14px;

    margin-top: 15px;

    color: #69747c;

    font-size: 10px;

    line-height: 1.4;
}


.dossier-microcopy {
    margin-top: 10px;

    color: #879098;

    font-size: 10px;

    text-align: center;
}


/* =========================================================
   ANIMAZIONE
   ========================================================= */

@keyframes dossierPopupIn {

    from {
        opacity: 0;

        transform:
            translateY(25px)
            scale(0.97);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* =========================================================
   CHIUSURA POPUP
   ========================================================= */

#dossier-popup-toggle:not(:checked) ~ .dossier-popup {
    display: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .dossier-popup-content {
        grid-template-columns:
            minmax(240px, 1fr)
            minmax(270px, 320px)
            minmax(240px, 1fr);

        gap: 22px;

        padding: 40px 35px;
    }


    .dossier-left h2 {
        font-size: 38px;
    }


    .dossier-right h3 {
        font-size: 27px;
    }


    .dossier-subtitle {
        font-size: 14px;
    }
}


/* =========================================================
   MOBILE
   VERSIONE SEMPLIFICATA
   ========================================================= */

@media (max-width: 760px) {

    .dossier-popup {
        padding: 10px;
    }


    .dossier-popup-box {
        width: 100%;

        max-height: 90vh;

        overflow-y: auto;

        border-radius: 18px;
    }


    .dossier-popup-content {

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 15px;

        padding: 30px 22px 22px;

        text-align: center;
    }


    /* =========================
       TITOLO
       ========================= */

    .dossier-left {

        order: 1;

        padding: 0;
    }


    .dossier-badge {
        display: none;
    }


    .dossier-left h2 {

        margin: 0;

        font-size: 34px;

        line-height: 0.98;

        letter-spacing: -1px;
    }


    .dossier-left h2 span {
        display: inline;
    }


    .dossier-subtitle {
        display: none;
    }


    .dossier-benefits {
        display: none;
    }


    /* =========================
       IMMAGINE
       ========================= */

    .dossier-center {

        order: 2;

        width: 100%;
    }


    .dossier-image-wrapper {

        width: 58%;

        max-width: 250px;

        transform: rotate(-1deg);
    }


    .dossier-image-label {
        display: none;
    }


    /* =========================
       OFFERTA
       ========================= */

    .dossier-right {

        order: 3;

        width: 100%;

        padding: 0;
    }


    .dossier-eyebrow {
        display: none;
    }


    .dossier-right h3 {

        max-width: 330px;

        margin: 0 auto 8px;

        font-size: 21px;

        line-height: 1.15;
    }


    .dossier-description {
        display: none;
    }


    /* =========================
       PREZZO
       ========================= */

    .dossier-price {

        justify-content: center;

        margin: 5px 0 12px;
    }


    .old-price {
        font-size: 15px;
    }


    .new-price {
        font-size: 34px;
    }


    .price-label {
        font-size: 8px;
    }


    /* =========================
       CTA
       ========================= */

    .dossier-cta {

        min-height: 52px;

        font-size: 15px;

        border-radius: 8px;
    }


    /* =========================
       INFORMAZIONI SECONDARIE
       NASCOSTE SU MOBILE
       ========================= */

    .dossier-trust {
        display: none;
    }


    .dossier-microcopy {

        margin-top: 5px;

        font-size: 9px;
    }


    /* =========================
       CHIUDI
       ========================= */

    .dossier-close {

        top: 7px;
        right: 8px;

        width: 30px;
        height: 30px;

        font-size: 23px;
    }
}


/* =========================================================
   SMARTPHONE PICCOLI
   ========================================================= */

@media (max-width: 400px) {

    .dossier-popup-content {

        padding: 28px 18px 20px;

        gap: 13px;
    }


    .dossier-left h2 {
        font-size: 31px;
    }


    .dossier-image-wrapper {
        width: 55%;
    }


    .dossier-right h3 {
        font-size: 20px;
    }


    .new-price {
        font-size: 32px;
    }
}/* End custom CSS */