/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */
/**
 * @file
 * Checkbox and radio input elements.
 */
input[type=radio] {
  width: 20px !important;
  height: 20px;
  border: 1px solid var(--bs-gray-400);
  border-radius: 50%;
  padding: 8px;
  appearance: none;
  cursor: pointer;
}

input[type=radio]:focus {
  outline: unset !important;
  border: 1px solid var(--bs-gray-500);
}

input[type=radio]:hover {
  border: 1px solid var(--bs-gray-500);
}

input[type=radio]:checked {
  border: 1px solid var(--bs-gray-500);
  background-color: var(--primary-color);
  background-image: url(../../media/images/check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}

.form-boolean-radios .form-type-boolean {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-boolean-radios .form-type-boolean .form-item__label {
  margin-bottom: 0 !important;
}

input[type=checkbox] {
  width: 20px !important;
  height: 20px;
  border: 1px solid var(--bs-gray-400);
  background-color: #fff;
  padding: 8px;
  border-radius: 2px;
  appearance: none;
  cursor: pointer;
}

input[type=checkbox]:focus {
  outline: unset !important;
  border: 1px solid var(--primary-color);
}

input[type=checkbox]:hover {
  border: 1px solid var(--primary-color);
}

input[type=checkbox]:checked {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  background-image: url(../../media/images/check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}

/*# sourceMappingURL=form-boolean.css.map*/