﻿@charset "utf-8";
/* CSS Document */
/*************************************/
/*          IsLoading window         */
/*************************************/
@keyframes LoadingMask {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
#OnloadingMask {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 999;
}

    #OnloadingMask #dot1 {
        animation-delay: 0.1s;
    }

    #OnloadingMask #dot2 {
        animation-delay: 0.2s;
    }

    #OnloadingMask #dot3 {
        animation-delay: 0.3s;
    }

    #OnloadingMask .dot {
        animation-name: LoadingMask;
        animation-duration: 1s;
        animation-iteration-count: infinite;
    }