
.checkbox-block {
  display: inline-table;
  margin: 5px;
  text-align: center;
}

/* Hide the browser's default checkbox */
.checkbox-block input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}


/* Create a custom checkbox */
.checkmark {
  display: block;
  border-radius: 5px;
  font-size: 12pt;
  font-weight: normal;
  padding-bottom: 10px;
}

/* On mouse-over, add a grey background color */
.checkbox-block:hover span{
  color: grey;
  cursor: pointer;
}

/* When the checkbox is checked, add a blue background */
.checkbox-block 
input[type="checkbox"]:checked+span {
  color: #eb9e2a;
}

.indicators{
    height: 200px;
}