body {
    inset: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: fixed;
}

#loading {
    position: absolute;
    margin: -25px auto;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

#loading img {
    animation: 2s ease-in-out 0s infinite alternate breathe;
}

@keyframes breathe {
    from {
        /* transform: scale(1); */
        opacity: .2;
    }

    to {
        /* transform: scale(0.95); */
        opacity: 1;
    }
}

#indicator {
    width: 95%;
    height: 5px;
    margin: 25px auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ddd;
}

.indicator30 .expand {
    width: 30%;
    height: 5px;
    margin: 0;
    background: #56388A;
    position: absolute;
    animation: indicator30expand 5s ease-out;
}

@keyframes indicator30expand {
    0% {
        width: 0%;
    }

    100% {
        width: 30%;
    }
}

.indicator60 .expand {
    width: 60%;
    height: 5px;
    margin: 0;
    background: #56388A;
    position: absolute;
    animation: indicator60expand 5s ease-out;
}

@keyframes indicator60expand {
    0% {
        width: 30%;
    }

    100% {
        width: 60%;
    }
}

.indicator90 .expand {
    width: 90%;
    height: 5px;
    margin: 0;
    background: #56388A;
    position: absolute;
    animation: indicator90expand 5s ease-out;
}

@keyframes indicator90expand {
    0% {
        width: 60%;
    }

    100% {
        width: 90%;
    }
}