img {
  max-width: 100%;
}

li {
  list-style-type: none;
}

.logo {
  max-width: 300px;
}

body {
  font-family: 'Open Sans', sans-serif;
}

label {
  display: block;
  text-align: center;
  font-size: 20px;
}

.flex-wrapper {
  max-width: 1200px;
  margin: 50px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.thermometer {
  padding: 0px 30px;
}

.thermometer .glass {
  background-color: #ececec;
  padding: 10px;
  display: block;
  position: relative;
  margin: 0 auto;
  border: 1px solid #9e9e9e;
}

.thermometer .fill {
  background-color: #008bcc;
  border-radius: 100px;
  border: 1px solid greenyellow;
}

.thermometer .bar {
  width: 52px;
  height: 500px;
  border-radius: 27px;
  position: relative;
}

.thermometer .bar.glass {
  background: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(white));
  background: linear-gradient(0deg, #ececec, white);
}

.thermometer .glass.bar:before {
  content: "";
  background: url("/storage/telethon/thermometer/ruler.png");
  display: block;
  width: 36px;
  position: absolute;
  left: -100%;
  top: 10px;
  bottom: 34px;
  background-position-y: 2px;
}

.thermometer .bar > .fill {
  width: 30px;
  background-color: #008bcc;
  position: absolute;
  /*top:50%;*/
  bottom: 5px;
  -webkit-transition: top 1s ease-in-out 0.5s;
  transition: top 1s ease-in-out 0.5s;
  /*animation:fillbar 1s;*/
}

.thermometer .bar > .background {
  width: 30px;
  background: #cecece;
  top: 10px;
  border: 1px solid #cac9c9;
  position: absolute;
  border-radius: 45px;
  bottom: 0;
}

.thermometer .bulb {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  padding: 10px;
  top: -40px;
}

.thermometer .bulb > .fill {
  width: 100%;
  height: 100%;
  background-color: #008bcc;
}

.thermometer .bulb .filler {
  width: 28px;
  height: 15px;
  position: relative;
  top: -89px;
  margin: 0 auto;
  border: none;
  border-radius: 0;
  /*border-right:1px solid greenyellow; border-left:1px solid greenyellow;*/
}

.fill.filler:before {
  content: "";
  width: 50px;
  height: 10px;
  background: #ececec;
  position: absolute;
  /* z-index: -1; */
  left: -11px;
}

.fill.filler:after {
  content: "";
  width: 30px;
  height: 11px;
  position: absolute;
  background: #008bcc;
  border-right: 1px solid greenyellow;
  border-left: 1px solid greenyellow;
  left: -1px;
}

.thermometer .percent {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  color: white;
  font-weight: bold;
  text-align: center;
  font-size: 27px;
}

.thermometer label {
  font-size: 18px;
  font-weight: bold;
}

.thermometer .current {
  position: absolute;
  left: 100%;
  margin-left: 35px;
  z-index: 3;
}

.current span.label {
  font-weight: normal;
}

.thermometer .goal {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 5px;
}

/*.thermometer:hover .bar .fill{top:5px;}*/

@-webkit-keyframes fillbar {
  from {
    top: 100%;
  }

  to {
    /*top:5px;*/
    top: calc( 25% + 5px);
  }
}

@keyframes fillbar {
  from {
    top: 100%;
  }

  to {
    /*top:5px;*/
    top: calc( 25% + 5px);
  }
}

.thermometer .current {
  bottom: 30%;
}

h1.status {
  color: #01A4E2;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 2.5em;
  line-height: 1em;
  margin-bottom: 1em;
}

.name img {
  display: block;
  margin: 10px auto;
  max-width: 200px;
}

