.loading-body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    border-radius: 4px;
    margin: 0;
    height:44px;
}
.loading-container {
    display: none;
    justify-content: center;
    align-items: center;
}
.dots {
    display: flex;
    padding:5px;
    justify-content: space-around;
    width: 70px;
}
.dot {
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 50%;
    animation: dot-blink 1.4s infinite ease-in-out both;
}
.dot:nth-child(1) {
    animation-delay: -0.32s;
}
.dot:nth-child(2) {
    animation-delay: -0.16s;
}
@keyframes dot-blink {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}