
@-webkit-keyframes square_check {
    25% {
        left: 42px;
        top: -8px;
    }
    50% {
        left: 42px;
        top: 42px;
    }
    75% {
        left: -9px;
        top: 42px;
    }
    100% {
        left: -9px;
        top: -7px;
    }
}

@-moz-keyframes square_check {
    25% {
        left: 42px;
        top: -8px;
    }
    50% {
        left: 42px;
        top: 42px;
    }
    75% {
        left: -9px;
        top: 42px;
    }
    100% {
        left: -9px;
        top: -7px;
    }
}

@keyframes square_check {
    25% {
        left: 42px;
        top: -8px;
    }
    50% {
        left: 42px;
        top: 42px;
    }
    75% {
        left: -9px;
        top: 42px;
    }
    100% {
        left: -9px;
        top: -7px;
    }
}

@-webkit-keyframes fill_color {
    0% {
        box-shadow: inset 0 0 0 0 rgba(93, 208, 255, 0.1);
    }
    100% {
        box-shadow: inset 0 -40px 0 0 rgba(93, 208, 255, 1);
    }
}

@-moz-keyframes fill_color {
    0% {
        box-shadow: inset 0 0 0 0 rgba(93, 208, 255, 0.1);
    }
    100% {
        box-shadow: inset 0 -40px 0 0 rgba(93, 208, 255, 1);
    }
}

@keyframes fill_color {
    0% {
        box-shadow: inset 0 0 0 0 rgba(93, 208, 255, 0.1);
    }
    100% {
        box-shadow: inset 0 -40px 0 0 rgba(93, 208, 255, 1);
    }
}

#appLoading {
    background-color: rgba(0, 0, 0, 1);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999999;
}

#appLoading .appLoadingBox {
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

}

#appLoading .appLoadingBox .square {
    width: 40px;
    height: 40px;
    border: 1px rgba(93, 208, 255, 1) solid;
    margin: 0 36px;
    position: relative;
    -webkit-animation: fill_color 2s linear infinite;
    -moz-animation: fill_color 2s linear infinite;
    animation: fill_color 2s linear infinite;
}

#appLoading .appLoadingBox .square:after {
    content: "";
    width: 4px;
    height: 4px;
    position: absolute;
    background-color: rgba(93, 208, 255, 1);
    top: -8px;
    left: 0;
    -webkit-animation: square_check 1s ease-in-out infinite;
    -moz-animation: square_check 1s ease-in-out infinite;
    animation: square_check 1s ease-in-out infinite;
}

#appLoading .appLoadingBox .dy-text {
    color: rgba(110, 200, 240, 1);
    margin-top: 18px;
    letter-spacing: 1px;
    font-size: 16px;
}

[v-cloak]{
    display: none;
}
