.alignwide {
    /* Set these margins to work with your own theme. */
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    width: 100%;
}

.alignfull {
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    max-width: 100vw;
}

.alignfull img {
    width: 100vw;
}

/* AREA RISERVATA */

/*HELPER CLASSES*/
.d-none {
    display: none !important;
}

.loader-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 1.5rem 0;
}

.loader {
    /* Dimensioni del loader */
    width: 40px;
    height: 40px;

    /* Crea l'effetto cerchio con un bordo grigio chiaro */
    border: 4px solid #f3f3f3;

    /* Colora solo il bordo superiore per creare lo "spicchio" che gira */
    border-top: 4px solid var(--trebax);

    /* Rende il div perfettamente rotondo */
    border-radius: 50%;

    /* Applica l'animazione: nome, durata, andamento fluido, cicli infiniti */
    animation: spin 1s linear infinite;

    /* Opzionale: lo centra nella pagina o nel contenitore */
    margin: 20px auto;
}

/* Definizione del movimento di rotazione */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* NUOVA GESTIONE */

#lista-clienti {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-y: auto;
    min-height: 0;
    scrollbar-gutter: stable;
    scrollbar-width: auto;
}

#lista-clienti::-webkit-scrollbar {
    width: 11px;
}

#lista-clienti::-webkit-scrollbar-thumb {
    background: #9C9C9C;
    border-radius: 21px;
}

#lista-clienti::-webkit-scrollbar-track {
    background: #D9D9D9;
}

#nome-cliente h6 {
    font-size: 36px;
    font-style: normal;
    font-weight: 716;
    line-height: 48px;
    /* 133.333% */
    letter-spacing: -1.44px;
}

#nome-cliente p {
    color: var(--bricks-color-kekfft);
    font-family: Karla;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    margin: 0;
}

#lista-stampi a[data-articoli]:hover {

    box-shadow: inset 7px 0 0 0 var(--trebax);
    cursor: pointer;
}

#lista-stampi a[data-articoli] p {
    font-family: Karla;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.64px;
    margin: 0;
}

#lista-stampi-wrapper .brx-grid> :first-child {
    justify-self: start;
}

.accorion-titolo-ordine {
    background: repeating-linear-gradient(to bottom,
            #999 0 6px,
            /* trattino */
            transparent 6px 12px
            /* spazio */
        );
}

#lista-ordini [data-ordini].brx-open .numero-ordine,
#lista-ordini [data-ordini] .numero-ordine:hover {
    box-shadow: inset 7px 0 0 0 var(--trebax);
}

#lista-ordini [data-ordini].brx-open .accorion-titolo-ordine {
    border-left: 0;
}

#lista-ordini [data-ordini].brx-open .accorion-titolo-ordine div {
    background-color: var(--bricks-color-koekkv);
}

#lista-ordini [data-ordini].brx-open>.accordion-content-wrapper {
    border-right: 1px solid var(--bricks-color-kekfft);
    border-bottom: 1px solid var(--bricks-color-kekfft);
}

.info-ordine>div:first-of-type {
    background: repeating-linear-gradient(to bottom,
            #999 0 6px,
            /* trattino */
            transparent 6px 12px
            /* spazio */
        );
}

.info-ordine>div:first-of-type>div {
    background-color: #ffffff;
    justify-self: stretch;
    padding: 15px 0;
    text-align: center;
}

.info-ordine>div:first-of-type>div:nth-child(1) {
    box-shadow: inset 7px 0 0 0 rgba(194, 26, 74, 0.5);
}

.schemi-parti,
.schemi-parti .accordion-content-wrapper {
    box-shadow: inset 7px 0 0 0 var(--bricks-color-iituuq);
}

.accordion-schemi-parti .brx-open .accordion-title-wrapper {
    background-color: var(--bricks-color-koekkv);
    box-shadow: inset 7px 0 0 0 black;
}