@address-item-width: 5.5em;
.address{
  &-popover{
    padding: 0;
    &__content{
      padding: 0 10px 10px;
    }
  }
  &__list{
    &:before, &:after{
      content: "";
      display: block;
      clear: both;
    }
    list-style: none;
    padding: 0;
    margin: 0;
  }
  &__item{
    display: inline-block;
    padding: 5px 0;
    cursor: pointer;
    float: left;
    width: @address-item-width;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    &--long{
      width: @address-item-width * 2;
    }
    &:hover{
      background-color: darken(#fff, 5%);
      color: #000;
    }
  }
}