#simple-preloader-background {
    background-color: #000;
    position: absolute;
    z-index: 9;
    height: 100%;
    width: 100%
}

.simple-preloader-container {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 260px;
    /* background-color: pink; */
}

.simple-preloader-container .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-25%);
    width: 128px;
    height: 24px;
    opacity: 0;
    z-index: 10;
    /* background-color: pink; */
}

.simple-preloader-container .logo img {
    width: 100%;
    height: 100%;
}

.simple-preloader-container .progress {
    position: absolute;
    width: 162px;
    height: 162px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 25%;
}

#canvas {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 260px;
    z-index: 99;
    border-radius: 50%;
}


.circle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 260px;
    opacity: 0;
}

.circle img {
    width: 100%;
    height: 100%;
}

.progress video {
    /* display: none; */
    width: 162px;
    height: 162px;
    border-radius: 100%;
}

.progress img {
    display: none;
    border-radius: 100%;
}


.background_color {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50vw;
    height: 50vw;
    max-width: 260px;
    max-height: 260px;
    z-index: -1;
}

.simple-preloader-container .progress img {
    width: 100%;
    height: 100%;
    border-radius: 25%;
}


@keyframes rotate {
    form {
        transform: translate(-50%, -50%) rotate(0)
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

#mask {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
}

#maskLoading {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}