html {
    overflow: hidden;
    /*text-shadow:
        -1.0px -1.0px 0 #000,
        1.0px -1.0px 0 #000,
        -1.0px 1.0px 0 #000,
        1.0px 1.0px 0 #000;*/
}
body {
    background: transparent !important;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
}
.progress-container {
    display: none;
    z-index: 5;
    color: #fff;
    font-family: Georgia, 'Times New Roman', Times, serif;
    width: 18.5%;
    position: fixed;
    bottom: 12.65%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
.progress-labels {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    display: inline-block;
    white-space: nowrap;
}
.progress-labels div {
    font-size: 15px;
    line-height: 30px;
    margin-left: 20%;
    margin-top: 2.5%;
    position: relative;
    color: #fff;
    z-index: 10;
    font-family: Signika, sans-serif;
    text-transform: uppercase;
}
.progress-bar-container {
    width: 120%;
    height: 40px;
   box-shadow: 0 1px 5px #000 inset, 0 1px 0 #1e1e1e;
    background: rgba(0, 0, 0, 0.75);
    border: 3px solid #ffff;
    border-radius: 0px;
    text-align: left;
    overflow: hidden;
    position: relative;
    display: block;
    white-space: nowrap;
}
.progress-bar {
    background-color: rgba(231, 231, 231, 0.75);
    width: 0%;
    height: 40px;
    transition: width 0.3s;
    transition-timing-function: ease-out;
}