/* Verstecke nur Form-Labels für Selects, nicht für Checkboxen */
#iue-sp-product-form--suitabilities label.uk-form-label,
#iue-sp-product-form--categories label.uk-form-label {
    display: none !important;
}

/* Nachhaltigkeits-Checkbox-Label explizit sichtbar machen */
#iue-sp-product-form--suitabilities label:not(.uk-form-label),
#iue-sp-product-form--categories label:not(.uk-form-label) {
    display: block !important;
}

/* Alternative für bessere Spezifität */
#iue-sp-product-form__sustainability {
    margin-right: 8px;
}

#iue-sp-product-form__sustainability + span,
label:has(#iue-sp-product-form__sustainability) {
    display: inline-block !important;
}

/* GTranslate Schutz für Kategorien-Selects */
.notranslate {
    /* Verhindert Google Translate Übersetzung */
}

.notranslate option {
    /* Verhindert Übersetzung der Option-Texte */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#iue-sp-product-form__counter {
    display: inline-block;
    margin-right: 0.25em;
}
#spinner {
    box-sizing: border-box;
    display: block;
    width: 0.8em;
    height: 0.8em;
    border: 0.15em solid #ffffff;
    border-bottom-color: transparent;
    border-radius: 100%;
    animation: spin 1s infinite ease-in-out;
}