.class_time_table {
  margin-top: 1em;
  border-top: 1px solid lightgrey;
  margin-bottom: 3em;
  border-bottom: 1px solid lightgrey;
}
.class_time_table td,
.class_time_table th {
    padding: 5px 10px 5px 10px;
    text-align: left;
}
.class_time_table .ages {
    width: 50px;
}
.class_time_table .time {
  width: 150px;
}
.class_time_table .date {
  width: 180px;
}
.class_time_table .enrollment {
  width: auto;
}
.class_time_table .positive {
  color: #529214;
}
.class_time_table .negative {
  color: #d12f19;
}
.class_time_table .enroll {
  padding-left: 1em;
}
input[type='checkbox'] {
  -webkit-appearance:none;
  width:20px;
  height:20px;
  background:white;
  border-radius:5px;
  border:2px solid #555;
}
input[type='checkbox']:checked {
  /* background: #abd; */
  background-image: url('/images/icons/tick.png');
  background-position: center;
  background-repeat: no-repeat;
  border:2px solid #529214;
}
input[type='checkbox']:disabled {
  background-image: url('/images/icons/cross.png');
  background-position: center;
  background-repeat: no-repeat;
  border:2px solid #d12f19;
}
.enroll-button {
  height: 56px;
  margin-top: 10px;
  background: #4A90E2;
  border: 1px solid #003A75;
  border-radius: 6px;
  cursor: pointer;
  display: block;
  color: #FFFFFF;
  font-size: 16pt;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 3px 5px #ccc;
}
.promo-button {
  /* width: 100%; */
  height: 22px;
  /* margin-top: 10px; */
  background: #4A90E2;
  border-radius: 3px;
  cursor: pointer;
  /* display: block; */
  color: #FFFFFF;
  /* font-size: 12px; */
  /* line-height: 24px; */
  font-weight: bold;
  /* letter-spacing: 0; */
  text-align: center;
  -webkit-transition: background .2s ease-in-out;
     -moz-transition: background .2s ease-in-out;
      -ms-transition: background .2s ease-in-out;
          transition: background .2s ease-in-out;
}
.promo-button:hover {
  background-color: #4281CB;
}