.fcr-radio {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  width: fit-content;
  max-width: 100%;
}
.fcr-radio-input-wrapper {
  border-color: var(--fcr_ui_scene_line1);
  border-radius: var(--fcr_cornerradius_round);
  width: 20px;
  height: 20px;
  border-width: 3px;
  border-style: solid;
  position: relative;
  flex-shrink: 0;
}
.fcr-radio-transparent .fcr-radio-input-wrapper {
  border-color: transparent;
}
.fcr-radio-input-wrapper > input {
  border-radius: var(--fcr_cornerradius_round);
  width: 14px;
  height: 14px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.fcr-radio-inner {
  background: var(--fcr_ui_scene_white10);
  border-radius: var(--fcr_cornerradius_round);
  width: 14px;
  height: 14px;
  position: absolute !important;
  left: 0;
  top: 0;
  --effect-color: var(--fcr_ui_scene_ramp_brand4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fcr-radio-transparent .fcr-radio-inner {
  background: transparent;
  border-radius: var(--fcr_cornerradius_round);
}
.fcr-radio-inner svg {
  opacity: 0;
}
.fcr-radio-input-wrapper > input:checked ~ .fcr-radio-inner svg {
  opacity: 1;
}
.fcr-radio-label {
  color: var(--fcr_ui_scene_icontext1);
  font-size: 14px;
  line-height: 12px;
  font-weight: 400;
  padding-left: 4px;
  user-select: none;
  overflow-x: hidden;
  overflow-y: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.fcr-radio-brand .fcr-radio-input-wrapper > input:checked ~ .fcr-radio-label {
  color: var(--fcr_ui_scene_icontext1);
}
.fcr-radio-brand .fcr-radio-input-wrapper > input:checked ~ .fcr-radio-inner {
  background: var(--fcr_ui_scene_ramp_brand6);
}
.fcr-radio-input-wrapper > input:active ~ .fcr-btn-click-effect::after {
  box-shadow: none;
  opacity: 0.5;
  transition: 0s;
}
