.slider-control {
  margin-top: 30px;
  font-weight: bold;
}

.slider-control > div {
  display: inline-block;
  float: left;
  font-size: 16px;
  height: 45px;
  line-height: 45px;
}

.slider-control .min, .slider-control .max {
  border: 2px solid #e6e6e6;
  padding: 0px 5px;
  color: #a6a6a6;
}

.slider-control .min {
  border-right: 0px;
}

.slider-control .max {
  border-left: 0px;
}

.angular-range-slider {
  width: 60%;
  min-width: 190px;
  display: inline-block;
  position: relative;
  border: 2px solid #e6e6e6;
  border-left: 0px;
  border-right: 0px;
  padding: 20px 0px;
}

.angular-range-slider div {
  white-space: nowrap;
  position: absolute;
}

.angular-range-slider div.bar {
  width: 100%;
  height: 4px;
  background: #F2F0F0;
  overflow: hidden;
}
      
.angular-range-slider div.bar .selection {
  width: 0;
  height: 100%;
  background: #13496C; 
}

.angular-range-slider div.handle {
  cursor: pointer;
  width: 24px;
  height: 24px;
  top: 10px;
  background-color: #F2F0F0;
  border: 6px solid #13496C;
  z-index: 2;
  border-radius: 50%; 
}

.angular-range-slider div.handle.active {
  border: 6px solid #F2F0F0;
  background-color: #13496C;
}

.angular-range-slider div.bubble {
 display: none;
}

.angular-range-slider div.bubble.value {
  display: inline-block;
  background-color: #fff;
  font-size: 16px;
  color: #13496C;
  top: -35px;
  line-height: normal;
}