.component-check-address{
  display: inline;
  label{
    font-size: @font-14;
    color: @blue-gray;

    &:before{
      font-size: @font-16;
      color: @gray-light-l;
      margin-right: .05rem;
      .border-radius(@font-16/2);
      .transition(all 0.2s ease-in);
    }

    &.actived{
      &:before{
        font-size: @font-16;
        background: @yellow-dark;
        color: @white;
        content: "\e619";
      }
    }

    &.disabled{
      cursor: not-allowed;
      color: @gray-light-l;
      &:before{
        color: @gray-light-2l;
        background: @gray-light;
      }
    }
  }
}
