/* Allmänt */
.search-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.search-inner-container {
  max-width: 1600px;
  width: 100%;
  padding: 0px 15px;
	  background-color: #173b51;
}

/* Search Header */
.search-header {
  display: flex;
  flex-direction: column;
  padding: 20px 0px;
}
.search-header h1 {
  color: white;
  font-size: 60px;
  text-align: center;
}

#parking-search {
  border: none;
  padding-left: 60px;
}

.search-input form {
  display: flex;
  width: 60%;
  margin: auto;
}

.search-input button {
  font-size: 18px;
  background-color: white;
  position: absolute;
}

/*
  Search Navbar
*/
.search-nav-container {
  padding: 10px 0px;
}
.search-nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}
.search-nav li {
  margin: 0px 35px;
}
.search-nav i {
  color: #47a1b2;
  font-size: 20px;
  position: absolute;
  line-height: 30px;
}
.search-nav a {
  color: white;
  text-transform: uppercase;
  margin-left: 15px;
  font-weight: 400;
  font-size: 18px;
}
.search-nav a:hover {
  color: #47a1b2;
}
.search-nav .search-top-menu {
  padding-bottom: 5px;
}
.search-nav .search-sub-menu {
  margin-top: 0px !important;
  position: absolute;
  flex-direction: column;
  background-color: white;
  z-index: 1;
  border-radius: 2px;
  min-width: 190px;
    transition: box-shadow 0.3s ease-in-out;
    -webkit-box-shadow: 0px 0px 22px 1px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 0px 22px 1px rgba(0,0,0,0.10);
    box-shadow: 0px 0px 22px 1px rgba(0,0,0,0.10);
}
.search-nav .search-sub-menu {
  display: none;
}
.search-nav .search-sub-menu li {
  margin: 0px;
}
.search-nav .search-sub-menu a {
  text-transform: capitalize;
  font-weight: normal;
  color: black;
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  margin-left: 0px;
}
.search-nav .search-sub-menu a:hover {
  background-color: #47a1b2;
  color: white;
}

/* Resellers list view */
.resellers-list-view {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding-top: 20px;
}
.resellers-list-view .continent-list {
  padding: 0px 20px;
  width: 20%;
}
.resellers-list-view .continent-list .reseller {
  background-color: white;
  margin-bottom: 20px;
}
.resellers-list-view .continent-list .reseller h4,
.resellers-list-view .continent-list .reseller p {
  margin-bottom: 0px;
}


/*
   Google Maps
*/
.acf-map {
    width: 100%;
    height: 600px;
    border: #ccc solid 1px;
    margin: 0px 0;
}
.acf-map img {
   max-width: inherit !important;
}
.search-map-container {
  width: 100%;
}
.acf-map .marker {
  display: none;
}
/* Marker content */
.acf-map h4,
.acf-map p {
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 767px) {
  .search-header h1 {
    font-size: 50px;
    line-height: 1;
  }
  .search-header .search-nav > ul {
    flex-direction: column;
  }
  .search-input form {
    width: 90%;
  }
  .search-container {
    border-top-left-radius: 80px;
  }
	
  .resellers-list-view {
    display: block;
  }
  .resellers-list-view .continent-list {
    width: 50%;
	float: left;
  }
}

@media (max-width: 480px) {
  .resellers-list-view .continent-list {
    width: 100%;
	float: left;
  }
}