/* Load fonts */
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,200");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/*body,
html {
  height: 100%;
  margin: 0;
  width: 100%;
}
body {
  background-color: #f44336;
  color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
}*/
#loader {
  left: 50%;
  max-width: 500px;
  position: fixed;
  top: 55%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: 101;
}

  /*
    *Progress Bar
    */
.pgrs-bar-text{
    content:'';
    color: transparent;
    font-size: 0;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.pgrs-bar-content {
    display: block;
    width: 100%;
    height: 6px;
    /*background-color: #818174;*/
    position: relative;
}

.pgrs-bar {
    position: absolute;
    width: 0%;
    max-width: 100%;
    height: 6px;
    background-color: #FFCD0D;
    bottom: 0;
    left: 0;
    transition: width .35s ease-in;
}