.two-columns {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
-webkit-column-gap: 40px;
column-gap: 40px;
-moz-column-gap: 40px;
}

/* Donation Meter */

.donation-meter {
  margin-left: 10px;
  width: 160px;
  border:1px solid #CCC;
  padding: 10px;
  background-color:#EEE;
}

/* override bootstrap box-sizing */
.donation-meter *,
.donation-meter *:before,
.donation-meter *:after {
    -webkit-box-sizing: content-box !important;
    -moz-box-sizing: content-box !important;
    box-sizing: content-box !important;
}

.donation-meter .glass {
  background: #e5e5e5;
  border-radius: 100px 100px 0 0;
  display: block;
  height: 300px;
  margin: 0 55px 10px;
  padding: 5px;
  position: relative;
  width: 20px;
}
.donation-meter .amount {
  background: #f6298f;
  border-radius: 100px;
  display: block;
  width: 20px;
  position: absolute;
  bottom: 5px;
}
.donation-meter .goal {
  display:block;
  margin-bottom: 16px;
}

.donation-meter .total {
  font-size: 11px;
  position: absolute;
  right: 35px;
}

.donation-meter .bulb {
  background: #e5e5e5;
  border-radius: 100px;
  display: block;
  height: 50px;
  margin: 0 55px 10px;
  padding: 5px;
  position: relative;
  top: -20px;
  right: 15px;
  width: 50px;
}
.donation-meter .bulb .red-circle {
  background: #f6298f;
  border-radius: 100px;
  display: block;
  height: 50px;
  width: 50px;
}
.donation-meter .bulb .filler {
  background: #f6298f;
  border-radius: 100px 100px 0 0;
  display: block;
  height: 30px;
  width: 20px;
  position: relative;
  top: -65px;
  right: -15px;
  z-index: 30;
}

/* End Donation Meter */