/* _content/Web/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-739djkm78g] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-739djkm78g] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Web/Components/Pages/Contattaci.razor.rz.scp.css */
.section-header[b-km69h1efn1] {
    margin: 0;
    padding: 0;
}

    .section-header h1[b-km69h1efn1] {
        margin: 0;
    }
/* _content/Web/Components/Pages/Home.razor.rz.scp.css */
.circle-image[b-l0gfn74exd] {
    width: 30vw; /* larghezza: 30% viewport */
    height: 30vw; /* altezza: 30% viewport, mantiene il cerchio */
    max-width: 320px; /* limite massimo opzionale */
    max-height: 320px;
    border-radius: 50%; /* ritaglio circolare */
    overflow: hidden; /* nasconde le parti fuori dal cerchio */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* centra orizzontalmente nella pagina */
}

    .circle-image img[b-l0gfn74exd] {
        width: 100%;
        height: 100%;
        object-fit: cover; /* mantiene proporzioni e riempie il cerchio */
    }
/* _content/Web/Components/Shared/CertCarousel.razor.rz.scp.css */
/* Slide immagini */
.carousel-item img[b-1olpuhd0da] {
    width: auto;
    max-width: 100%;
    object-fit: contain; /* mantiene proporzioni */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Didascalia sotto l'immagine */
.caption-below[b-1olpuhd0da] {
    background: #f1f3f5; /* grigio chiaro */
    color: #333;
    padding: 12px 14px;
    width: 100%;
    margin-top: 8px; /* distacco dall’immagine */
    text-align: center;
    border-radius: 0; /* spigoli vivi */
    font-size: 18px; /* più grande */
    font-weight: 700; /* grassetto */
    font-family: 'Nunito', sans-serif;
    line-height: 1.5;
}

/* Indicators spostati sotto */
.carousel .carousel-indicators.indicators-below[b-1olpuhd0da] {
    position: static;
    margin: 12px 0 0 0;
    justify-content: center;
}

    /* Indicatori visibili su sfondo chiaro */
    .carousel .carousel-indicators.indicators-below [data-bs-target][b-1olpuhd0da] {
        background-color: #888;
    }

    .carousel .carousel-indicators.indicators-below .active[b-1olpuhd0da] {
        background-color: #111;
    }

/* Controlli frecce */
.carousel-control-prev-icon[b-1olpuhd0da],
.carousel-control-next-icon[b-1olpuhd0da] {
    filter: invert(1);
}
/* _content/Web/Components/Shared/ContactForm.razor.rz.scp.css */
:host[b-8jiwkadg1v] {
    font-size: 12px; /* più piccolo di prima */
    line-height: 1.3;
    color: #222;
}

/* Griglia */
.form-grid[b-8jiwkadg1v] {
    display: grid;
    gap: 6px;
    max-width: 80%;
    margin: 0 auto;
}

.form-row[b-8jiwkadg1v] {
    display: grid;
    gap: 3px;
}

    /* Etichette */
    .form-row label[b-8jiwkadg1v] {
        font-size: 0.78rem;
        font-weight: 300; /* sottile */
        color: #333;
    }

/* Campi input e textarea */
.input[b-8jiwkadg1v],
.textarea[b-8jiwkadg1v] {
    font-size: 0.8rem; /* più piccoli */
    font-weight: 300; /* testo thin */
    line-height: 1.2;
    padding: 3px 5px; /* meno padding */
    border: 1px solid #ccc;
    border-radius: 2px;
    background: #fff;
    min-height: 24px; /* più compatti */
    box-sizing: border-box;
}

/* Textarea minimal */
.textarea[b-8jiwkadg1v] {
    min-height: 70px;
    resize: vertical;
}

    /* Placeholder sottili */
    .input[b-8jiwkadg1v]::placeholder,
    .textarea[b-8jiwkadg1v]::placeholder {
        font-size: 0.75rem;
        font-weight: 300;
        opacity: 0.6;
    }

    /* Focus */
    .input:focus[b-8jiwkadg1v],
    .textarea:focus[b-8jiwkadg1v],
    .btn:focus[b-8jiwkadg1v] {
        outline: 1px solid #7ab8d8;
        outline-offset: 1px;
    }

/* Checkbox */
.checkbox-row[b-8jiwkadg1v] {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .checkbox-row input[type="checkbox"][b-8jiwkadg1v] {
        width: 13px;
        height: 13px;
    }

    .checkbox-row label[b-8jiwkadg1v] {
        font-size: 0.75rem;
        font-weight: 300;
    }

/* Azioni */
.actions[b-8jiwkadg1v] {
    margin-top: 5px;
}

/* Pulsante */
.btn[b-8jiwkadg1v] {
    width: 100%;
    padding: 7px 0;
    border: none;
    border-radius: 0;
    background: #52A7D2;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
}

    .btn[disabled][b-8jiwkadg1v] {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* Messaggi */
.success[b-8jiwkadg1v],
.error[b-8jiwkadg1v] {
    font-size: 0.75rem;
    font-weight: 300;
}

.success[b-8jiwkadg1v] {
    color: #1a7f37;
}

.error[b-8jiwkadg1v] {
    color: #b3261e;
}

/* Mobile */
@media (max-width: 420px) {
    :host[b-8jiwkadg1v] {
        font-size: 11.5px;
    }

    .form-grid[b-8jiwkadg1v] {
        gap: 5px;
    }

    .btn[b-8jiwkadg1v] {
        padding: 6px 0;
        font-size: 0.8rem;
    }
}

/* _content/Web/Components/Shared/GoogleMap.razor.rz.scp.css */
.mapSize[b-r9qmbc43ex] {
    width: 100%;
    height: 320px;
}

.myMap[b-r9qmbc43ex] {
    width: 100%;
    height: 480px;
    border: 0;
    padding: 0;
    margin: 0;
}
.rectSize[b-r9qmbc43ex] {
    height: 480px;
    width: calc(100% - 20px);
    margin-right: 20px;
    box-sizing: border-box;
}

@media (max-width: 1000px) {
    .mapSize[b-r9qmbc43ex] {
        height: calc(100vh - 296px);
    }
}


@media (min-width: 1001px) {
    .mapSize[b-r9qmbc43ex] {
        height: calc(100vh - 148px);
    }
}



/*---- google map ----*/

[b-r9qmbc43ex] .map-popup {
    box-sizing: border-box;
    width: 380px;
    min-width: 380px;
    max-width: none;
    padding: 6px 8px;
    line-height: 1.25;
    font-size: 16px;
    overflow: hidden;
}

[b-r9qmbc43ex] .gm-style-iw,
[b-r9qmbc43ex] .gm-style-iw-d {
    width: 380px !important;
    min-width: 380px !important;
    max-width: none !important;
    overflow: hidden !important;
}

[b-r9qmbc43ex] .map-company {
    font-family: "nunito";
    font-weight: 800;
    font-size: 26px;
    line-height: 1.1;
}

[b-r9qmbc43ex] .map-data,
[b-r9qmbc43ex] .map-title {
    font-family: "nunito";
    font-size: 14px;
}

[b-r9qmbc43ex] .map-data {
    font-weight: 300;
    padding: 2px 0;
}

[b-r9qmbc43ex] .map-title {
    font-weight: 600;
}
/* _content/Web/Components/Shared/ProductCarousel.razor.rz.scp.css */
/* Slide immagini */
.carousel-item img[b-1cwlrnwz7x] {
    width: auto;
    max-width: 100%;
    object-fit: contain; /* mantiene proporzioni */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Didascalia sotto l'immagine */
.caption-below[b-1cwlrnwz7x] {
    background: #f1f3f5; /* grigio chiaro */
    color: #333;
    padding: 12px 14px;
    width: 100%;
    margin-top: 8px; /* distacco dall’immagine */
    text-align: center;
    border-radius: 0; /* spigoli vivi */
    font-size: 18px; /* più grande */
    font-weight: 700; /* grassetto */
    font-family: 'Nunito', sans-serif;
    line-height: 1.5;
}

/* Indicators spostati sotto */
.carousel .carousel-indicators.indicators-below[b-1cwlrnwz7x] {
    position: static;
    margin: 12px 0 0 0;
    justify-content: center;
}

    /* Indicatori visibili su sfondo chiaro */
    .carousel .carousel-indicators.indicators-below [data-bs-target][b-1cwlrnwz7x] {
        background-color: #888;
    }

    .carousel .carousel-indicators.indicators-below .active[b-1cwlrnwz7x] {
        background-color: #111;
    }

/* Controlli frecce */
.carousel-control-prev-icon[b-1cwlrnwz7x],
.carousel-control-next-icon[b-1cwlrnwz7x] {
    filter: invert(1);
}
/* _content/Web/Components/Shared/ProductStrip.razor.rz.scp.css */
.strip[b-ey6djmlwcr] {
    display: grid;
    grid-template-columns: 260px 1fr; /* immagine fissa + contenuto fluido */
    gap: 8px;
    align-items: center; /* centra verticalmente l’immagine */
    padding: 4px 0;
}

    .strip + .strip[b-ey6djmlwcr] {
        margin-top: 24px; /* distanza tra righe */
    }

/* Inversione immagine/testo (facoltativa) */
.strip--reverse[b-ey6djmlwcr] {
    grid-template-columns: 260px 1fr;
}

    .strip--reverse .strip__media[b-ey6djmlwcr] {
        order: 0;
    }

    .strip--reverse .strip__content[b-ey6djmlwcr] {
        order: 0;
    }

/* Media (immagine) */
.strip__media img[b-ey6djmlwcr] {
    width: 100%;
    height: 140px; /* altezza coerente tra voci */
    object-fit: contain; /* mantieni proporzioni */
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.05));
}

/* Box di testo “pannello chiaro” */
.strip__content[b-ey6djmlwcr] {
    background: #f5f7f8; /* grigio chiaro simile allo shot */
    border-radius: 0px; /* ammorbidito (regolabile) */
    padding: 12px 14px;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

/* Titolo grande maiuscolo, tracking leggero */
.strip__title[b-ey6djmlwcr] {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #425a64; /* grigio/blu come in figura */
}

/* Paragrafo descrittivo */
.strip__text[b-ey6djmlwcr] {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Responsività: sotto 860px vai a colonna */
@media (max-width: 860px) {
    .strip[b-ey6djmlwcr], .strip--reverse[b-ey6djmlwcr] {
        grid-template-columns: 1fr;
    }

    .strip__media img[b-ey6djmlwcr] {
        height: 160px;
        justify-self: start; /* allinea a sinistra l’immagine */
    }
}
