:host {
  display: inline-flex;
  vertical-align: top;
}

.checkbox__container {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  align-items: top;
  padding: 0px;
  gap: 8px;
  font-family: var(--ifx-font-family);
  vertical-align: bottom;
}
.checkbox__container .checkbox__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.checkbox__container .checkbox__wrapper {
  box-sizing: border-box;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 1px solid #575352;
  border-radius: 1px;
  flex: none;
  order: 0;
  flex-grow: 0;
  align-self: flex-start;
}
.checkbox__container .checkbox__wrapper.checkbox-m {
  height: 24px;
  width: 24px;
}
.checkbox__container .checkbox__wrapper.error {
  border-color: #cd002f;
}
.checkbox__container .checkbox__wrapper.readOnly {
  border-color: #bfbbbb;
}
.checkbox__container .checkbox__wrapper:not(.disabled):not(.readOnly):hover {
  background-color: #eeeded;
  border: 1px solid #575352;
  border-radius: 1px;
  flex: none;
  order: 0;
  flex-grow: 0;
}
.checkbox__container .checkbox__wrapper.disabled {
  background-color: #bfbbbb;
  border-color: #bfbbbb;
  border-radius: 1px;
  flex: none;
  order: 0;
  flex-grow: 0;
}
.checkbox__container .checkbox__wrapper.checked:not(.indeterminate) {
  background-color: #0a8276;
  border-radius: 1px;
  border-color: rgba(0, 0, 0, 0);
  flex: none;
  order: 0;
  flex-grow: 0;
  color: #ffffff;
}
.checkbox__container .checkbox__wrapper.checked:not(.indeterminate).error {
  background-color: #cd002f;
}
.checkbox__container .checkbox__wrapper.checked:not(.indeterminate).readOnly {
  background-color: #3c3a39;
}
.checkbox__container .checkbox__wrapper.checked:not(.indeterminate).disabled {
  background: #bfbbbb;
  border-radius: 1px;
  flex: none;
  order: 0;
  flex-grow: 0;
}
.checkbox__container .checkbox__wrapper.checked:not(.indeterminate):not(.disabled):not(.readOnly):hover {
  background-color: #0a8276;
  border-radius: 1px;
  flex: none;
  order: 0;
  flex-grow: 0;
}
.checkbox__container .checkbox__wrapper.indeterminate:before {
  content: "";
  display: block;
  width: 70%;
  height: 2px;
  background-color: #1d1d1d;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.checkbox__container .checkbox__wrapper.indeterminate.readOnly {
  background-color: #3c3a39;
  border-color: #3c3a39;
}
.checkbox__container .checkbox__wrapper.indeterminate.readOnly:before {
  background-color: #ffffff;
}
.checkbox__container .checkbox__input:focus-visible + .checkbox__wrapper {
  border: 1px solid #575352;
  outline: 2px solid #0a8276;
  outline-offset: 2px;
}
.checkbox__container .checkbox__input:focus-visible + .checkbox__wrapper.checked:not(.indeterminate) {
  border: 1px solid transparent;
  outline: 2px solid #0A8276;
  outline-offset: 2px;
}
.checkbox__container .label {
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #1d1d1d;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  max-width: 100%;
}
.checkbox__container .label.label-m {
  font-size: 1rem;
  line-height: 1.5rem;
}
.checkbox__container .label.disabled {
  color: #bfbbbb;
}
.checkbox__container .label.error {
  color: #1d1d1d;
}
.checkbox__container .checkbox__wrapper:hover, .checkbox__container .label:hover {
  cursor: pointer;
}