
/********* Thermometer Start ******************/

.thermometer {
    height: 2.6em;
    position: relative;
    background:#4d4e53;
    margin-bottom: 50px;
}

.filled_thermometer {
    position:absolute;
    top:0;
    left:0;
    width:0%;
    height:100%;
    background-color : rgb(119, 182, 201);
    z-index:1;
}

.bubble {
    position: absolute;
    z-index: 50;
    left: 0;
    margin-left:-59px;
    width: 118px;
    height: 48px;
    top: 34px;
    text-align: center;
    padding-top: 8px;
    display:none;
}

.current_amount {
    font-size: 18px;
    line-height: 35px;
    height: 35px;
    z-index: 45;
    color: #000;
    padding: 0px;
    border : 2px solid rgb(119, 182, 201);
    border-radius: 5px;
    box-shadow : rgba(0, 0, 0, 0.5) 1px 1px 2px;
}

.current_amount::before {
  content : "";
  position : absolute;
  border-top : 0px solid white;
  border-bottom : 5px solid rgb(119, 182, 201);
  border-left : 5px solid transparent;
  border-right : 5px solid transparent;
  width : 0px;
  height : 0px;
  top : 3px;
  right : 0px;
  left : 0px;
  margin : 0px auto;
}

.current_amount::after {
  content : "";
  position : absolute;
  border-top : 0px solid white;
  border-bottom : 5px solid rgb(255, 255, 255);
  border-left : 5px solid transparent;
  border-right : 5px solid transparent;
  width : 0px;
  height : 0px;
  top : 6px;
  right : 0px;
  left : 0px;
  margin : 0px auto;
}

.thermometer > h2 {
    float: right;
    padding-right: 10px;  
    color: white;
    position: relative;
    z-index: 100;
    font-size:1.3em;
    font-weight: bold;
    padding-top:.45em;
    line-height: 1.3em;
    margin: 0;
}