/* Modal on home page to pick the closest location */

#myModal {
  font-family: 'Roboto Condensed', 'Roboto Condensed Fallback', sans-serif;
  background: rgba(0,0,0,0.7);
}

#myModal .heading-text {
  font-size: 20px;
  line-height: 1.4;
}

@media (min-width: 576px) {
  #myModal .heading-text {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  #myModal .heading-text {
    font-size: 28px;
  }
}

@media (min-width: 1200px) {
  #myModal .heading-text {
    font-size: 34px;
  }
}

#myModal .location-text {
  font-size: 24px;
  font-weight: 700;
  color: #16ffff;
}

#myModal .bg-location {
  background: #42165c;
  transition: all .3s;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.15);
}

#myModal .bg-location:hover {
  background: rgba(66,22,92,0.75);
}

