@import url(https://fonts.googleapis.com/css?family=Fira+Mono:400,700);
@keyframes waver {
    0% {
        border-radius: 2px;
    }
    100% {
        border-radius: 20px;
    }
}
*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

h4 {
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    color: #4b4b7f;
}

.loading {
    font-family: "Fira Mono", "Andale Mono", AndaleMono, monospace;
    color: #4b4b7f;
    background: #FFF;

    height: calc(100vh - 100px);
    width: 100%;
    text-align: center;
    margin-top: 100px;
    padding-top: 5%;

    font-size: 0.8em;
}

.loader,
.loader::before,
.loader::after {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid 3px transparent;
}

.loader {
    border-bottom-color: #439AA1;
    margin: auto;
    margin-bottom: 10px;
    text-align: center;
    animation: waver 1s infinite alternate ease-in-out;
    position: relative;
}

.loader::before,
.loader::after {
    content: "";
    display: block;
    position: absolute;
}

.loader::before {
    border-bottom-color: #439AA1;
    left: -28px;
    top: -3px;
    animation: waver 1s infinite alternate ease-in-out;
}

.loader::after {
    border-bottom-color: #439AA1;
    left: 23px;
    top: -3px;
    animation: waver 1s infinite alternate ease-in-out;
}

/* THE END */
/**/
