﻿ #loadingDiv {
    width: 100%;
    height: 8px;
    background: #fff;
    -ms-opacity: 0.7;
    opacity: 0.7;
    position: absolute;
    top: 0px;
    left: 0;
    display: none;
    z-index: 1001;
}

.fullwidth .expand {
    width: 100%;
    height: 8px;
    /*margin: 2px 0;*/
    background: #2187e7;
    position: absolute;
    /*box-shadow: 0px 0px 10px 1px rgba(0,198,255,0.7);*/
    width: 0%;
    /*-moz-animation: fullexpand 10s ease-out;
    -webkit-animation: fullexpand 10s ease-out;*/
    -webkit-transition: width 0.5s;
    -moz-transition: width 0.5s;
    -ms-transition: width 0.5s;
    -o-transition: width 0.5s;
    transition: width 0.5s;
}

 .fullwidth .complete {
    width: 100%;
    height: 8px;
    /*margin: 2px 0;*/
    background: #2187e7;
    position: absolute;
    box-shadow: 0px 0px 10px 1px rgba(0,198,255,0.7);
    -moz-animation: fullexpand 0.2s ease-out;
    -webkit-animation: fullexpand 0.2s ease-out;
}



@-moz-keyframes fullexpand {
    0% {
        width: 0px;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes fullexpand {
    0% {
        width: 0px;
    }

    100% {
        width: 100%;
    }
}