.c_loaderLines__c97 {
    height: 100%;
    max-width: 100%;
}
.c_loaderLines__c97 > * {
    margin-bottom: calc(var(--ring-unit) * 2);
    overflow: hidden;
}

.c_container__c03 {
    overflow: hidden;
    display: flex;
    flex-direction: row;
}
.c_waveAnimated__b39 {
    transition: width 0.6s ease;
    position: relative;
    z-index: 1;
}
.c_line__fbe {
    height: 11px;
    background-color: var(--ring-secondary-color);
    opacity: 0.2;
    border-radius: var(--ring-border-radius);
}
.c_waveAnimated__b39::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    animation: c_wave-animation__f0d 2000ms linear infinite;
    opacity: 0.7;
    background-image: linear-gradient( to right, rgba(255, 255, 255, 0), var(--ring-content-background-color), rgba(255, 255, 255, 0) );
    background-repeat: no-repeat;
    content: "";
}

@keyframes c_wave-animation__f0d {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

.c_waveAnimated__b39 {
    transition: width 0.6s ease;
    position: relative;
    z-index: 1;
}

.c_waveAnimated__b39::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    animation: c_wave-animation__f0d 2000ms linear infinite;
    opacity: 0.7;
    background-image: linear-gradient(
            to right,
            rgba(255, 255, 255, 0),
            var(--ring-content-background-color),
            rgba(255, 255, 255, 0)
    );
    background-repeat: no-repeat;
    content: "";
}

.c_container__c03 {
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.c_line__fbe {
    height: 11px;
    background-color: var(--ring-secondary-color);
    opacity: 0.2;
    border-radius: var(--ring-border-radius);
}

.c_line__fbe:not(:last-child) {
    margin-right: var(--ring-unit);
}