/* /Components/Layout/MainLayout.razor.rz.scp.css */
:root[b-66bwyis3zx] {
    --primary-blue: #11aeef;
    --footer-bg: #1a1a2e;
}

.page[b-66bwyis3zx] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-66bwyis3zx] {
    flex: 1;
}

.sidebar[b-66bwyis3zx] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.navbar[b-66bwyis3zx] {
    padding: 0.5rem 0;
    min-height: 70px;
}

.top-row[b-66bwyis3zx] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-66bwyis3zx]  a, .top-row .btn-link[b-66bwyis3zx] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-66bwyis3zx] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* --- FOOTER STILE PRO --- */
footer[b-66bwyis3zx] {
    background-color: var(--footer-bg);
    color: #fff;
    padding: 70px 0 30px;
    font-size: 0.95rem;
}

.footer-col[b-66bwyis3zx] {
    margin-bottom: 30px;
}

.footer-title[b-66bwyis3zx] {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

    /* Linea azzurra sotto il titolo */
    .footer-title[b-66bwyis3zx]::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background-color: #11aeef;
        border-radius: 2px;
    }

.footer-links li[b-66bwyis3zx] {
    margin-bottom: 12px;
}

.footer-links a[b-66bwyis3zx] {
    color: #cccccc;
    transition: color 0.3s ease;
}

    .footer-links a:hover[b-66bwyis3zx] {
        color: var(--primary-blue);
        text-decoration: none;
    }

/* Pulsanti Store */
.app-btn[b-66bwyis3zx] {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #666;
    border-radius: 8px;
    padding: 8px 15px;
    margin-bottom: 15px;
    color: #fff;
    width: fit-content;
    min-width: 160px;
    transition: all 0.3s ease;
}

    .app-btn:hover[b-66bwyis3zx] {
        border-color: #fff;
        background-color: rgba(255,255,255,0.1);
    }

    .app-btn i[b-66bwyis3zx] {
        font-size: 1.8rem;
        margin-right: 12px;
    }

.app-text[b-66bwyis3zx] {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

    .app-text span:first-child[b-66bwyis3zx] {
        font-size: 0.7rem;
    }

    .app-text span:last-child[b-66bwyis3zx] {
        font-size: 1rem;
        font-weight: 700;
    }

/* Sezione Inferiore PRO */
.footer-divider-box[b-66bwyis3zx] {
    position: relative;
    text-align: center;
    border-top: 1px solid #333;
    /* margin-top: 40px; */
    padding-top: 30px;
    /* margin-bottom: 20px; */
}

.footer-pro-logo[b-66bwyis3zx] {
    background-color: var(--footer-bg);
    padding: 0 15px;
    position: relative;
    top: -45px; /* Sposta il logo sopra la linea */
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
}

    .footer-pro-logo img[b-66bwyis3zx] {
        height: 40px; /* Altezza fissa per renderlo visibile */
        width: auto; /* Mantiene le proporzioni */
    }

    .footer-pro-logo i[b-66bwyis3zx] {
        margin-right: 5px;
    }

.legal-text[b-66bwyis3zx] {
    color: #777;
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
}

.bottom-bar[b-66bwyis3zx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 0px solid #333; /* Rimosso bordo extra */
    color: #aaa;
    font-size: 0.9rem;
}

.social-icons a[b-66bwyis3zx] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    margin-left: 10px;
    transition: 0.3s;
}

    .social-icons a:hover[b-66bwyis3zx] {
        background-color: var(--primary-blue);
    }

a[b-66bwyis3zx] {
    text-decoration: none;
    color: inherit;
}

ul[b-66bwyis3zx] {
    list-style: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-text-col[b-66bwyis3zx] {
        text-align: center;
        margin-bottom: 40px;
    }

    .nav-links[b-66bwyis3zx] {
        display: none;
    }

    .showcase-flex[b-66bwyis3zx], .showcase-flex.reverse[b-66bwyis3zx] {
        flex-direction: column;
        text-align: center;
    }

    .bottom-bar[b-66bwyis3zx] {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {

    .top-row a[b-66bwyis3zx] {
        margin-left: 0px;
    }
}

/*@media (max-width: 640.98px) {
    .top-row:not(.auth) {
        display: none;
    }

    .top-row.auth {
        justify-content: space-between;
    }

    .top-row a, .top-row .btn-link {
        margin-left: 0;
    }
}*/

@media (min-width: 641px) {
    .page[b-66bwyis3zx] {
        flex-direction: row;
    }

    .sidebar[b-66bwyis3zx] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    /*.top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }*/
}

@media only screen and (max-width: 1050px) {
    .lists[b-66bwyis3zx] {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .margin-lists[b-66bwyis3zx] {
        margin-bottom: 2rem;
    }

    .list-container[b-66bwyis3zx] {
        padding-top: 10% !important;
        width: 75% !important;
    }
}

@media only screen and (max-width: 450px) {
    .gestore[b-66bwyis3zx] {
        display: none !important;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-pjbb859g0g] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-pjbb859g0g] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-pjbb859g0g] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-pjbb859g0g] {
    font-size: 1.1rem;
}

.bi[b-pjbb859g0g] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-pjbb859g0g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-pjbb859g0g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-pjbb859g0g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-pjbb859g0g] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-pjbb859g0g] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-pjbb859g0g] {
        padding-bottom: 1rem;
    }

    .nav-item[b-pjbb859g0g]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-pjbb859g0g]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-pjbb859g0g]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-pjbb859g0g] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-pjbb859g0g] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-pjbb859g0g] {
        display: none;
    }

    .nav-scrollable[b-pjbb859g0g] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/Dettaglio.razor.rz.scp.css */
@media (min-width: 1000px) {
    #carosello-immagini[b-vt2iz0bje9] {
        display: none;
    }

    .container-servizi-luogo[b-vt2iz0bje9] {
        display: flex;
        flex-direction: row;
    }

        .container-servizi-luogo > div[b-vt2iz0bje9] {
            width: 50%;
        }
}

@media (max-width: 1000px) {
    #periodo[b-vt2iz0bje9] {
        width: 100% !important;
    }

    .grid-container[b-vt2iz0bje9] {
        display: none;
    }

    .titolo2[b-vt2iz0bje9] {
        font-size: 1.3rem;
    }

    .sottotitolo[b-vt2iz0bje9] {
        font-size: 0.9rem;
    }

    .container[b-vt2iz0bje9] {
        margin-top: 0rem !important;
    }

    .carousel-item[b-vt2iz0bje9] {
        background-size: 100% 100%;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat;
    }

    .container-servizi-luogo[b-vt2iz0bje9] {
        display: flex;
        flex-direction: column;
    }

        .container-servizi-luogo > div[b-vt2iz0bje9] {
            width: 100%;
        }
}
/* /Components/Pages/Ricerca.razor.rz.scp.css */
@media (max-width: 991px) {
    #collapsibleDiv[b-ora524uas7] {
        display: none;
    }

    #toggleButton[b-ora524uas7] {
        display: inline-block;
    }

    .ricercaMobile[b-ora524uas7] {
        display: block;
    }

    #ricercaCompleta[b-ora524uas7] {
        display: none ;
    }
}

@media (min-width: 992px) {
    #toggleButton[b-ora524uas7] {
        display: none !important;
    }

    .ricercaMobile[b-ora524uas7] {
        display: none !important;
    }

    #ricercaCompleta[b-ora524uas7] {
        display: block;
    }
}
