﻿/*  
---------------------------------------------------
Form 
---------------------------------------------------  
*/
/* Component only */
.location-search-form {
  border-radius: 15px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2941176471);
  padding: 30px 45px;
  margin-bottom: 0.5%;
}
@media (max-width: 992px) {
  .location-search-form {
    padding: 35px;
  }
}
.location-search-form h2 {
  font-size: var(--h2-typography_font-size_xl);
  font-weight: 800;
  color: #000;
  margin-top: 0;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .location-search-form h2 {
    font-size: 28px;
  }
}
.location-search-form .fields {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .location-search-form .fields {
    flex-direction: row;
  }
}
.location-search-form .fields .location-search-field-container {
  margin-top: -6px;
}
.location-search-form .fields .field-wrapper {
  flex-grow: 1;
  position: relative;
}
.location-search-form .fields .field-wrapper:not(:last-child) {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .location-search-form .fields .field-wrapper.address {
    flex-grow: 2;
  }
  .location-search-form .fields .field-wrapper:not(:last-child) {
    margin-right: 15px;
    margin-bottom: 0px;
  }
}
.location-search-form .fields .field-wrapper label {
  display: block;
  position: absolute;
  left: 15px;
  top: -13px;
  background-color: #fff;
  font-size: 16px;
  padding: 0 10px;
  font-weight: bold;
  z-index: 10;
}
.location-search-form .fields .field-wrapper input, .location-search-form .fields .field-wrapper select {
  height: 50px;
  border: 2px solid #000;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
  padding: 10px 20px;
}
.location-search-form .fields .field-wrapper input::placeholder, .location-search-form .fields .field-wrapper input:invalid, .location-search-form .fields .field-wrapper select::placeholder, .location-search-form .fields .field-wrapper select:invalid {
  color: #A2A2A2;
}
.location-search-form .fields .field-wrapper .select-wrapper {
  position: relative;
}
.location-search-form .fields .field-wrapper .select-wrapper::after {
  content: "\f3d0";
  font-family: "Ionicons";
  position: absolute;
  right: 17px;
  top: 13px;
  height: 10px;
  width: 10px;
  z-index: 10;
  pointer-events: none;
}

.services-search-results {
  padding-bottom: 30px;
}
.services-search-results .field-wrapper {
  flex-grow: 1;
  position: relative;
  display: inline-block;
}
.services-search-results .field-wrapper:not(:last-child) {
  margin-bottom: 25px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .services-search-results .field-wrapper.address {
    flex-grow: 2;
  }
  .services-search-results .field-wrapper:not(:last-child) {
    margin-right: 15px;
    margin-bottom: 0px;
  }
}
.services-search-results .field-wrapper label {
  display: block;
  position: absolute;
  left: 15px;
  top: -10px;
  background-color: #fff;
  font-size: 16px;
  padding: 0 10px;
  font-weight: bold;
  z-index: 10;
}
.services-search-results .field-wrapper input, .services-search-results .field-wrapper select {
  height: 50px;
  border: 2px solid #000;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
  padding: 10px 20px;
}
.services-search-results .field-wrapper input::placeholder, .services-search-results .field-wrapper input:invalid, .services-search-results .field-wrapper select::placeholder, .services-search-results .field-wrapper select:invalid {
  color: #A2A2A2;
}
.services-search-results .field-wrapper .select-wrapper {
  position: relative;
}
.services-search-results .field-wrapper .select-wrapper::after {
  content: "\f3d0";
  font-family: "Ionicons";
  position: absolute;
  right: 17px;
  top: 13px;
  height: 10px;
  width: 10px;
  z-index: 10;
  pointer-events: none;
}
