* {
  box-sizing: border-box;
}

body {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;

}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33333%;
  /*orginial*/
  /*padding: 25px;*/
  padding: 5px 15px 5px 15px;
  /*height: 200px;*/
  /* Should be removed. Only for demonstration */
}

.column h2 {
  margin-top: 5px;
  margin-bottom: 5px;
}


/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 100px) {
  .column {
    width: 100%;
  }
}

/*https://stackoverflow.com/questions/16242980/making-radio-buttons-look-like-buttons-instead*/

.mv-operator {
  list-style-type: none;
  margin: 25px 0 0 0;
  padding: 0;
  text-align-last: center;
}

.mv-operator li {
  float: left;
  margin: 0 5px 0 0;
  width: 100px;
  height: 40px;
  position: relative;
  /**/
  clear: left;
  /*
  background-color: lightgray;
  border: 2px solid black;
  border-radius: 15px;
  border-style: solid;
  border-color: white;
  */
}

.mv-operator label,
.mv-operator input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: lightgray;
  color: black;
}

.mv-operator input[type="radio"] {
  opacity: 0.01;
  z-index: 100;

}

.mv-operator input[type="radio"]:checked+label,
.Checked+label {
  background: gray;
}

.mv-operator label {
  padding: 5px;
  border: 1px solid #CCC;
  cursor: pointer;
  z-index: 90;
}

.mv-operator label:hover {
  background: #DDD;
}

/**********************************/

.donate-now {
  list-style-type: none;
  margin: 25px 0 0 0;
  padding: 0;
  text-align-last: center;

}

.donate-now li {
  float: left;
  margin: 0 5px 0 0;
  width: 100px;
  height: 40px;
  position: relative;
  /**/
  clear: left;
}

.donate-now label,
.donate-now input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: lightblue;
  color: black;
}

.donate-now input[type="radio"] {
  opacity: 0.01;
  z-index: 100;
}

.donate-now input[type="radio"]:checked+label,
.Checked+label {
  background: gray;

}

.donate-now label {
  padding: 5px;
  border: 1px solid #CCC;
  cursor: pointer;
  z-index: 90;
}

.donate-now label:hover {
  background: #DDD;
}

ul {
  display: inline-block;

}

.block {
  display: block;
  width: 100%;
  border: none;
  background-color: #04AA6D;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}