.Loading {
    align-items: center;
    background-color: white;
    display: flex;
    height: 100%;
    justify-content: center;
    padding-bottom: 60px;
    padding-top: 60px;
    width: 100%;
    &-spinner {
        animation: spinner .75s infinite linear;
        border: 3px solid var(--gray-200);
        border-left: 3px solid var(--blue);
        border-radius: 50%;
        height: 60px;
        width: 60px;
    }
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
