﻿#waiting-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(13, 22, 31, 0.5);
}

#waiting-dialog-msg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,90px);
    color: #09f;
    font-weight: bold;
    font-size: 2.5rem;
    -webkit-text-stroke: 1px #162534;
}

#circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 150px;
    height: 150px;
}

.loader {
    width: calc(100% - 0px);
    height: calc(100% - 0px);
    border: 8px solid #162534;
    border-top: 8px solid #09f;
    border-radius: 50%;
    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
