
html, body {
    margin: 0;
    padding: 0;
}

#preloaderBG {
    position: absolute;
    z-index: 999999;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #f1f1f1;
    background: radial-gradient(#f5f5f5, #ccc);
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
}

#preloaderSpinner {
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
}

#preloaderWrapper {
    position: absolute;
    width: 335px;
    height: 85px;
    margin-left: -167px;
    margin-top: -75px;
    top: 50%;
    left: 50%;
}

#preloaderBarBG,
#preloaderBar {
    display: none;
    position: absolute;
    width: 0px;
    height: 3px;
    bottom: 0px;
    left: 0px;
}

#preloaderBarBG {
    background-color: #e5e5e5;
    width: 100%;
}

#preloaderBar {
    z-index: 2;
    background-color: rgb(243, 146, 2);
    -webkit-transition: width 0.5s ease-out;
    -moz-transition: width 0.5s ease-out;
    transition: width 0.5s ease-out;
}

