/* ----------------------------------------------------
		Start New Sign Up Form Styles
------------------------------------------------------- */

.signUpForm {
  position: relative;
}

  .signUpForm .submitingFormOverlay {
    position: absolute;
    background-color: rgba(255,255,255,0.8);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: none;
  }

    .signUpForm .submitingFormOverlay.display {
      display: flex;
    }

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.signUpForm .submitingFormOverlay img {
  animation: rotation 2s linear infinite
}

.signUpForm .formHeader {
  margin-bottom: 15px;
}

.signUpForm .fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

  .signUpForm .fields .formRow {
    display: flex;
    flex-direction: column;
    gap: 15px 0;
  }

  .signUpForm .fields input:not([type=submit]),
  .signUpForm .fields select {
    width: 100%;
    box-sizing: border-box;
    background: #F4F4F4;
    padding: 12px 10px !important;
    line-height: 1.4 !important;
    font-size: 15px !important;
    display: block !important;
    border: none;
    display: inline-block;
    border: 2px solid #F4F4F4;
    color: #727272;
    -webkit-appearance: none; /* Removes iOS default styling */
    appearance: none;
  }

.signUpForm label:has(+*[data-val-required])::after {
  content: "*";
  display: inline-block;
  margin-left: 5px;
  color: #990800;
}

.signUpForm label {
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: none;
}

.signUpForm .fields select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg fill='' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 10px;
}

.signUpForm *:focus-visible {
  outline: 1px solid #0052a5;
}

.signUpForm input[type=submit] {
  background: #ac2d2d;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  color: #ffffff;
  height: 35px;
  width: 100%;
  margin: 0 0 0 0;
  text-transform: uppercase;
  font: 0.842em 'proxima_nova_rgbold', arial, helvetica, sans-serif;
  cursor: pointer;
}

.signUpForm .formError ul {
  list-style: disc;
  margin-left: 20px;
  font-size: 16px;
  color: #ac2d2d;
  margin-bottom: 10px;
}

@media (min-width: 600px) {
  .signUpForm .fields .formRow {
    flex-direction: row;
    justify-content: space-between;
  }

  .signUpForm .fields .formCol {
    flex-basis: 48%;
  }
}

/* ----------------------------------------------------
		End New Sign Up Form Styles
------------------------------------------------------- */

.pac-container {
  background-color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Match your site font */
  border-radius: 4px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-top: 5px;
  z-index: 1050; /* Ensure it stays above other form elements */
}
/* Styling each individual suggestion row */
.pac-item {
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  border-top: 1px solid #eee;
  color: #666;
}
  /* Hover state for a suggestion */
  .pac-item:hover {
    background-color: #f7f7f7;
  }
/* The 'bold' text (usually the primary street address) */
.pac-item-query {
  font-size: 15px;
  color: #333;
  padding-right: 5px;
}
/* The 'Powered by Google' logo area */
.pac-logo:after {
  padding: 10px;
  background-position: right 10px center;
}
/* Hide the icon (pin marker) next to addresses if you want a cleaner look */
.pac-icon {
  display: none;
}
