/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

/* CSS RESET DONE */


/* Button styles */
.btn {
  box-sizing:border-box;
   -moz-box-sizing:border-box;
   -webkit-box-sizing:border-box;
  
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 50px;
  
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
    
  line-height: 50px;
  padding: 0 30px;  
  font-size: 14px;
  font-weight: bold;

  -webkit-box-shadow: 0 3px 0 0 #1275b7;
  box-shadow: 0 3px 0 0 #1275b7;
  background-color: #1e88ce;
}
  
  .btn:active,
  .btn.active {
    top: 2px;
    -webkit-box-shadow: 0 1px 0 0 #1275b7;
    box-shadow: 0 1px 0 0 #1275b7;
  }


/* Progress Bar */

.scroll-content {

}

.progress {
  position: absolute !important;
  float: left;
  text-align: left;
  width: 100%;
  padding: 0;
  background-color: rgba(0,0,0,0) !important;
  height: 5px !important;
  
}
.progress .wrapper {
width: 100%;
height: 5px;
position: absolute;
top: 0;

}
.progress .bar {
position: relative;
display: block;
width: 100%;
height: 5px;
background-color: #e2e4e6;
}
.progress .bar span {
position: absolute;
display: block;
top: 0;
width: 0;
height: 5px;
z-index: 0;
background-color: #165b99;
}
.progress .bar a {
line-height: 40px;
position: relative;
z-index: 1;
}
.progress .bar i {
position: absolute;
right: -30px;
height: 5px;
line-height: 40px;
color: #36a7f3;

-webkit-transition: color .3s;
transition: color .3s;
}


  
