.index__loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    color: white;
}
.index__loading__card {
    background-color: black;
    padding: 2rem 3rem;
    border-radius: 10px;
    text-align: center;
}
.index__loading__card__circular-progress {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, 0);
    border-top: 2px solid #c70909;
    -webkit-animation: 1s spin linear infinite;
    animation: 1s spin linear infinite;
    margin: 1.5rem auto;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
