.EmptyPage_root__QbtMD {
    width: 100vw;
    height: 100vh;
    background-color: var(--mantine-color-coupin-7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.EmptyPage_spinner__w2KjO {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    border: 5px solid transparent;
    border-top-color: #d21130;
    margin-top: 32px;
    animation: EmptyPage_spin__FK_J7 1s infinite linear;
}

.EmptyPage_message__G9cud {
    color: #bbb;
    margin-top: 32px;
    font-size: 24px;
}

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

