:root {
    --width: 20px;
    --height: 20px;
    --bounce_height: 40px;
}

.sidebarMobile_form__loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.sidebarMobile_form__text {
    display: inline-block;
    margin-left: .5em;
}

.sidebarMobile_form__bounceball {
    position: relative;
    display: inline-block;
    height: 37px;
    width: var(--width);
}
.sidebarMobile_form__bounceball:before {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    width: var(--width);
    height: var(--height);
    border-radius: 50%;
    background-color: var(--primary-color);
    transform-origin: 50%;
    animation: bounce 500ms alternate infinite ease;
}

@keyframes bounce {
    0% {
        top: var(--bounce_height);
        height: 5px;
        border-radius: 60px 60px 20px 20px;
        transform: scaleX(2);
    }
    35% {
        height: var(--height);
        border-radius: 50%;
        transform: scaleX(1);
    }
    100% {
        top: 0;
    }
}
