/**
 * Auto-generated file. Do not edit directly.
 */
/* stylelint-disable value-keyword-case */
/* stylelint-enable value-keyword-case */
.hint-wrapper {
  flex: 0 1 auto;
  display: flex;
  gap: 0.5rem;
}

.hint-section {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: rgb(var(--cat-font-color-muted, 81, 92, 108));
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.hint-section .input-hint,
.hint-section ::slotted([slot=hint]) {
  margin: 0 !important;
}

:host {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

:host([hidden]) {
  display: none;
}

label {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  font-weight: var(--cat-font-weight-body, 400);
  cursor: pointer;
}

.label-left {
  flex-direction: row-reverse;
}

.radio {
  display: flex;
  position: relative;
  align-self: flex-start;
}

.circle-placeholder {
  width: calc(1.25rem + 1px);
  flex-shrink: 0;
}

.circle {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  background-color: rgb(var(--cat-primary-bg, 0, 129, 148));
  border-radius: 10rem;
  top: calc(50% - 0.375rem);
  left: calc(50% - 0.375rem);
  visibility: hidden;
  pointer-events: none;
}

input {
  margin: 0;
  width: 1.25rem;
  height: 1.25rem;
  appearance: none;
  background-color: white;
  border: 1px solid rgb(var(--cat-border-color-dark, 215, 219, 224));
  border-radius: 10rem;
  cursor: inherit;
}
input:checked {
  border-color: rgb(var(--cat-primary-bg, 0, 129, 148));
}
input:checked + .circle {
  visibility: visible;
}
input:focus-visible {
  outline: 2px solid rgb(var(--cat-border-color-focus, 0, 113, 255));
  outline-offset: 1px;
}

:host(.cat-error) input {
  border-color: rgb(var(--cat-danger-bg, 217, 52, 13));
}
:host(.cat-error) .circle {
  background-color: rgb(var(--cat-danger-bg, 217, 52, 13));
}

.label {
  flex: 1 1 auto;
}
.is-hidden .label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.is-disabled {
  cursor: not-allowed;
  color: rgb(var(--cat-font-color-muted, 81, 92, 108));
}
.is-disabled input {
  background-color: #f2f4f7;
}
.is-disabled input:checked {
  border-color: rgb(var(--cat-border-color-dark, 215, 219, 224));
}
.is-disabled .circle {
  background-color: rgb(var(--cat-border-color-dark, 215, 219, 224));
}

.align-center .radio {
  align-self: center;
}

.align-end .radio {
  align-self: flex-end;
}