/* Style the location picker on the thank you page */

#thankyou {
  font-family: 'Roboto Condensed', 'Roboto Condensed Fallback', sans-serif;
  background: #9641b9;
}

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

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

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

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

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

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

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

