/* -----------------------------------------------------
  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
-------------------------------------------------------- */
/* -----------------------------------------------------
   CSS Progress Bars
-------------------------------------------------------- */
.nt-progress-bar-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0px 0 15px;
}
.nt-progress-bar-label::before {
  content: attr(id);
  position: absolute;
  padding: 4px 6px;
  background-color: #be9874;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  top: -43px;
  right: 0;
  transform: translateX(50%);
}
.nt-progress-bar-label::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #be9874;
  top: -16px;
  right: 0;
  transform: translateX(50%) rotate(45deg);
  border-radius: 2px;
}
.nt-progress {
  width: 100%;
  margin-bottom: 30px;
}
.nt-progress .progress1,
.nt-progress .nt-progress-bar-content,
.nt-progress .progress3 {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.nt-progress .nt-progress-bar {
  display: block;
  float: left;
  width: 0%;
  height: 100%;
  box-shadow: inset 0px -1px 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: width 0.8s ease-in-out;
          transition: width 0.8s ease-in-out;
}
.nt-progress .nt-progress-bar-label {
  position: absolute;
  overflow: hidden;
  left: 0px;
  right: 0px;
  color: #fff;
  font-size: 0.7em;
  text-align: center;
  text-shadow: 0px 1px rgba(0, 0, 0, 0.3);
}
.nt-progress .nt-progress-right {
  float: right !important;
}
.nt-progress .nt-progress-bar-label-left {
  margin-left: 10px;
  text-align: left !important;
}
.nt-progress .nt-progress-bar-label-right {
  margin-right: 10px;
  text-align: right !important;
}
.nt-progress .nt-progress-bar-label2 {
  display: block;
  margin: 2px 0;
  padding: 0 8px;
  font-size: 0.8em;
}
.nt-progress .nt-progress-bar-label2.nt-progress-bar-label2-right {
  text-align: right;
}
.nt-progress .nt-progress-bar-label2.nt-progress-bar-label2-center {
  text-align: center;
}
.nt-progress .nt-progress-stripes,
.nt-progress .nt-progress-active,
.nt-progress .nt-progress-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;
}
.nt-progress .nt-progress-active {
  -webkit-animation: nt-progressActive 2s linear infinite;
  -ms-animation: nt-progressActive 2s linear infinite;
  animation: nt-progressActive 2s linear infinite;
}
.nt-progress .nt-progress-active-right {
  -webkit-animation: nt-progressActiveRight 2s linear infinite;
  -ms-animation: nt-progressActiveRight 2s linear infinite;
  animation: nt-progressActiveRight 2s linear infinite;
}
@-webkit-keyframes nt-progressActive {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 35px 35px;
  }
}
@-ms-keyframes nt-progressActive {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 35px 35px;
  }
}
@keyframes nt-progressActive {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 35px 35px;
  }
}
@-webkit-keyframes nt-progressActiveRight {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -35px -35px;
  }
}
@-ms-keyframes nt-progressActiveRight {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -35px -35px;
  }
}
@keyframes nt-progressActiveRight {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -35px -35px;
  }
}
/* -----------------------------------------------------
  Progress Bar 1
-------------------------------------------------------- */
.progress1 {
  background-color: #EEE;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
}
.progress1 .nt-progress-bar {
  height: 15px;
}
.progress1 .nt-progress-bar-label {
  line-height: 15px;
}

/* -----------------------------------------------------
   Progress Bar 2
-------------------------------------------------------- */
.nt-progress-bar-content {
  background-color: #fff;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
}
.nt-progress-bar-content .nt-progress-bar {
  height: 15px;
}
.nt-progress-bar-content .nt-progress-bar-label {
  line-height: 15px;
}


@-webkit-keyframes nt-progressGlowActive1 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #3798D9;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #3798D9;
  }
}
@-ms-keyframes nt-progressGlowActive1 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #3798D9;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #3798D9;
  }
}
@keyframes nt-progressGlowActive1 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #3798D9;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #3798D9;
  }
}
@-webkit-keyframes nt-progressGlowActive2 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #9575cd;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #9575cd;
  }
}
@-ms-keyframes nt-progressGlowActive2 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #9575cd;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #9575cd;
  }
}
@keyframes nt-progressGlowActive2 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #9575cd;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #9575cd;
  }
}
@-webkit-keyframes nt-progressGlowActive3 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #ef5350;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #ef5350;
  }
}
@-ms-keyframes nt-progressGlowActive3 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #ef5350;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #ef5350;
  }
}
@keyframes nt-progressGlowActive3 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #ef5350;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #ef5350;
  }
}
@-webkit-keyframes nt-progressGlowActive4 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #66bb6a;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #66bb6a;
  }
}
@-ms-keyframes nt-progressGlowActive4 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #66bb6a;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #66bb6a;
  }
}
@keyframes nt-progressGlowActive4 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #66bb6a;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #66bb6a;
  }
}
@-webkit-keyframes nt-progressGlowActive5 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #ffb74d;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #ffb74d;
  }
}
@-ms-keyframes nt-progressGlowActive5 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #ffb74d;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #ffb74d;
  }
}
@keyframes nt-progressGlowActive5 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #ffb74d;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #ffb74d;
  }
}
