<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 #map{
  height: 500px;
 } 

 .directory{
  height: 600px;
 }
 .directory #list{
   overflow: auto;
 }
 @media(max-width: 667px){
  .directory{
    grid-row: 2;
    height: auto;
  }
 }

 #filter-country{
  padding-top: 5px;
  padding-bottom: 5px;
 }
 #filter-clear{
  cursor: pointer;
 }
 
 /* Styling for Autocomplete search bar */
 #pac-card {
  background-color: #fff;
  border: 1px solid #999999;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
}

#pac-container {
  padding-top: 12px;
  padding-bottom: 12px;
  margin-right: 12px;
  display: flex;
}

.searchInputsLarge{
  display: flex;
  flex: 1;
  margin-left: 12px;
}
@media(max-width: 992px){
  .searchInputsLarge{
    flex-direction: column;
  }
  #pac-input{
    border-bottom: none;
  }
}

#pac-input, #zac-input {
  background-color: #fff;
  font-size: 15px;
  font-weight: 300;
  padding: 0 11px 0 13px;
  text-overflow: ellipsis;
  flex: 1;
  border-right: none;
}

#pac-input:focus, #zac-input:focus {
  border-color: #4d90fe;
}

#title {
  color: #fff;
  background-color: #acbcc9;
  font-size: 18px;
  font-weight: 400;
  padding: 6px 12px;
}

.Filters label{
  margin-left: 0.5rem;
}

.listing{
  cursor: pointer;
  margin-bottom: 2rem;
}

.place {
  font-weight: 600;
  margin-block-end: 0px;
  position: relative;
  padding-right: 20px;
}

.distanceText {
  color: silver;
  font-weight: 400;
  margin-block-end: 0px;
}

@media(min-width: 667px){
  .inline-details{
    display: none;
  }

  .expanded .inline-details{
    display: block
  }
  .listing h5:after{
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    width: 0;
    height: 0;
    border: .5em solid transparent;
    border-left-color: gray;
    transform-origin: 0 50%;
    transition: transform .25s;
  }
  .listing.expanded h5:after{
    transform: rotate(90deg);
    transition: transform .25s;
  }

}</pre></body></html>