.locations-map-container {
    position: relative;
}
.locations-map {
    background: #fafafa;
    height: 750px;
    max-height: 100vh;
    width: 100%;
}

.location-tab-content {
    display: none;
}
.location-tab-content.active {
    display: block;
    -webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

.locations-list-container {
    padding: 80px 0 100px;
}

.locations-list,
.locations-list-tabs-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}
.locations-list-tabs-nav {
    margin-bottom: 45px;
}
.locations-list-tabs-nav li {
    display: inline-block;
}
.locations-list-tabs-nav a {
    display: inline-block;
	border-bottom: 2px solid #E0E1E4;
	padding: 8px 20px 15px;
	line-height: 1;
	text-decoration: none;
	min-width: 150px;
	text-align: center;
}
.locations-list-tabs-nav a:hover {
    border-color: #a8e8fd;
}
.locations-list-tabs-nav a.active {
    border-color: #2CC6FA;
}

.locations-list {
    margin-left: -12px;
    margin-right: -12px;
}
.locations-list li {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    padding: 0 12px;
    margin-bottom: 20px;
}
.locations-list a {
    display: inline-block;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #020613;
    line-height: 1;
    padding: 2px 30px 20px 20px;
}
.locations-list a:before {
    content: '\f041';
    font-family: 'FontAwesome';
    color: #2CC6FA;
    display: inline-block;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 0;
}
.locations-list a:after {
    content: '';
    display: inline-block;
    background-image: url(../images/bd-arrow-black-right.svg);
    width: 23px;
    height: 13px;
    position: absolute;
	right: 0;
	top: 3px;
}

/* Customize Infowindow */
.locations-map .gm-style .gm-style-iw-c {
    border-radius: 0;
    box-shadow: 0 7px 34px 0 rgba(2,6,19,0.08);
}
.locations-map .info-window {
	padding: 5px;
	font-size: 14px;
	font-family: "Open Sans";
	font-weight: 400;
    line-height: 1.4;
    min-width: 220px;
}
.info-window .e1 {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 5px;
}
.info-window .e3,
.info-window .e2 {
    margin-bottom: 5px;
}
.info-window .e4 {
    font-size: 12px;
    margin-top: 15px;
}
.info-window a {
    text-decoration: underline;
}

/* Search Form */
.locations-search-container {
	height: 0;
	position: absolute;
	width: 100%;
	top: 100px;
}
.locations-search-container > .wrapper {
    height: 0;
}

.locations-search {
    display: none;
    background: #fff;
    width: 410px;
    max-width: 100%;
    box-shadow: 0 2px 34px 0 rgba(2,6,19,0.08);
    border-radius: 2px;
}
.locations-search.active {
    display: block;
    -webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}
.locations-search .s1 {
    border-bottom: 1px solid #E0E1E4;
    padding: 25px;
}
.locations-search .s2 {
    padding: 15px 25px 30px;
}
.locations-search .e1 {
    font-size: 18px;
	margin: 0;
}
.locations-search .e2 {
    font-size: 14px;
    margin-bottom: 15px;
}

.location-search-form {
    display: flex;
    justify-content: space-between;
}
.location-search-form .c1 {
    margin-right: 20px;
    width: 210px;
    max-width: 100%;
}
.location-search-form .btn-search-location {
	padding: 16.5px 25px;
}
.btn-search-location .fa {
    margin-left: 5px;
}

/* Search Results */
.locations-search-results-container {
    display: none;
    background: #fff;
    width: 410px;
    max-width: 100%;
    box-shadow: 0 2px 34px 0 rgba(2,6,19,0.08);
    border-radius: 2px;
}
.locations-search-results-container.active {
    display: block;
    -webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}
.locations-search-results-container .s1 {
    background: #2CC6FA;
    color: #fff;
    padding: 22px 50px 22px 25px;
    position: relative;
}
.locations-search-results-container .s2 {
    padding: 25px;
}
.locations-search-results-container .e1 {
    font-weight: 700;
	font-size: 15px;
    cursor: pointer;
    text-decoration: underline;
}
.locations-search-results-container .e1:hover {
    text-decoration: none;;
}
.locations-search-results-container .e2 {
	position: absolute;
	right: 15px;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
.locations-search-results-container .e2:before,
.locations-search-results-container .e2:after {
    content: '';
    width: 30px;
    display: block;
	position: absolute;
	background-color: #fff;
    height: 2px;
    top: 12px;
}
.locations-search-results-container .e2:before {
	transform: translate3d(0, 2px, 0) rotate(45deg);
}
.locations-search-results-container .e2:after {
	transform: translate3d(0, 2px, 0) rotate(-45deg);
}

.locations-search-results ul {
    list-style: none;
    padding: 0;
	margin: 0;
}
.locations-search-results li {
    position: relative;
    line-height: 1.4;
    padding-left: 24px;
    margin-bottom: 12px;
}
.locations-search-results li:before {
    content: '\f041';
    font-family: 'FontAwesome';
    font-size: 18px;
    color: #2CC6FA;
    position: absolute;
    left: 0;
}