@keyframes progress-bar-stripes {
  from {
		background-position: 40px 0
	}
	to {
		background-position: 0 0
	}
}
rd-progress-timer .progress{
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1)
}
rd-progress-timer .progress.active .progress-bar{
  animation: progress-bar-stripes 2s linear infinite;
}
rd-progress-timer .progress .progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
  -webkit-transition: width .6s ease;
  transition: width .6s ease;
}
rd-progress-timer .progress-striped .progress-bar {
  background-size: 40px 40px;
}

rd-progress-timer .progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
}
rd-progress-timer .progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
}
rd-progress-timer .progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);
}
.progress-bar-success{
  background-color: #5cb85c
}
.progress-bar-warning{
  background-color: #f0ad4e
}
.progress-bar-danger{
  background-color: #d9534f
}