@import '../../assets/variable.less';
.moudule-user-radio-group {
  display: flex;
  .moudule-user-radio-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 @padding-md;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #f1f2f3;
    border-radius: @border-radius-small;
    cursor: pointer;
    &:hover {
      color: @primary-color;
      background-color: @themeColorOpacity6;
    }
    &:nth-child(n + 2) {
      margin-left: @margin-md;
    }
    .moudule-user-radio-button-icon {
      display: flex;
      align-items: center;
      justify-self: center;
      height: 100%;
      margin-right: @margin-xss;
    }
    .moudule-user-radio-button-active-icon {
      position: absolute;
      top: 0;
      right: 0;
      display: none;
      width: 32px;
      height: 32px;
      transform: translate(50%, -50%) rotate(45deg);
    }
    &.active {
      color: @primary-color;
      background-color: @themeColorOpacity6;
      border-color: @primary-color;
      .moudule-user-radio-button-active-icon {
        display: block;
        background: @primary-color;
      }
    }
    &.disable {
      color: @disabled-color;
      background: #fff !important;
      cursor: not-allowed;
      &.active {
        border-color: @disabled-color;
        .moudule-user-radio-button-active-icon {
          background: @disabled-color;
        }
      }
    }
  }
}
