.rls-map {
  position: relative;
}

.rls-form-container {
  background-color: #ffb33a;
  padding: 40px 60px;
  border-radius: 5px;
  text-align: center;
  z-index: 2;
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.has-results .rls-form-container {
  width: 30%;
  margin: 0 auto;
  padding: 20px;
  min-height: initial;
}

.rls-map-title {
  font-family: 'GardenGrownCaps-Regular';
  font-size: 30px!important;
  margin: 0 0 20px 0;
  color: #ffffff;
}

.has-results .rls-map-title {
  margin: 0;
}

.rls-map .hidden {
  display: none;
}

.rls-address-search { margin: 0 auto;}
.rls-address-search fieldset {
  position: relative;
  display: flex;
  flex-direction: column;
}

.rls-address-search label {
  font-family: 'Lato';
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  color: #ffffff;

}

.rls-map .rls-address-search input[type="text"] {
  margin: 0;
  border-radius: 0;
}

.rls-map .rls-address-search input::placeholder {
  font-size: 16px;
}

.rls-map .rls-address-search button {
  background-color: #5ed4cf;
  border: 1px solid #5ed4cf;
  border-radius: 0;
  width: 100%;
  margin: 0;
}

.rls-map .rls-address-search button:hover {
  background-color: #48a5ac;
  border: 1px solid #48a5ac;
}

@media screen and (max-width: 768px) {
  .has-results .rls-form-container {
    width: 100%;
  }
}

#rls-search-again {
  color: #ffffff;
  font-size: 16px;
}

#rls_ajax_results {
  background-color: #f2f2f2;
  margin-top: -35px;
  margin-bottom: 25px;
  padding: 60px 25px 25px 25px;
  z-index: 1;
  display: none;
  border-radius: 5px;
}

#rls_ajax_results.rls-more-link {
  padding: 60px 25px 0 25px;
}

.has-results #rls_ajax_results {
  display: block;
}

#rls_ajax_results .map-results-container {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0;
}

#rls_ajax_results .map-result {
  width: 27%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px;
}

#rls_ajax_results .map-result-name {
  color: #15033D;
  font-size: 16px;
  margin: 0;
  font-family: 'Lato';
}

#rls_ajax_results .map-result-address,
#rls_ajax_results .map-result-distance {
  color: #15033D;
  font-family: 'Lato';
  font-size: 16px;
  padding-bottom: 0;
  margin-bottom: 0;
}

#rls_ajax_results .map-result-link {
  color: #e08700;
  font-size: 16px;
}

#rls_ajax_results .map-results_see-all {
  font-size: 20px;
  color: #e08700;
  font-weight: 300;
  font-family: 'Lato';
  display: block;
  margin: 10px auto;
  padding-bottom: 30px;
  width: 50%;
  position: relative;
  text-align: center;
}

#rls_ajax_results .map-results_see-all::after {
  content: "\232A \232A";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  transition: all 0.5s;
  font-weight: bold;
}

#rls_ajax_results .map-results_see-all:hover::after {
  bottom: -5px;
}

@media screen and (max-width: 768px) {
  #rls_ajax_results .map-results-container {
    flex-direction: column;
    align-items: center;
  }

  #rls_ajax_results .map-result {
    width: 50%;
    margin-bottom: 20px;
  }
}