*, :after, :before {
    box-sizing: border-box;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loop {
    0% {
        stroke-dasharray: 1.25, 250;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 111.25, 250;
        stroke-dashoffset: -43.75;
    }

    100% {
        stroke-dasharray: 111.25, 250;
        stroke-dashoffset: -155;
    }
}

html {
    height: 100%;
    font-size: 1em;
    font-family: 'Lato', sans-serif;
}

body {
    display: block;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    min-width: 320px;
    min-height: 100%;
    background: #F5F5F5;
}

div#body {
    position: relative;
    display: block;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
}

div#body div.page {
    transition: all 0.20s ease;
    visibility: hidden;
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

div#body div.load {
    position: absolute;
    overflow: hidden;
    display: block;
    margin: auto;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    bottom: 0px;
    height: 150px;
}

div#body div.load svg {
    position: relative;
    animation: 2s linear 0s infinite normal none running spin;
    display: block;
    margin: 0px auto;
    left: 0px;
    right: 0px;
    width: 60px;
    height: 60px;
}

div#body div.load svg [ring] {
    transition: stroke-dasharray 350ms cubic-bezier(0.4, 0, 0.2, 1) 0s;
    animation: 1.5s ease-in-out 0s infinite normal none running loop;
    stroke-miterlimit: 20;
    stroke-dashoffset: 0;
    stroke-dasharray: calc(1.25), calc(250);
    stroke-linecap: round;
    stroke-width: 4;
    stroke: #231F21;
    fill: none;
}

div#body div.load div {
    overflow: hidden;
    display: block;
    padding: 20px 0px;
}

div#body div.load b {
    overflow: hidden;
    display: block;
    line-height: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: #7B8B9E;
}

div#body div.load p {
    overflow: hidden;
    display: block;
    margin: 0px 0px;
    padding: 0px 0px;
    line-height: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #5F6358;
}

div#body div.load[done] {
    visibility: hidden;
    display: none;
}

div#body div.load[done] + div.page {
    visibility: visible;
    display: block;
}