﻿
* {
    padding:0;
    margin:0;
    box-sizing:border-box;
}

html, body {
    height:100%;
    width:100%;
}

.LoadingBg {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0);
}

@-webkit-keyframes circle {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.LoadingText{
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    line-height:50px;
    text-align:center;
    margin-top: -25px;
    margin-left: -25px;
}
@keyframes ConfirmAnimation {
    from {
        height: 0px;
    }

    to {
        height: 100px;
    }
}

.Loading {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 12%;
    left: 50%;
    border-radius:50%;
    border:3px solid rgba(13,179,166,0.2);
    line-height:50px;
    text-align:center;
    margin-top: -25px;
    margin-left: -25px;
    background-size: 100% 100%;
    animation-name: circle;
    animation-duration: 1000ms;
    animation-iteration-count: 100000000;
    animation-timing-function: linear;
}
.Loading::after{
    position: absolute;
    height:100%;
    width:100%;
    top:-3px;
    left:-3px;
    content:"0";
    color:rgba(0,0,0,0);
    display:block;
    border-top:3px solid rgba(13,179,166,.5);
    border-left:3px solid rgba(13,179,166,.5);
    border-radius: 25px;
}
