#loader {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loadertext {
    position: fixed;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
    font-size: 3vh;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
#loadertext a{
    color: #f3f3f3;
}

#loaderparent {
    position: fixed;
    z-index: 100;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: .8;
    top: 0;
}

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

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

label.error {
    height: 17px;
    border-top: 1px solid #99182c;
    border-left: 1px solid #99182c;
    border-right: 1px solid #99182c;
    border-bottom: 1px solid #99182c;
    margin-left: 9px;
    padding: 1px 5px 0 5px;
    font-size: small;
}

div.homepage {
    border-color: #ffffff !important;
    font-size: 15px;
    padding-right: 2em;
    padding-left: 0.7em;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    border: 2px solid;
    border-radius: 3px;
    background-color: #0076c0;
}