#map {
  display: none;
}

#geocoder {
  margin: 1em auto;
  width: 30em;
}

#eligibility-checker {
  border: solid;
}

label[for=eligibility-checker] {
  display: block;
  text-align: center;
  font-size: 2em;
}

.mapboxgl-ctrl-geocoder {
  min-width: 100%;
  background-color: #fff;
  box-shadow: none;
  border-radius: 0;
}

.mapboxgl-ctrl-geocoder > input[type=text] {
  color: #000;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
}

#results {
  display: flex;
}

#results button {
  border-radius: 0;
  color: #9fd5b3;
  
  margin: 1em 1em auto auto;
  padding: .25em .5em;
  background: #004445;
  border: none;
  transition: all .2s ease-in-out;
}

[dir="rtl"] #results button {
  
  margin: 1em auto auto 1em;
}

#results button:hover {
  background: #9fd5b3;
  color: #004445;
  transition: all .2s ease-in-out;
}

#results h4 {
  margin: auto;
  padding: 1em;
  background-color: #fff;
}

#results h4.eligible {
  color: #3666a6;
}

#results h4.not-eligible {
  color: #993336;
}

.dot-1, .dot-2, .dot-3 {
  opacity: 0;
}

.dot-1 {
  animation: dot-animation-1 2s infinite ease forwards;
}

.dot-2 {
  animation: dot-animation-2 2s infinite ease forwards;
}

.dot-3 {
  animation: dot-animation-3 2s infinite ease forwards;
}

