.enquiry-radio__root {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;

  &:hover {
    .enquiry-radio__controller::after {
      color: var(--color-brand-blue-700);
    }
  }

  .enquiry-radio__controller {
    position: relative;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    user-select: none;
    appearance: none;

    &::after {
      font-family: 'Material Symbols Outlined';
      font-size: 24px;
      font-weight: 400;
      font-style: normal;
      line-height: 1;
      display: inline-block;
      min-width: 24px;
      max-width: 24px;
      min-height: 24px;
      max-height: 24px;
      transition: all 0.25s ease-in-out;
      white-space: nowrap;
      letter-spacing: normal;
      text-transform: none;
      word-wrap: normal;
      overflow: hidden;
      content: 'radio_button_unchecked';
      direction: ltr;
      -webkit-font-feature-settings: 'liga';
      -webkit-font-smoothing: antialiased;
      color: var(--color-gray-400);
    }

    &:focus, &:focus-visible {
      &::after {
        color: var(--color-brand-blue-800);
      }
    }

    &:checked {
      &::after {
        content: 'radio_button_checked';
        color: var(--color-brand-blue-600);
      }
    }

    &:disabled {
      cursor: not-allowed;

      &::after {
        cursor: not-allowed;
        color: var(--color-gray-200);
      }
    }
  }

  .enquiry-radio__label {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 20px;
    margin-left: 8px;
    letter-spacing: 0.2px;
    cursor: pointer;
    user-select: none;
    color: var(--color-gray-900);
  }

  .enquiry-radio__helper {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 12px;
    position: absolute;
    top: calc(100% + 2px);
    left: 6px;
    letter-spacing: 0.2px;
    user-select: none;
    color: var(--color-gray-500);

    &:empty {
      display: none;
    }
  }

  &.disabled {
    .enquiry-radio__label {
      cursor: not-allowed;
      color: var(--color-gray-200);
    }
  }

  &.small {
    .enquiry-radio__label {
      margin-left: 4px;
    }

    .enquiry-radio__controller {
      width: 20px;
      height: 20px;

      &::after {
        font-size: 20px;
        min-width: 20px;
        max-width: 20px;
        min-height: 20px;
        max-height: 20px;
      }
    }
  }

  &.large {
    .enquiry-radio__label {
      margin-left: 12px;
    }

    .enquiry-radio__controller {
      width: 28px;
      height: 28px;

      &::after {
        font-size: 28px;
        min-width: 28px;
        max-width: 28px;
        min-height: 28px;
        max-height: 28px;
      }
    }
  }

  &.xx-large {
    .enquiry-radio__label {
      margin-left: 16px;
    }

    .enquiry-radio__controller {
      width: 32px;
      height: 32px;

      &::after {
        font-size: 32px;
        min-width: 32px;
        max-width: 32px;
        min-height: 32px;
        max-height: 32px;
      }
    }
  }
}
