.donation-meter {
  width: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.donation-meter .glass {
  background: #e5e5e5;
  border-radius: 100px 100px 0 0;
  display: block;
  height: 300px;
  margin: 0 35px 10px;
  padding: 5px;
  position: relative;
  width: 20px;
}
.donation-meter .amount {
  background: #f34e54;
  border-radius: 100px;
  display: block;
  width: 10px;
  position: absolute;
  bottom: -5px;
}
.donation-meter strong {
  display: block;
  text-align: center;
}
.donation-meter .goal {
  font-size: 30px;
}
.donation-meter .total {
  font-size: 16px;
  position: absolute;
  right: 35px;
}

.bulb {
  background: #e5e5e5;
  border-radius: 100px;
  display: block;
  height: 50px;
  margin: 0 35px 10px;
  padding: 5px;
  position: relative;
  top: -20px;
  right: 15px;
  width: 50px;
}
.bulb .red-circle {
  background: #f34e54;
  border-radius: 100px;
  display: block;
  height: 40px;
  width: 40px;
}
.bulb .filler {
  background: #f34e54;
  border-radius: 100px 100px 0 0;
  display: block;
  height: 22px;
  width: 10px;
  position: relative;
  top: -55px;
  right: -15px;
  z-index: 30;
}

.about_section {
  margin: 80px 0px;
}

@media (max-width: 768px) {
  .donation-meter {
      width: 50px;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
  }
  .donation-meter .glass {
      height: 150px;
      margin: 0 17.5px 5px;
      padding: 2.5px;
      width: 10px;
  }
  .donation-meter .amount {
      width: 5px;
  }
  .donation-meter .goal {
      font-size: 15px;
  }
  .donation-meter .total {
      font-size: 8px;
      right: 17.5px;
  }

  .bulb {
      height: 25px;
      margin: 0 17.5px 5px;
      padding: 2.5px;
      top: -10px;
      right: 7.5px;
      width: 25px;
  }
  .bulb .red-circle {
      height: 20px;
      width: 20px;
  }
  .bulb .filler {
      height: 11px;
      width: 5px;
      top: -27.5px;
      right: -7.5px;
  }
}

#timer-display {
  display: none;
  background-color: #111;
  font-size: 32px;
  color: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

#tool-selected {
  position: fixed;
  z-index: 25;
  bottom: 0;
  right: 0;
  background-color: #333;
  height: 70px;
  width: 70px;
  border: 3px solid #000;
  text-align: center;
  padding-top: 10px;
  display:none;
}