.progress-title {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px;
    text-align: left;
}
.progress{
    height: 17px;
    background: rgba(0,0,0,0.1);
    border-radius: 15px;
    margin-bottom: 30px;
    overflow: visible;
    position: relative;
    margin-left: 47px;
}
.progress .progress-bar{
    border-radius: 15px;
    box-shadow: none;
    position: relative;
    animation: animate-positive 2s;
}
.progress .progress-icon,
.progress .progress-value{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 40px;
    background: #fff;
    border: 7px solid #1f75c4;
    font-size:15px;
    font-weight: 600;
    color: #1f75c4;
    position: absolute;
    top: -17px;
    right: -5px;
    text-align: center;
}
.progress .progress-icon{
    right: auto;
    left: -53px;
}
.progress-avatar {
    border-radius: 100%;
    position: relative;
    bottom: 3px;
}

.progress-medal {
    position: relative;
    bottom: 20px;
}

.progress-info {
    color: #fff;
    position: relative;
    bottom: 2px;
    left: 10px;
    font-weight: bold;
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
}

.progress-value2 {
  width: auto;
  height: 35px;
  line-height: 24px;
  background: #fff;
  border: 4px solid #1f75c4;
  font-size: 15px;
  font-weight: 600;
  color: #1f75c4;
  position: absolute;
  top: -9px;
  right: -5px;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 10px;
}

.progress.orange .progress-icon,
.progress.orange .progress-value{
    border: 7px solid #f7810e;
    color: #f7810e;
}

.progress.orange .progress-value2{
    border: 4px solid #f7810e;
    color: #f7810e;
}

.progress.pink .progress-icon,
.progress.pink .progress-value{
    border: 7px solid #f2438f;
    color: #f2438f;
}

.progress.pink .progress-value2{
    border: 4px solid #f2438f;
    color: #f2438f;
}

.progress.green .progress-icon,
.progress.green .progress-value{
    border: 7px solid #08a061;
    color: #08a061;
}

.progress.green .progress-value2{
    border: 4px solid #08a061;
    color: #08a061;
}

@-webkit-keyframes animate-positive{
    0%{ width: 0; }
}
@keyframes animate-positive{
    0%{ width: 0; }
}