﻿

@media (max-width:499px) {

}

@media (max-width:992px) {
    body {
        padding-top: 90px !important;
    }
}


html, body {
    height: 100%;
    min-height: 100%;
    overflow-x: hidden !important;
}

body {   
    padding-top: 100px;
}




#body {
    /*background: rgba(0, 0, 0, 0.75);*/
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

#loader-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    border: 5px solid #828282;
    border-radius: 50%;
    -webkit-animation: borderScale 1s infinite ease-in-out;
    animation: borderScale 2s infinite ease-in-out;
}

#loadingText {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1.5em;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    color: #828282;
    text-align: center;
}

@-webkit-keyframes borderScale {
    0% {
        border: 5px solid #c9c9c9;
    }

    50% {
        border: 10px solid #828282;
    }

    100% {
        border: 5px solid #c9c9c9;
    }
}

@keyframes borderScale {
    0% {
        border: 5px solid #c9c9c9;
    }

    50% {
        border: 10px solid #828282;
    }

    100% {
        border: 5px solid #c9c9c9;
    }
}
