/* ######## GRID ######### */
/* ######## MARGINS / PADDING ########### */
/* ############### */
form label {
  margin-bottom: 1rem;
  cursor: pointer;
}
form input[type="checkbox"],
form input[type="radio"] {
  opacity: 0;
  padding: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
form input[type="checkbox"] + .label,
form input[type="radio"] + .label {
  background-color: transparent;
  color: #151515;
  position: relative;
  white-space: normal;
  padding: 0 0 0 30px;
  margin: 0;
}
form input[type="checkbox"] + .label:before,
form input[type="radio"] + .label:before {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px auto;
  border: 1px solid #1D71B9;
  border-radius: 2px;
}
form input[type="checkbox"]:checked + .label:before {
  background-image: url("/static/img/icons/check.svg");
}
form input[type="radio"] + .label:before {
  border-radius: 50%;
}
form input[type="radio"]:checked + .label:before {
  background-image: url("/static/img/icons/dot.svg");
  background-size: 8px auto;
}
form textarea {
  min-height: 120px;
}
.newsletter form input[type="checkbox"],
.newsletter form input[type="radio"] {
  opacity: 1;
  position: relative;
  top: 4px;
}
.filter select {
  height: auto;
  padding: 10px;
}
/*# sourceMappingURL=form.css.map */