/**
 * 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;
}

.label {
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-word;
}

.input-field:not(.input-horizontal) .label-container.hidden,
.textarea-field:not(.textarea-horizontal) .label-container.hidden,
.select-field:not(.select-horizontal) .label-container.hidden {
  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;
}

.label-container {
  flex-basis: var(--label-size, 33.33%);
}

.label-wrapper {
  display: flex;
  gap: 0.25rem;
}

.label-metadata {
  display: flex;
  flex-shrink: 0;
  flex-grow: 1;
  justify-content: space-between;
  gap: 0.25rem;
  color: rgb(var(--cat-font-color-muted, 81, 92, 108));
}

.label-optional,
.label-character-count {
  display: inline-flex;
  align-items: center;
  max-height: 1.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
}

.label-character-count {
  margin-left: auto;
}

.input-horizontal .label-container.hidden label,
.textarea-horizontal .label-container.hidden label,
.select-horizontal .label-container.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;
}
.input-horizontal .label-wrapper,
.textarea-horizontal .label-wrapper,
.select-horizontal .label-wrapper {
  flex-direction: column;
}
.input-horizontal .label-container,
.textarea-horizontal .label-container,
.select-horizontal .label-container {
  flex-shrink: 0;
}
.input-horizontal label,
.textarea-horizontal label,
.select-horizontal label {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
}
.input-horizontal .label-metadata,
.textarea-horizontal .label-metadata,
.select-horizontal .label-metadata {
  justify-content: flex-start;
}
.input-horizontal .label-metadata .label-character-count,
.textarea-horizontal .label-metadata .label-character-count,
.select-horizontal .label-metadata .label-character-count {
  margin-left: 0;
}

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

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

label {
  flex: 0 1 auto;
  display: flex;
  gap: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  font-weight: var(--cat-font-weight-body, 400);
  /* stylelint-disable property-no-vendor-prefix */
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* stylelint-enable property-no-vendor-prefix */
  cursor: pointer;
  position: relative;
}

.label-left {
  flex-direction: row-reverse;
}
.label-left input {
  right: 1px;
  left: unset;
}

input {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  opacity: 0;
  cursor: inherit;
  left: 1px;
  top: 0.5px;
}

.box-placeholder {
  width: 1.25rem;
  flex-shrink: 0;
}

.box {
  flex: 0 0 auto;
  display: flex;
  position: relative;
  height: 1.25rem;
  width: 1.25rem;
  background-color: white;
  border: 1px solid rgb(var(--cat-border-color-dark, 215, 219, 224));
  border-radius: var(--cat-border-radius-s, 0.125rem);
  transition: background-color 125ms ease, border-color 125ms ease;
  pointer-events: none;
  box-sizing: border-box;
}
.box svg {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 125ms ease;
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.99);
}
:checked + .box {
  background-color: rgb(var(--cat-primary-bg, 0, 129, 148));
  border-color: rgb(var(--cat-primary-bg, 0, 129, 148));
  stroke: rgb(var(--cat-primary-fill, 255, 255, 255));
}
:checked + .box .check {
  stroke-dashoffset: 0;
}
:indeterminate + .box {
  background-color: rgb(var(--cat-primary-bg, 0, 129, 148));
  border-color: rgb(var(--cat-primary-bg, 0, 129, 148));
  stroke: rgb(var(--cat-primary-fill, 255, 255, 255));
}
:indeterminate + .box .check {
  stroke-dashoffset: 16px;
}
:indeterminate + .box .dash {
  stroke-dashoffset: 0;
}
:focus-visible + .box {
  outline: 2px solid rgb(var(--cat-border-color-focus, 0, 113, 255));
  outline-offset: 1px;
}
.is-disabled .box {
  background-color: #f2f4f7;
  border-color: rgb(var(--cat-border-color-dark, 215, 219, 224));
  stroke: rgb(var(--cat-font-color-muted, 81, 92, 108));
}

:host(.cat-error) .box {
  border: 1px solid rgb(var(--cat-danger-bg, 217, 52, 13));
}
:host(.cat-error) :checked + .box,
:host(.cat-error) :indeterminate + .box {
  background-color: rgb(var(--cat-danger-bg, 217, 52, 13));
  border-color: rgb(var(--cat-danger-bg, 217, 52, 13));
  stroke: rgb(var(--cat-danger-fill, 255, 255, 255));
}

.label {
  flex: 1 1 auto;
  min-width: 0;
}
.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));
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}