.page-loading {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
    font-size: 100%;
    margin: 0;
    text-align: center;
}
.page-loading h1 {
    color: #03ADBC;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 20px auto;
    width: 17ch;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 1.6s steps(17);
}
.page-loading * {
    box-sizing: border-box;
}
.page-loading .wrapper {
    height: 40px;
    width: 150px;
    margin-top: calc(50vh - 25px);
    margin-left: calc(50vw - 80px);
}
.page-loading .circle {
    border-radius: 50%;
    border: 3px #03ADBC solid;
    float: left;
    height: 40px;
    width: 40px;
    margin: 0 5px;
}
.page-loading .circle-1 {
    animation: move 1s ease-in-out infinite;
}
.page-loading .circle-2 {
    animation: move 1s ease-in-out infinite;
}
@keyframes move {
    0% {transform: translateX(0);}
    100% {transform: translateX(50px);}
}
.page-loading .circle-1a {
    margin-left: -45px;
    opacity: 0;
}
.page-loading .circle-1a {
    animation: show 1s ease-in-out infinite;
}
@keyframes show {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
.page-loading .circle-3 {
    animation: fade 1s ease-in-out infinite;
    opacity: 1;
}
@keyframes fade {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@keyframes typing {
    from { width: 0; }
}
