body {
    background: #006dae;
    margin: 0;
    padding: 0;
    cursor: url(trans.png),wait;
    text-align: center;
    font-family: Segoe UI Light,Segoe UI,Arial;
    font-size: 1.3vw;
    color: #ffffff;
    font-weight: 400;
}

.mainholder {
    display: block;
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

.main {
    width: 100%;
    height: 100%;
}

.content {
    position: absolute;
    top: 40%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.spinnerloading {
    position: relative;
    width: 50px;
    margin: auto;
    padding-top: 2px;
}

.spinnerloading .dots {
    position: absolute;
    width: 48px;
    height: 48px;
    opacity: 0;
    transform: rotate(225deg);
    animation-iteration-count: infinite;
    animation-name: roundspin;
    animation-duration: 5.5s;
}

.spinnerloading .dots:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 5px;
    background: #ffffff;
}

.spinnerloading .dots:nth-child(2) {
    animation-delay: 240ms;
}

.spinnerloading .dots:nth-child(3) {
    animation-delay: 480ms;
}

.spinnerloading .dots:nth-child(4) {
    animation-delay: 720ms;
}

.spinnerloading .dots:nth-child(5) {
    animation-delay: 960ms;
}

@keyframes roundspin {
    0% {
        transform: rotate(225deg);
        opacity: 1;
        animation-timing-function: ease-out;
    }

    7% {
        transform: rotate(345deg);
        animation-timing-function: linear;
    }

    30% {
        transform: rotate(455deg);
        animation-timing-function: ease-in-out;
    }

    39% {
        transform: rotate(690deg);
        animation-timing-function: linear;
    }

    70% {
        transform: rotate(815deg);
        opacity: 1;
        animation-timing-function: ease-out;
    }

    75% {
        transform: rotate(945deg);
        animation-timing-function: ease-out;
    }

    76% {
        transform: rotate(945deg);
        opacity: 0;
    }

    100% {
        transform: rotate(945deg);
        opacity: 0;
    }
}

.extratext {
    position: fixed;
    bottom: 10%;
    width: 100%;
    left: 0;
}
