.fcr-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  width: fit-content;
}
.fcr-checkbox-input-wrapper {
  border-color: var(--fcr_ui_scene_line1);
  border-radius: var(--fcr_cornerradius_s);
  width: 24px;
  height: 24px;
  border-width: 4px;
  border-style: solid;
  position: relative;
}

.fcr-checkbox-s .fcr-checkbox-input-wrapper {
  width: 20px;
  height: 20px;
  border-width: 3px;
}
.fcr-checkbox-s .fcr-checkbox-input-wrapper > input {
  width: 14px;
  height: 14px;
}
.fcr-checkbox-s .fcr-checkbox-input-wrapper .fcr-checkbox-inner {
  width: 14px;
  height: 14px;
}

.fcr-checkbox-input-wrapper > input {
  border-radius: var(--fcr_cornerradius_s);
  width: 16px;
  height: 16px;
  opacity: 0;
}
.fcr-checkbox-inner {
  border-radius: var(--fcr_cornerradius_xxs);
  background: var(--fcr_ui_scene_white10);
  width: 16px;
  height: 16px;
  position: absolute !important;
  left: 0;
  top: 0;
  --effect-color: var(--fcr_ui_scene_ramp_brand4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fcr-checkbox-inner svg:not(.fcr-checkbox-input-indeterminate) {
  display: none;
}

.fcr-checkbox-input-wrapper > input:checked ~ .fcr-checkbox-inner svg {
  display: block;
}
.fcr-checkbox-label {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: var(--fcr_ui_scene_icontext1);
  padding-left: 4px;
  user-select: none;
}

.fcr-checkbox-brand .fcr-checkbox-input-wrapper > input:checked ~ .fcr-checkbox-inner,
.fcr-checkbox-brand .fcr-checkbox-input-wrapper .fcr-checkbox-inner-indeterminate {
  background: var(--fcr_ui_scene_ramp_brand6);
}

.fcr-checkbox-input-wrapper > input:active ~ .fcr-btn-click-effect::after {
  box-shadow: none;
  opacity: 0.5;
  transition: 0s;
}

.fcr-checkbox-check-icon-align-right {
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 100%;
}
