#page-header {
    float: left;
}

#store-locator-container {
    float: left;
    margin-left: 0.4%;
    width: 99%;
    font: normal 12px Arial,Helvetica,sans-serif;
    color: #333;
}

#store-locator-container #form-container {
    clear: left;
    float: left;
    margin-top: 15px;
    width: 100%;
}

#store-locator-container #map-container {
    clear: left;
    float: left;
    margin-top: 27px;
    height: 530px;
    width: 100%;
}

#store-locator-container #map-container a {
    color: #e76737;
    text-decoration: none;
}

#store-locator-container #map-container a:hover,
#store-locator-container #map-container a:active {
    text-decoration: underline;
}

#store-locator-container #map-container .custom-marker {
    width: 32px;
    height: 37px;
    color: #fff;
    background: url(../images/custom-marker.png) no-repeat;
    padding: 3px;
    cursor: pointer;
}

#store-locator-container #loc-list {
    float: left;
    width: 27%;
    height: 530px;
    overflow: auto;
}

#store-locator-container #loc-list ul {
    display: block;
    clear: left;
    list-style: none;
    margin: 0;
    padding: 0;
}

#store-locator-container #loc-list ul li {
    display: block;
    clear: left;
    float: left;
    margin: 6px 10px;
    cursor: pointer;
    width: 95%;
    border: 1px solid #fff; /* Adding this to prevent moving li elements when adding the list-focus class*/
}

#store-locator-container #loc-list .list-label {
    float: left;
    margin: 10px 0 0 6px;
    padding: 2px 3px;
    width: 17px;
    text-align: center;
    background: #6f66b9;
    color: #fff;
    font-weight: bold;
}

#store-locator-container #loc-list .list-details {
    float: left;
    margin-left: 6px;
    width: 85%;
}

#store-locator-container #loc-list .list-details .list-content {
    padding: 10px;
}

#store-locator-container #loc-list .list-details .loc-dist {
    font-weight: bold;
    font-style: italic;
    color: #8e8e8e;
}

#store-locator-container #loc-list .list-focus {
    border: 1px solid rgba(82, 168, 236, 0.9);
    -moz-box-shadow: 0 0 8px rgba(82, 168, 236, 0.7);
    -webkit-box-shadow: 0 0 8px rgba(82, 168, 236, 0.7);
    box-shadow: 0 0 8px rgba(82, 168, 236, 0.7);
    transition: border 0.2s linear 0s,box-shadow 0.2s linear 0s;
}

#store-locator-container .loc-name {
    color: #6f66b9;
    font-weight: bold;
}

#store-locator-container #search-form {
    clear: left;
    float: left;
    height: 60px;
}

#store-locator-container #form-input {
    float: left;
}

#store-locator-container #form-input label {
    font-weight: bold;
}

#store-locator-container #form-input input {
    padding: 4px;
    line-height: 16px;
    border: 1px solid #ccc;
}

#store-locator-container #address {
    margin: 0 0 0 10px;
}

#store-locator-container #submit {
   cursor: pointer;
	color: #FFFFFF;
	line-height: 14px;
	text-transform:uppercase;
	background:#7970bf;
	-webkit-box-shadow: 0px 0px 2px #DDDDDD;
	-moz-box-shadow: 0px 0px 2px #DDDDDD;
	box-shadow: 0px 0px 2px #DDDDDD;
	margin: 2px 0 0 5px;
	border: 0;
	padding: 0px 12px 0px 12px;
}
#store-locator-container #submit:hover {
	background:#2f2f2f;
}
#store-locator-container #loading-map {
    float: left;
    margin: 4px 0 0 10px;
    width: 16px;
    height: 16px;
    background: url(../images/ajax-loader.gif) no-repeat;
}

#store-locator-container #map {
    float: left;
    width: 70%;
	margin-left:2%;
    height: 530px;
}

/* Infowindow Roboto font override */
.gm-style div,
.gm-style span,
.gm-style label,
.gm-style a {
    font-family: Arial,Helvetica,sans-serif;
}

/* Modal window */

#overlay {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: url(../images/overlay-bg.png) repeat;
}

#overlay #modal-window {
    position: absolute;
    left: 50%;
    margin-left: -460px; /* width divided by 2 */
    margin-top: 60px;
    width: 920px;
    height: 590px;
    z-index: 10010;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px #656565;
}

#overlay #modal-window #modal-content {
    float: left;
    padding: 0 22px; /* there's already a margin on the top of the map-container div */
}

#overlay #modal-window #close-icon {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    background: #2c2c2c url(../images/close-icon.png) 3px 3px no-repeat;
    border: 1px solid #000;
    border-radius: 3px;
    box-shadow: 0 0 3px #656565;
}

/* The following is for the geocode page and not the store locator */

#geocode-result {
    clear: left;
    float: left;
    margin-top: 30px;
    width: 100%;
}

@media (max-width: 580px) {
	#store-locator-container #loc-list, #store-locator-container #map{width:99%; margin:auto; clear:both;}
	#store-locator-container #loc-list ul li{float:left; width:150px; clear:none; margin:2px; min-height:180px;}
	#store-locator-container #loc-list{height:200px;}
	#store-locator-container #loc-list .list-details{width:auto;}
}