.checkbox-label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: normal;
}

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

	/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-color: black;
  border: 2px solid #8a9196;
  border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.checkbox-label:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-label input:checked ~ .checkmark {
  background-color: #fff;
}

.checkbox-label input:disabled ~ .checkmark {
  border-style:dotted;
  background-color: #ccc;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "\f00c";
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  position: absolute;
  display: none;
  color: #43cd00;
  position: relative;
  bottom: 6px;
  left: 3px;
  font-size: 25px;
}
/* Show the checkmark when checked */
.checkbox-label input:checked ~ .checkmark:after {
  display: block;
}


/* Show the checkmark when checked */
.checkbox-label input:checked ~ .checkmark:after {
  display: block;
}


/* Style the checkmark/indicator */
.btn-home {
    color: white;
    background-color: #78bbc4;
    border-color: transparent;
    border-radius: 0px;
    padding: 1rem 1rem !important;
}

.btn-home:hover {
    color: white;
    font-weight: 600;
}