@charset "UTF-8";
.app-extra-form input[type="checkbox"],
.app-input-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.app-extra-form input[type="checkbox"]:focus-visible + label:before,
.app-input-checkbox:focus-visible + label:before {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
}
.app-extra-form input[type="checkbox"] + label,
.app-input-checkbox + label {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin-right: 0.5rem;
  color: var(--color-gray-900);
  font-size: 0.875rem;
  line-height: 22px;
  transition: color 0.2s ease;
}
.app-extra-form input[type="checkbox"] + label:hover:before,
.app-input-checkbox + label:hover:before {
  border-color: var(--color-control-border);
}
.app-extra-form input[type="checkbox"] + label:active:before,
.app-input-checkbox + label:active:before {
  border-color: var(--color-action);
}
.app-extra-form input[type="checkbox"] + label:before,
.app-input-checkbox + label:before {
  display: inline-block;
  cursor: pointer;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  content: "";
  vertical-align: middle;
  border: 1px solid var(--color-control-border);
  border-radius: 4px;
  background-color: var(--color-grouped-content-background);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.app-extra-form input[type="checkbox"] + label:after,
.app-input-checkbox + label:after {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 10px;
  height: 8px;
  content: "";
  opacity: 0;
  pointer-events: none;
  background-color: var(--color-on-action);
  transform: translateY(-50%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath d='m1 4 3 3 7-6' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath d='m1 4 3 3 7-6' fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
}
.app-extra-form input[type="checkbox"]:checked + label,
.app-input-checkbox:checked + label {
  color: var(--color-accent-ink);
}
.app-extra-form input[type="checkbox"]:checked + label:before,
.app-input-checkbox:checked + label:before {
  border-color: var(--color-action);
  background-color: var(--color-action);
}
.app-extra-form input[type="checkbox"]:checked + label:after,
.app-input-checkbox:checked + label:after {
  opacity: 1;
}
.app-extra-form input[type="checkbox"]:hover:checked + label:before,
.app-input-checkbox:hover:checked + label:before {
  border-color: var(--color-action);
}
.app-extra-form input[type="checkbox"]:disabled + label,
.app-input-checkbox:disabled + label {
  cursor: not-allowed;
  opacity: 0.8;
  color: var(--color-gray-600);
}

