/* Visually hidden text for screen readers */
.bys-groups-loading {
    min-width: 3rem;

    span {
        display: inline-block;
        height: 0.85em;
        border-radius: 0.25rem;
        width: 100%;
        background: linear-gradient(90deg, #e8e8e8 25%, #f2f2f2 50%, #e8e8e8 75%);
        background-size: 200% 100%;
        animation: bys-shimmer 1.4s infinite linear;
    }
}

@keyframes bys-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}