div.address-list-container{
	width: 100%;
	float: right;
	position: absolute;
	top: 50px;
	z-index: 50;
	border-radius: 0px 0px 5px 5px;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: rgba(0, 0, 0, 0.498039) 0px 1px 5px 0px;
	text-align: center;
	font-size: 15px;
	background: rgb(255, 255, 255);
	max-height: 300px;
	overflow: auto;
}
span.area-title{
	font-weight: bold;
	font-size: 110%;
	display: block;
	width: 100%;
	height: 30px;
	line-height: 30px;
}

li.address-listing:hover,li.selected-address, li.address-listing a:focus{
  background: var(--light-blue-2);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
li.address-listing {
  height: 30px;
  line-height: 30px;
  overflow: hidden;
}
div.address-search-error p{
  color: rgb(220,36,31);
  padding: 0;
  margin: 0;
  height: 30px;
  line-height: 30px;
  font-weight: bold;
}
span.clear-search{
	  position: absolute;
	  right: 0;
	  display: none;
	  height: 40px;
	  line-height: 40px;
	  padding: 0 10px 0 10px;
	  font-weight: bold;
	  cursor: pointer;
	  z-index: 51;
}

div.search-address-holder:hover span.clear-search{
	display: block;
}

ul.address-list {
    margin: 0;
}

ul.address-list li ul {
    margin: 10px 0;
}

div.expand-search-area {
    padding: 20px;
    background: var(--light-blue-2);
    color: white;
    font-weight: bold;
    font-size: 125%;
    border-radius: 5px;
    box-shadow: 1px 1px 3px 1px rgba(0,0,0,.5);
    text-shadow: 1px 1px 1px rgba(0,0,0,.5);
    cursor: pointer;
}