  /************
 * CHECKBOX *
 ************/

 /* https://www.w3schools.com/howto/howto_css_custom_checkbox.asp */

/* Customize the label (the container) */
label.checkbox {
  display: block;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
label.checkbox input {
  position: absolute;
  opacity: 100;
  cursor: pointer;
  z-index: -1;
  left: 5px;
  top: 5px;
  /*
  height: 0;
  width: 0;
  */
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
}

/* On mouse-over, change border color */
label.checkbox:hover input ~ .checkmark {
  border-color: #b5b5b5;
}

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

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

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

/* Style the checkmark/indicator */
label.checkbox .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/**********
 * HEADER *
 **********/

#header {
  padding: 1rem 1.5rem;
}

#logo {
    width: 120px;
}

@media screen and (min-width: 769px) {
  .level-right {
      margin-top: 70px;
  }
}

/********
 * HERO *
 ********/

@media screen and (min-width: 1024px) {
  #hero {
    /*
    text-align: center;
    */
  }
}

/********
 * FORM *
 * ******/

#nospam {
  margin-top: 1.5rem;
  font-style: italic;
}

/************
 * FEATURES *
 ************/

.notification {
    height: 100%;
}

/************
 * PARTNERS *
 ************/

#partners {
  cursor: pointer;
}

#partners img {
    filter: grayscale(100%);
    max-width: 260px;
    max-height: 100px;
    margin: 25px;
}

#partners img:hover {
    filter: grayscale(0%);
}
