#root .loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    min-height: 90vh;
}
#root .loader-container > h1 {
    font-size: 28px;
    font-weight: bolder;
    margin-left: 10px;
}

#root .loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

#root .loader div {
    position: absolute;
    border: 4px solid #1890ff;
    opacity: 1;
    border-radius: 50%;
    animation: loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#root .loader div:nth-child(2) {
    animation-delay: -0.5s;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

#loading .loading-container {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
}

#loading .loading {
    animation: rotate linear 1.5s infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes loader {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}
