.ui-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: auto;
}
.ui-layout--primary {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.ui-layout__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.ui-layout--fill-parent {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.ui-layout--full-screen {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.address-popover {
  padding: 0;
}
.address-popover__content {
  padding: 0 10px 10px;
}
.address__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.address__list:before,
.address__list:after {
  content: "";
  display: block;
  clear: both;
}
.address__item {
  display: inline-block;
  padding: 5px 0;
  cursor: pointer;
  float: left;
  width: 5.5em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.address__item--long {
  width: 11em;
}
.address__item:hover {
  background-color: #f2f2f2;
  color: #000;
}
