div.address-list-container{
	width: 100%;
	float: right;
	position: absolute;
	top: 40px;
	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: #4986E7;
  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: #4986E7;
    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;
}

button.pickup-point-button {
    width: 40px;
    height: 40px;
    padding: 0;
    box-shadow: none;
    margin: 0;
    float: right;
    border-radius: 0 5px 5px 0;
}

button.pickup-point-button:disabled{
    background: #ccc;
    border-color: #ccc;
}

button.pickup-point-button:hover,
button.pickup-point-button:focus{
    opacity: 0.8;
    color: white;
}

input.fake-address-search-input.pickup-point,
input.false-address-search.pickup-point{
    width: calc(100% - 40px)!important;
    border-radius: 0;
    float: left;
}

.search-address-holder.pickup-point{
    display: flex;
}

.pickup-point span.clear-search {
    right: 50px;
}

.pickup-point-modal {
    width: 100dvw;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    background: #111F291A;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pickup-point-modal-content {
    width: 400px;
    height: 400px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 4px 22px 54px #00263A24;
}

.pickup-point-modal-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.pickup-point-modal-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.pickup-point-modal-actions button {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    box-shadow: none;
    border-radius: 25px;
    font-size: 150%;
    width: 100px;
    text-shadow: none;
    font-weight: normal;
    margin: 0;
}

.pickup-point-modal-actions button.pickup-point-modal-cancel {
    margin-right: 10px;
}

.pickup-point-modal-actions button:hover, .pickup-point-modal-actions button:focus {
    opacity: 0.8;
}

.pickup-point-modal-title {
    font-size: 200%;
    padding-top: 20px;
    margin-bottom: 20px;
}

.pickup-point-modal-entry label {
    width: 100%;
    background: transparent;
    color: #000;
    text-transform: none;
    height: 100px;
    float: none;
    text-align: left;
}

.pickup-point-modal-entry input[type="text"] {
    display: block;
    float: none;
    width: 100%;
    background: #fff;
    box-shadow: none;
    border-radius: 5px;
}

a.pickup-point-clear {
    margin-right: auto;
    line-height: 50px;
    font-size: 150%;
    font-weight: 300;
    color: #4286f4;
}