
/* AMBIGUOUS PROGRESS OVERLAY */


.progress-overlay {
    background: #FFF;
    background: rgba(255,255,255,0.95);

    -moz-box-shadow: 0 0 5px #ccc;
    -webkit-box-shadow: 0 0 5px #ccc;
    box-shadow: 0 0 5px #ccc;
    box-shadow: 0 0 5px rgba(0,0,0,.2);

    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;

    text-align: center;
    padding: 40px 60px;
    min-width: 300px;
    max-width: 90%;

    opacity: 0;
    -moz-transition: opacity 0.2s ease;
    -webkit-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
}
.progress-overlay.active {
    opacity: 1;
}
.progress-overlay .fa-spin {
    font-size: 30px;
    color: #666;
    /* fix annoying cut-off edge */
    line-height: 32px;
    width: 32px;
}


.progress-overlay h3 {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 16px;
    color: #333;
    max-width: 300px;
}
.progress-overlay p {
    margin-top: 10px;
}

.progress-overlay-background.overlay-background {
    background: #000;
    background: rgba(0, 0, 0, 0.25);
}

.progress-overlay .progress-bar {
    display: none;
}

.progress-overlay.progressive .fa-spin {
    display: none;
}

.progress-overlay.progressive .progress-bar {
    background-color: #ccc;
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    height: 26px;
    border-radius: 3px;
    overflow: hidden;
    line-height: 0;
    margin-bottom: 20px;
    box-shadow: none;
}
.progress-overlay.progressive .progress-bar-fill {
    background: #0092F2;

    display: inline-block;
    height: 100%;
    width: 0%;

    -webkit-transition: width 0.6s ease;
    -moz-transition: width 0.6s ease;
    -ms-transition: width 0.6s ease;
}
