/* -----------------------------------------------------
  Pure CSS Progress Bars
  GitHub Project: https://github.com/rkchauhan/pure-css-progress-bars/
  By: Ravikumar Chauhan
  Find me on -
  Twitter: https://twitter.com/rkchauhan01
  Facebook: https://www.facebook.com/ravi032chauhan
  GitHub: https://github.com/rkchauhan
  CodePen: http://codepen.io/rkchauhan
-------------------------------------------------------- */
/* -----------------------------------------------------
  Google Roboto font
-------------------------------------------------------- */
@font-face {
    font-family: 'Roboto';
    src: url("../fonts/roboto/Roboto-Regular.eot");
    src: local("Roboto"), local("Roboto-Regular"), url("../fonts/roboto/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto/Roboto-Regular.woff2") format("woff2"), url("../fonts/roboto/Roboto-Regular.woff") format("woff"), url("../fonts/roboto/Roboto-Regular.ttf") format("truetype"), url("../fonts/roboto/Roboto-Regular.svg#Roboto-Regular") format("svg");
    font-weight: normal;
    font-style: normal;
  }
  /* -----------------------------------------------------
     CSS Progress Bars
  -------------------------------------------------------- */
  .cssProgress {
      width: 100%;
      max-width: 470px;
  }
  .cssProgress .progress1,
  .cssProgress .progress2,
  .cssProgress .progress3 {
    position: relative;
    overflow: hidden;
    width: 100%;
    font-family: "Roboto", sans-serif;
  }
  .cssProgress .cssProgress-bar {
    display: block;
    float: left;
    width: 0%;
    height: 100%;
    background: #3798d9;
    -webkit-transition: width 0.8s ease-in-out;
            transition: width 0.8s ease-in-out;
  }
  .cssProgress .cssProgress-label {
      position: absolute;
      overflow: hidden;
      left: 0px;
      right: 0px;
      color: #fff;
      font-size: 0.7em;
      text-align: right;
      padding: 0 10px;
      font-weight: 500;
      right: 0;
  }
  .cssProgress .cssProgress-info {
    background-color: #9575cd !important;
  }
  .cssProgress .cssProgress-danger {
    background-color: #ef5350 !important;
  }
  .cssProgress .cssProgress-success {
    background-color: #66bb6a !important;
  }
  .cssProgress .cssProgress-warning {
    background-color: #00c77e !important;
  }
  .cssProgress .cssProgress-right {
    float: right !important;
  }
  .cssProgress .cssProgress-label-left {
    margin-left: 10px;
    text-align: left !important;
  }
  .cssProgress .cssProgress-label-right {
    margin-right: 10px;
    text-align: right !important;
  }
  .cssProgress .cssProgress-label2 {
    display: block;
    margin: 2px 0;
    padding: 0 8px;
    font-size: 0.8em;
  }
  .cssProgress .cssProgress-label2.cssProgress-label2-right {
    text-align: right;
  }
  .cssProgress .cssProgress-label2.cssProgress-label2-center {
    text-align: center;
  }
  .cssProgress .cssProgress-stripes,
  .cssProgress .cssProgress-active,
  .cssProgress .cssProgress-active-right {
    background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.125) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.125) 50%, rgba(255, 255, 255, 0.125) 75%, transparent 75%, transparent);
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.125) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.125) 50%, rgba(255, 255, 255, 0.125) 75%, transparent 75%, transparent);
    background-size: 35px 35px;
  }
  .cssProgress .cssProgress-active {
    -webkit-animation: cssProgressActive 2s linear infinite;
    -ms-animation: cssProgressActive 2s linear infinite;
    animation: cssProgressActive 2s linear infinite;
  }
  .cssProgress .cssProgress-active-right {
    -webkit-animation: cssProgressActiveRight 2s linear infinite;
    -ms-animation: cssProgressActiveRight 2s linear infinite;
    animation: cssProgressActiveRight 2s linear infinite;
  }
  @-webkit-keyframes cssProgressActive {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 35px 35px;
    }
  }
  @-ms-keyframes cssProgressActive {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 35px 35px;
    }
  }
  @keyframes cssProgressActive {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 35px 35px;
    }
  }
  @-webkit-keyframes cssProgressActiveRight {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -35px -35px;
    }
  }
  @-ms-keyframes cssProgressActiveRight {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -35px -35px;
    }
  }
  @keyframes cssProgressActiveRight {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -35px -35px;
    }
  }
  
  /* -----------------------------------------------------
     Progress Bar 3
  -------------------------------------------------------- */
  .progress3 {
    width: auto !important;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    height: 25px;
  }
  .progress3 .cssProgress-bar {
    height: 25px;
    border-radius: 0;
    position: relative;
  }
  .progress3 .cssProgress-label {
    line-height: 25px;
  }
  
  @-webkit-keyframes cssProgressGlowActive3 {
    0%, 100% {
      box-shadow: 5px 0px 15px 0px #ef5350;
    }
    45% {
      box-shadow: 1px 0px 4px 0px #ef5350;
    }
  }
  @-ms-keyframes cssProgressGlowActive3 {
    0%, 100% {
      box-shadow: 5px 0px 15px 0px #ef5350;
    }
    45% {
      box-shadow: 1px 0px 4px 0px #ef5350;
    }
  }
  @keyframes cssProgressGlowActive3 {
    0%, 100% {
      box-shadow: 5px 0px 15px 0px #ef5350;
    }
    45% {
      box-shadow: 1px 0px 4px 0px #ef5350;
    }
  }