.lh-radio{
  display: inline-block;
  color: @color_b1;
  font-size:0;
  user-select: none;
  cursor: pointer;
  &:hover{
    .lh-radio-inner:not(.lh-radio-disabled){
      border-color:@color_theme6;
    }
  }
  + .lh-radio {
    margin-left: 14px;
  }
  .lh-radio-output{
    position: relative;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
  }
  .lh-radio-inner{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #fff;
    border: solid 1px @color_b5;
    border-radius: 50%;
    transition: all .2s;
    cursor: pointer;
    &::after{
      content: '';
      transform: scale(0);
      transition: transform .2s;
      background: @color_theme6;
      width: 6px;
      height: 6px;
      border-radius: 50%;
    }
    /*&:not(.lh-radio-disabled):hover {
      border-color:@color_theme6;
    }*/
    &.lh-radio-checked{
      background-color: #fff;
      border-color:  @color_theme6;
      &::after{
        background-color: @color_theme6;
        transform: scale(1);
      }

    }
    &.lh-radio-disabled{
      background-color: @color_b7;
      border-color:   @color_b5;
      cursor: not-allowed;
      &.lh-radio-checked{
        background-color: @color_b7;
        border-color:   @color_b5;
        cursor: not-allowed;
        &::after{
          background-color: @color_b4;
          transform: scale(1);
        }

      }
    }


  }
  .lh-radio-input{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    left: 0;
    opacity: 0;
    outline: none;
    cursor: pointer;
    z-index:-1;
  }
  .lh-radio-title{
    transform: translateY(-1px);
    display: inline-block;
    font-size: 14px;
    padding-left: 8px;
    vertical-align: middle;
    &.lh-radio-title-checked{
      color: @color_b1;
    }
  }
  &.lh-color-disabled{
    cursor: not-allowed;
    .lh-radio-title{
      color: @color_b4;
    }
  }

  &.mini{
    +.lh-radio {
      margin-left: 12px;
    }
    .lh-radio-inner{
      width: 14px;
      height: 14px;
      &::after{
        width:6px;
        height:6px;
      }
    }
    .lh-radio-title{
      font-size: 12px;
    }
  }

}


.lh-radio-group {
  display: inline-block;
  font-size: 0;
  border-collapse: separate;
}
