.time-loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.time-loader {
    width: 18px;
    height: 18px;
    border: 5px solid #878B8F;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
