#thermometer .title{
    font-size:20px;
    margin-top:0;
    text-align:center
}
#thermometer{
    height:auto;
    margin:0 auto;
    position:relative;
    width:auto
}
#thermometer .track{
    background:#fff;
    background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgb(0,0,.5)),color-stop(1%,#fff));
    background:-webkit-linear-gradient(top,rgb(0,0,.5) 0,#fff 10%);
    background:-o-linear-gradient(top,rgb(0,0,.5) 0,#fff 10%);
    background:-ms-linear-gradient(top,rgb(0,0,.5) 0,#fff 10%);
    background:-moz-linear-gradient(top,rgb(0,0,.5) 0,#fff 10%);
    background:linear-gradient(to bottom,rgb(0,0,.5) 0,#fff 10%);
    background-position:0 -1px;
    background-size:30% 10%;
    border:2px solid #454545;
    border-bottom:0;
    border-top-left-radius:20px;
    border-top-right-radius:20px;
    box-sizing:border-box;
    top:10px;
    left:0;
    height:165px;
    margin:0 auto;
    position:relative;
    width:30px;
    z-index:2
}
#thermometer .goal-raised{
    top:4px
}
#thermometer .progress{
    background:#ff0000;
    border-right:2px solid rgba(0,0,0,.15);
    border-left:2px solid rgba(0,0,0,.15);
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    height:0%;
    border-top-left-radius:20px;
    border-top-right-radius:20px;
    width:60%
}
#thermometer .goal{
    position:absolute;
    top:-1px;
    left:8px
}
#thermometer .amount{
    color:#333;
    border-top:1px solid #000;
    display:inline-block;
    font-weight:700;
    padding:0 5px 0 50px
}
#thermometer .progress .amount{
    border-top:1px solid #ff0000;
    color:#000000;
    position:absolute;
    right:5px;
    padding:0 40px 0 5px
}
#thermometer .bulb{
    background:0 0;
    border-radius:100px;
    display:block;
    margin:0 auto;
    padding:5px 0;
    position:relative;
    height:75px;
    width:75px
}
#thermometer .bulb .circle{
    background:#ff0000;
    border:2px solid #454545;
    border-radius:100px;
    box-sizing:border-box;
    -moz-box-shadow:inset 0 0 4px 2px rgba(0,0,0,.2),inset 0 -20px 5px 0 rgba(0,0,0,.25);
    -webkit-box-shadow:inset 0 0 4px 2px rgba(0,0,0,.2),inset 0 -20px 5px 0 rgba(0,0,0,.25);
    box-shadow:inset 0 0 4px 2px rgba(0,0,0,.2),inset 0 -20px 5px 0 rgba(0,0,0,.25);
    display:block;
    height:75px;
    width:75px
}

