@charset "UTF-8";

#LOADING {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000000;
    background-color: #fff;
    transition: background-color 0.4s;
}

#LOADING > .lineWrap {
    width: 55px;
    height: 35px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -17.5px;
    margin-top: -22.5px;
}

#LOADING > .lineWrap > .line {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: #F18700;
    position: absolute;
    bottom: 0;
}

#LOADING > .lineWrap > .line:nth-child(1) {
    animation: loadingA 1.5s 1s infinite;
    left: 0;
}

#LOADING > .lineWrap > .line:nth-child(2) {
    animation: loadingA 1.5s 0.5s infinite;
    left: 20px;
}

#LOADING > .lineWrap > .line:nth-child(3) {
    animation: loadingA 1.5s 0s infinite;
    left: 40px;
}

@keyframes loadingA {
    50% {
        height: 35px;
    }
    100% {
        height: 15px;
    }
}
