.loadingContainer {
    max-width: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    transition: .3s ease;
}

.loadingContainerVisible {
    max-width: none;
    max-height: none;
    visibility: visible;
    opacity: 1;
    padding-left: 10px;
}

.loadingWrapper {
    justify-content: space-around;
    display: flex;
    width: 30px;
    height: 25px;
}

.loadingWrapperBig {
    width: 60px;
    height: 50px;
}

.loadingBall {
    border-radius: 50%;
    width: 8px;
    height: 8px;
    transform-origin: 50% 100%;
    animation: bounce1 1s linear infinite;
    background: #FFFFFF;
}

.loadingBallPrimary {
    background: var(--primary-color);
}

.loadingWrapperBig > .loadingBall {
    width: 15px;
    height: 15px
}

.loading__b {
    animation-delay: 0.1s;
}
.loading__c {
    animation-delay: 0.2s;
}

@keyframes bounce1 {
    from, to {
        transform: translateY(0) scale(1, 1);
        animation-timing-function: ease-in;
    }
    45% {
        transform: translateY(12px) scale(1, 1);
        animation-timing-function: linear;
    }
    50% {
        transform: translateY(12px) scale(1.5, 0.5);
        animation-timing-function: linear;
    }
    55% {
        transform: translateY(12px) scale(1, 1);
        animation-timing-function: ease-out;
    }
}