@font-face {
    font-family: "Altro Grotesk";
    src: local("Altro-Grotesk-Regular"),
    local("Altro Grotesk Regular"),
    url("./fonts/Woff2/Altro-Grotesk-Regular.woff2") format("woff2"),
    url("./fonts/Woff/Altro-Grotesk-Regular.woff") format("woff"),
    url("./fonts/Ttf/Altro-Grotesk-Regular.ttf") format("truetype"),
    url("./fonts/Otf/Altro-Grotesk-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


body {
    font-family: "Altro Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

#config_sidebar, .fixed_panel, .subtitle.selected + .subpanel, .window, .button, button, input[type="submit"] {
    background-color: transparent;

    border: unset;
    /*545454;*/
}

body, html {
    /*font-family: "Inter", sans-serif;*/
}

#titolo {
    color: #333;
}

h2, h3 {
    /*color: var(--maincolor);*/
    font-weight: 400;
}

#panel_finitura .modello-cascade__row, #panel_finitura_tappo .modello-cascade__row {
    border-bottom: unset;
    /*gap: unset;*/

    .menu-button {
        flex-basis: 0;
    }
}

#panel_finitura .menu-button::after, #panel_finitura_tappo .menu-button::after {
    background: unset;
    width: 0;
    flex: 0;
}

#panel_finitura .subpanel, #panel_finitura_tappo .subpanel {
    gap: 1em;
    padding-top: 0;
    padding-bottom: 2em;
}

#panel_finitura .item .item-image, #panel_finitura_tappo .item .item-image {
    /*transform: scale(1.1);*/
    background-color: transparent;

    /*margin: 1em auto;*/
}

.item {
    text-transform: capitalize;
}


.item .item-image {
    display: block;
    width: 100%;
    max-width: 120px;
    /*padding-bottom:100%;*/
    aspect-ratio: 1/1;
    transition: all 0.25s ease;
    /*border: solid 1px black;*/
    /*border-radius: 5%;*/
    /*border: solid 3px var(--webglbackground);*/
    background-color: rgba(255, 255, 255, 0.1);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    /*margin: 0 auto 5px;*/
}


.item:not(.item-value) {
    flex-basis: 20%;
    flex-basis: calc(25% - 1em);
    /*align-items: center;*/

}


.button, button, input[type="submit"] {
    font-weight: 500;
}

.button:hover, button:hover, input[type="submit"]:hover {
    /*color: #474747;*/

    /*color: var(--maincolor);*/
    /*border-color: var(--maincolor);*/
    /*background-color: rgba(0, 0, 0, 0.3);*/
    /*box-shadow: 0 0 0 2px rgba(255, 213, 0, 0.18);*/

    font-weight: 700;
}

.item .item-text {
    width: fit-content;
    font-size: 1.1em;
}

.item.selected .item-text {
    /*color: var(--maincolor);*/
    /*underline*/
    /*border-bottom: 1px solid var(--color);*/
}

.item.selected .item-image {
    border: unset;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.8em 1.2em 0.8em 2em; /* spazio extra a sinistra */
    background: rgba(255, 255, 255, 0.2);
    color: var(--maincolor);
    cursor: pointer;
    transition: all 0.3s ease;
    /* From https://css.glass */

    /*box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);*/
    backdrop-filter: blur(3.5px);
    -webkit-backdrop-filter: blur(3.5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1em;

}


/* Quando diventa selected: visibile e ruotato */
.item.selected::before {
    opacity: 1;
    transform: translateY(-50%) rotate(90deg) scale(1);
}


.closex, .closen {
    /*color: var(--maincolor);*/
}

.closex:hover {
    transform: rotate(90deg);
    transform-origin: center;
    background-color: transparent;

}

#qrcode_slot {
    padding: 2em;
}

#credits {
    color: #000;
    text-shadow: 1px 1px #cacaca;
    /*font-weight: 400;*/

}

#credits a:hover {
    color: #e63027;

}


.items_list .item {
    width: 100%;
}

/* ============================
   MODELLO CASCADE (NEW UI)
   ============================ */

:root {
    /* piccole utility “di design” senza cambiare palette */
    --ui-surface: rgba(127, 127, 127, 0.10);
    --ui-border: #3a3a3a;
    --ui-border-strong: #3a3a3a;
    --ui-text-soft: rgba(255, 255, 255, 0.75);
}

/* contenitore */
.modello-cascade {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
    padding: 0vh 1vh;
    /*border-bottom: solid 1px rgba(127, 127, 127, 0.5);*/
}

/* label coerente: già uppercase dal tuo CSS */
.modello-cascade__label {
    margin: 0;

}

.modello-cascade__text {
    display: inline;
    font-size: 0.85em;
    /*letter-spacing: 0.08em;*/
    color: var(--ui-text-soft);
    /*margin-bottom: 0.35em;*/
    font-family: var(--boldsize);
}

/* input/select style: coerente coi tuoi input base ma più “premium” */
.modello-cascade__search,
.modello-cascade__select {
    width: 100%;
    margin: 0;
    /*padding: 0.75em 1em;*/
    border-radius: var(--borderradius);
    background-color: var(--background);

    border: 1px solid var(--ui-border);
    color: var(--secondarycolor);
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

/* focus ring: giallo, ma non aggressivo */
.modello-cascade__search:focus,
.modello-cascade__select:focus {
    /*border-color: var(--maincolor);*/
    /*box-shadow: 0 0 0 2px rgba(255, 213, 0, 0.20);*/
}

/* placeholder */
.modello-cascade__search::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

/* stati disabled: ATTENZIONE al tuo CSS globale che fa display:none su [disabled] */
.modello-cascade__select[disabled] {
    /* neutralizza la tua regola globale [disabled]{display:none} senza rompere altrove */
    display: inline-block !important;
    opacity: 0.35 !important;
    pointer-events: none;
}


/* ============================
   SUGGESTIONS DROPDOWN
   ============================ */

.modello-cascade__suggestions {
    position: relative;
    cursor: pointer;
}

.modello-cascade__suggestions-list {
    list-style: none;
    margin: 0.35em 0 0;
    padding: 0.35em 0;

    max-height: 240px;

    .modello-cascade__suggestion:hover {
        font-weight: var(--boldsize);
    }

}

/* bottone suggestion */
.modello-cascade__suggestion-btn {
    width: 100%;
    text-align: left;
    padding: 0.65em 1em;
    margin: 0;
    background: transparent;
    border: 0;
    color: var(--secondarycolor);
    text-transform: none; /* qui meglio leggibile */
    letter-spacing: 0;
    font-weight: 500;
    cursor: pointer;
    position: relative;

}


.modello-cascade__suggestion-btn {
    padding-left: 2.2em; /* spazio per quadratino */
}

/* hover/focus */
.modello-cascade__suggestion-btn:hover,
.modello-cascade__suggestion-btn:focus {
    background-color: var(--background);

    outline: none;
}


/* ============================
   PROXY LEGACY (sempre invisibile)
   ============================ */
.item.is-proxy {
    display: none !important;
}


/* ============================
   MODELLO CASCADE (FIX VISIBILITA')
   ============================ */

/* 1) Contenitore: eredita il dark dalla fixed_panel ma rendiamo leggibile */
.fixed_panel.modello-cascade {
    color: var(--color);
}

/* riga / testo */
.modello-cascade__row {
    width: 100%;
    position: relative;
    border-bottom: 1px solid var(--ui-border-strong);
    font-size: 1.1em;
    line-height: 1.1em;

}

.modello-cascade__text {
    display: block;
    /*margin-bottom: 0.35em;*/
    color: var(--color);
    /*font-size: 0.85em;*/
    /*letter-spacing: 0.08em;*/
    font-weight: var(--boldsize);
    font-size: 1.1em;

}

/* 2) Input + Select scuri */
.modello-cascade__search,
.modello-cascade__select {
    width: 100%;
    margin-top: -0.1em;
    /*margin: 0.2em 0 1em 0;*/
    /*padding: 0.75em 1em;*/
    background-color: var(--background);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--color);
    border-radius: var(--borderradius);
    font-size: .9em;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

/* placeholder */
.modello-cascade__search::placeholder {
    color: #adadac;
    font-size: 1.1em;
    line-height: 14.52px;
}

/* focus: accento giallo */
.modello-cascade__search:focus,
.modello-cascade__select:focus {
    /*border-color: var(--maincolor);*/
    /*box-shadow: 0 0 0 2px rgba(255, 213, 0, 0.18);*/
    background-color: var(--background);

}

/* 3) Select: normalizza look cross-browser + freccia custom */
.modello-cascade__select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    padding-right: 2.5em; /* spazio freccia */
    cursor: pointer;
}

/* freccia (usiamo pseudo-elemento sul wrapper .modello-cascade__row) */
.modello-cascade__row:has(> .modello-cascade__label > .modello-cascade__select)::after {
    content: "";
    position: absolute;
    right: 1em;
    top: 2.5em; /* allinea con il select sotto lo span label */
    width: 0.55em;
    height: 0.55em;
    border-right: 2px solid rgba(255, 255, 255, 0.55);
    border-bottom: 2px solid rgba(255, 255, 255, 0.55);
    transform: rotate(45deg);
    pointer-events: none;
}

/* Safari/vecchi browser senza :has: -> fallback semplice (freccia dentro select nativa) */
@supports not selector(:has(*)) {
    /* niente freccia custom */
}

/* 4) IMPORTANTISSIMO: nel tuo CSS globale [disabled] nasconde gli elementi.
      Qui lo neutralizziamo SOLO per i select del cascade. */
.modello-cascade__select[disabled] {
    display: inline-block !important;
    opacity: 0.35 !important;
    pointer-events: none;
}

/* se vuoi anche mantenere visibile il wrapper quando disabilitato */
.js-serie-wrap[style*="display:none"],
.js-model-wrap[style*="display:none"] {
    /* lasciamo il tuo controllo JS: qui non tocchiamo */
}

/* 5) Suggestions dropdown: leggibile su fondo scuro */
.modello-cascade__suggestions {
    position: relative;
}


.modello-cascade__suggestion-btn {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--secondarycolor);

    text-align: left;
    padding: 0.65em 1em 0.65em 2.2em;
    margin: 0;

    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}


.modello-cascade__suggestion-btn:hover,
.modello-cascade__suggestion-btn:focus {
    background: rgba(0, 0, 0, 0.3);
    outline: none;
    color: var(--secondarycolor);
}


/* 6) Proxy legacy: sempre invisibile */
.item.is-proxy {
    display: none !important;
}

.modello-cascade__hint {
    margin: 0.25em 0 0.75em;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9em;
}

select option {
    /*margin: 40px;*/
    background: rgb(71 71 71);
    color: #FAFAF5;
    /*text-shadow: 0 8px 0 rgba(0, 0, 0,  1);*/
}

/* ============================
   PANEL INFO (RIEPILOGO SELEZIONE)
   ============================ */

#panel_info {
    /*padding: 3vh 2vh 1em 2vh;*/
    padding: 0 2vh;
    display: flex;
    flex-direction: column;
    gap: 0.35em;

    .modello-cascade__row {
        border-bottom: unset;

    }

    .menu-button {
        cursor: auto;
    }


}

#panel_info h2 {
    color: var(--maincolor);
}


/* Collezione + Serie: piccoli e neutri */
#panel_info span {
    margin: 0;
    /*color: rgba(255, 255, 255, 0.70);*/

    /*color: var(--maincolor);*/


    /*text-transform: uppercase;*/
    /*letter-spacing: 0.08em;*/
    /*font-size: 0.90em;*/
    font-size: 1em;
    line-height: 1.5;
}

#panel_info #slot_collezione,
#panel_info #slot_serie {
    /*color: rgba(255, 255, 255, 0.5);*/
}


/*#panel_info #slot_collezione {*/
/*    font-size: 0.65em;*/
/*}*/

#panel_info #slot_modello {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: clamp(1.4rem, 2.2vw, 2.1rem);
    padding: 0.25em 0;
}

/*logo sidebar*/
#logo-sidebar {
    text-align: left;
    /*padding: 1em 2em ;*/
    /*padding: 2vh ;*/
    /*2vh 1vh 2vh;*/
}

#logo-sidebar img {
    margin: 0;

}


/* Clear (X) custom stile “dark square + chevron-like stroke” */
.modello-cascade__search::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;

    width: 22px;
    height: 22px;
    cursor: pointer;

    border-radius: 3px; /* leggero, come nello screen */
    opacity: .6;

    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 7 L17 17 M17 7 L7 17' stroke='%23bdbdbd' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.modello-cascade__search::-webkit-search-cancel-button:hover {
    opacity: 1;
}

.modello-cascade__search::-webkit-search-cancel-button:active {
    transform: translateY(1px);
}

/* opzionale: se vuoi rimuovere anche le altre “decorazioni search” */
.modello-cascade__search::-webkit-search-decoration,
.modello-cascade__search::-webkit-search-results-button,
.modello-cascade__search::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
}

/* Assicura posizionamento tooltip */
#panel_finitura_tappo .item,
#panel_finitura .item {
    position: relative;
}

#panel_finitura_tappo .subpanel,
#panel_finitura .subpanel {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    /* margin: 0 0 1em; */
    /*padding: 2vh 2vh calc(2vh - 0.5em);*/
    /*padding: 0 2vh;*/
    gap: 1em;
}

/* Tooltip: appare su hover o selected */
#panel_finitura_tappo .item[data-name]::after,
#panel_finitura .item[data-name]::after {

    /*backdrop-filter: blur(10px);*/
    background: rgba(100, 100, 100, 0.5);
    /*background: rgb(255, 213,0, 0.5);*/

    content: attr(data-name);
    position: absolute;
    left: 50%;
    bottom: calc(100% - 4.5vh);
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 0.5em 1em;
    /*background: rgba(20,20,20,.8);*/
    border: 1px solid rgba(255, 255, 255, .12);
    color: #FAFAF5;
    text-shadow: 1px 1px 1px #000;
    font-size: 12px;
    letter-spacing: .02em;
    opacity: 0;
    pointer-events: none;
    transition: opacity .12s ease, transform .12s ease;
    z-index: 220;

}

#panel_finitura_tappo .item:hover,
#panel_finitura .item:hover {
    z-index: 5;
}

/* show */
#panel_finitura_tappo .item:hover::after,
#panel_finitura .item:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-35%);
}

#panel_finitura_tappo .item:hover::before,
#panel_finitura_tappo .item.selected::before,
#panel_finitura .item:hover::before,
#panel_finitura .item.selected::before {
    opacity: 1;
}

.modello-cascade__label {
    position: relative;
}

/* Prova a colorare anche le option (non sempre garantito ovunque) */
.modello-cascade__select option.is-no3d {
    color: rgba(255, 213, 0, 0.5);

}

.modello-cascade__row {
    display: flex;
    align-items: flex-start;
    /*justify-content: space-between;*/
    padding: 0.5em 0;
    gap: 1em;
    /*flex-basis: 33.3%;*/
    width: 100%;
    /*align-items: center;*/


}

.modello-cascade__label {
    flex-basis: 25%;
    max-width: 25%;
}

.modello-cascade__picker {
    flex-grow: 1;
    flex-basis: 33.3%;

    .item-value {
        font-size: 1.1em;
        padding: 0.1em 0;
        /*transition: all 1s ease-in-out;*/

    }
}

.menu-button {

    flex-basis: 10%;
    max-width: 10%;
    align-self: flex-start;
    justify-self: center;
    width: 10%;
    transition: background 1s ease-in-out;
    cursor: pointer;


    &::after {
        background: url("images/icons/plus.png");
        width: var(--width-icon);
        content: " ";
        display: block;
        aspect-ratio: 1;
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0 0 0 auto;


    }

    &.open::after {
        background: url("images/icons/minus.png");
        width: var(--width-icon);
        content: " ";
        display: block;
        aspect-ratio: 1;
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0 0 0 auto;
    }


}

#panel_info .menu-button::after {
    background: url("images/icons/right.png");
    width: var(--width-icon);
    content: " ";
    display: block;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 0 0 auto;
}


.search-button {
    flex-basis: 10%;
    align-self: flex-start;
    justify-self: center;
    width: 10%;
    cursor: pointer;

    &::after {
        background: url("images/icons/search.png");
        width: var(--width-icon);
        content: " ";
        display: block;
        aspect-ratio: 1;
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0 0 0 auto;


    }
}

.item-container {
    max-height: 150px;
    max-height: 125px;
    /*overflow-y: auto;*/
    overflow: auto;
    /* Firefox: nascosta di default */

}

* {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

/* Firefox: appare in hover */
*:not(.scroll):hover {
    scrollbar-color: var(--color) transparent; /* thumb | track */
}

/* WebKit (Chrome/Edge/Safari) */
*::-webkit-scrollbar {
    width: 10px; /* mantiene spazio costante: niente layout shift */
}

*::-webkit-scrollbar-track {
    background: transparent; /* track invisibile */
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
    background-color: transparent; /* invisibile di default */
    border-radius: 999px;

    /* pill-style anche quando è visibile */
    border: 3px solid transparent;
    background-clip: content-box;
}

/* Appare solo in hover */
*:not(.scroll):hover::-webkit-scrollbar-thumb {
    background-color: var(--color);
}

/* Facoltativo: un filo più “presente” quando trascini */
*:not(.scroll):hover::-webkit-scrollbar-thumb:active {
    border-width: 1px;
}

*:not(.scroll):hover::-webkit-scrollbar-track {
    background: var(--background);
}

*:not(.scroll):hover {
    scrollbar-color: var(--color) var(--background);
}

/* regole standard: solo browser che supportano davvero scrollbar-color */
@supports (scrollbar-color: auto) {
    * {
        scrollbar-width: thin;
        scrollbar-color: transparent transparent;
    }

    *:not(.scroll):hover {
        scrollbar-color: var(--color) var(--background);
    }
}

/* Safari (supporta scrollbar-width ma NON scrollbar-color) */
/*
@supports (scrollbar-width: thin) and not ( scrollbar-color: auto ) and selector ( ::-webkit-scrollbar ){
    * {
        scrollbar-width: none; !* nascosta di default *!
    }

    *:not(.scroll):hover {
        scrollbar-width: thin; !* appare in hover *!
    }

    *::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    *::-webkit-scrollbar-track {
        background: transparent;
        border-radius: 999px;
    }

    *::-webkit-scrollbar-thumb {
        background-color: transparent;
        border-radius: 999px;
        border: 3px solid transparent;
        background-clip: content-box;
    }

    *:not(.scroll):hover::-webkit-scrollbar-track {
        background: var(--background);
    }

    *:not(.scroll):hover::-webkit-scrollbar-thumb {
        background-color: var(--color);
    }

    *:not(.scroll):hover::-webkit-scrollbar-thumb:active {
        border-width: 1px;
    }

}
*/

/*ICONS BUTTONS*/

.image-icon,
.ar-icon {
    background: url("images/icons/down.png");
    width: var(--width-icon);
    content: " ";
    display: block;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-size: cover;
}

.ar-icon {
    background: url("images/icons/down.png");
    width: var(--width-icon);
    content: " ";
    display: block;
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(225deg);
}

.js-search-suggestions {
    /*display: flex;*/
    /*flex-direction: column;*/
}

.finture-text-container {

    /*display: flex;*/
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25em;

    #finitura, #finitura_tappo {
        /*display: inline-block;*/

        margin: 0;
        padding: 0;
        display: inline-block;
    }
}


.fixed_panel, #panel_info {

    padding: 0 0 0 2vh;
}


.panel-info__meta, .finture-text-container {
    font-size: 1.1em;
}

.modello-cascade__suggestion {
    font-size: 1.1em;
    line-height: 1.1em;

}

/*#config_sidebar{*/

/*    background: #fafaf54a;*/
/*    backdrop-filter: blur(3.5px);*/

/*}*/

/*@media (min-width: 1025px) {*/
/*    .configuring #config_graphics {*/
/*        width: 100%;*/
/*        left: 0%;*/
/*    }*/
/*}*/


#ar_info_panel, #qrcode_panel {
    background: var(--webglbackground);
}


@media (max-width: 1024px) {

    #logo_brand img, #logo-sidebar img {
        /*display: none;*/
        width: 50vw;
        max-height: unset;
        max-width: unset;
    }

    .fixed_panel {
        padding-top: 2em;
    }

    #collezione {
        padding-top: 1em;
    }

    .fixed_panel, #panel_info {
        padding: 0 2vh;
    }


    .subpanel .item {
        width: 20%;
        flex-basis: 20%;
    }


    #config_buttons {
        width: 100%;

    }

    .modello-cascade__row {
        /*padding:0.5em 1em 0.5em 0;*/
    }

    .scroll {
        gap: 1em;
    }


    .item-container {
         max-height: 125px;
        /*overflow: auto;*/
    }

    /*    .item-container {
            overflow-y: scroll !important;
        }*/
    .item-container {
        max-height: 200px;
    }

    #config_buttons {
        gap: 0;
    }
}

@media (max-width: 512px) {
    .item-container {
        max-height: 100px;

    }
}

@media (min-width: 1025px) {
    #logo_brand {
        display: none;
    }


}

#logo_brand {
    display: none;
}


#menu-selezione .item:not(.selected) {
    opacity: var(--opacity-not-selected);
}


/* LAYOUT VERTICALE */
@media (max-width: 1024px) {

    #configurator, #config_graphics {
        overflow-y: auto;
        overflow-x: hidden;
        position: relative;
        /*height: min-content;*/

    }

    #config_sidebar {
        /*transform: translateY(100%);*/
        height: 100%;
        position: relative;
        height: fit-content;

        .scroll {
            overflow: auto;
        }

    }

    #config_graphics {
        height: 50%;
        overflow: auto;
        overflow-x: hidden;
        /*position: relative;*/

    }

    #config_render {
        top: 0px;
        overflow: unset;
        height: stretch;

        position: absolute;
        left: 0;
        transform: translate(0, 0);
    }


    canvas {
        position: relative;
        height: 100%;


    }

    #config_buttons {
        display: none
    }


}

#panel_info {
    display: none !important;
}

.iframe-padding{
    padding-top: 4vh;
}

/* MOBILE: scroll della pagina intera, non dei contenitori interni */

/*



!* HTML: <div class="loader"></div> *!
#loader:before {
    width: 55px;
    aspect-ratio: 1;
    --g1:conic-gradient(from  90deg at 3px  3px ,#0000 90deg,#fff 0);
    --g2:conic-gradient(from -90deg at 22px 22px,#0000 90deg,#fff 0);
    background:var(--g1),var(--g1),var(--g1), var(--g2),var(--g2),var(--g2);
    background-size: 25px 25px;
    background-repeat: no-repeat;
    animation: l7 1.5s infinite;
    height: 55px;

}
@keyframes l7 {
    0%   {background-position:0    0   ,0 100%,100% 100% }
    25%  {background-position:100% 0   ,0 100%,100% 100% }
    50%  {background-position:100% 0   ,0 0   ,100% 100% }
    75%  {background-position:100% 0   ,0 0   ,0    100% }
    100% {background-position:100% 100%,0 0   ,0    100% }
}*/
