html, body {
  padding: 0;
  margin: 0;
  min-height: 100%;
}

/* body {
  background: #d5e1b7;
  background: linear-gradient(to bottom, #d5e1b7 0%,#939b7f 100%);
} */

.thermometer_container {
  width: 80px;
  height: 309px;
  display: block;
  position: relative;
}

.thermometer {
  border: 5px solid #831855;
  border-bottom: transparent;
  box-sizing: border-box;
  display: block;
  position: absolute;
  z-index: 1;
  left: 20px;
  width: 40px;
  height: 238px;
  border-radius: 50px 50px 0 0;
  background: #FFF;
}

.base {
  box-shadow: 0 0 0 5px #FFF, 0 0 0 10px #831855; 
  background: #ec008c;
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 60px;
  color: #FFF;
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
.base:after {
	content: "";
	background: url(../img/graden.png);
	width: 23px;
    height: 23px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 9px;
    right: 1px;
}
.left {
	position: absolute;
    font-weight: bold;
    transform: rotate(-5deg);
    left: 75px;
    top: 50px;
}
.days-left {
	font-size: 50px;
	font-weight: bold;
}

.stem {
  background: #871959;
  position: relative;
  display: block;
  width: 20px;
  height: 232px;
  border-radius: 10px 10px 0 0;
  margin: 5px auto;
}

.stem .fluid {
  background: #ec008c;
  display: block;
  width: 100%;
  height: 26%;
  border-radius: 25px 25px 0 0;
  position: absolute;
  bottom: 0;
}