.providers_contact_sheet_mini {
  grid-template-columns: repeat(auto-fit, minmax(175px, 200px));
}

@media only screen and (max-width: 512px) {
  .providers_contact_sheet_mini {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }
  .providers_contact_sheet_mini .provider_card_mini .person_image {
    width: 70px;
    height: 70px;
  }
  .providers_contact_sheet_mini .provider_card_mini .person_name {
    font-size: 17px;
  }
  .providers_contact_sheet_mini .provider_card_mini .person_suffix {
    font-size: 13px;
  }
}
@media only screen and (max-width: 414px) {
  .providers_contact_sheet_mini {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
  }
  .providers_contact_sheet_mini .provider_card_mini .person_name {
    font-size: 15px;
  }
  .providers_contact_sheet_mini .provider_card_mini .person_image {
    width: 50px;
    height: 50px;
  }
}
.service_icons {
  grid-template-columns: repeat(4, 1fr);
}

.chc_location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-height: 300px;
}

@media only screen and (max-width: 512px) {
  .chc_location {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
a.chc_location:hover {
  background-color: transparent;
}

.chc_location > * {
  border: 1px solid #005F65;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

a.chc_location:hover > * {
  box-shadow: 0px 0px 10px #0096A9;
  transition: box-shadow 0.2s ease-in-out;
}

a.chc_location:active > * {
  box-shadow: 0px 0px 10px #005F65;
  transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.chc_location > .address {
  display: grid;
  place-items: center;
  padding: 10px;
  font-size: 20px;
  line-height: 1.5em;
}

a.chc_location:hover > .address {
  background-color: #E0F7FB;
  transition: background-color 0.2s ease-in-out;
}

a.chc_location:active > .address {
  background-color: #005F65;
  color: #FFFFFF;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.chc_location > .location_map {
  position: relative;
  display: block;
  min-height: 250px;
  border: 1px solid #005F65;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.chc_location > .location_map > .marker {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 20px;
  width: 20px;
  border: 1px solid #78909C;
  border-radius: 50%;
  background-color: #F5B335;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

.chc_location > .location_map > .radiation {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-image: radial-gradient(transparent, #72689F);
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: location_beacon;
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}

#chc_durango_location_map {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

#chc_durango_location_map > a#address {
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid #005F65;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  font-size: 20px;
  line-height: 1.5em;
  text-decoration: none;
}

#chc_durango_location_map > a#map:link,
#chc_durango_location_map > a#map:visited {
  position: relative;
  display: block;
  min-height: 300px;
  border: 1px solid #005F65;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#chc_durango_location_map > a#map:hover {
  box-shadow: 0px 0px 10px #0096A9;
}

#chc_durango_location_map > a#map:active {
  box-shadow: 0px 0px 10px #005F65;
}

#chc_durango_location_map > a#map > span:nth-of-type(1) {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 20px;
  width: 20px;
  border: 1px solid #78909C;
  border-radius: 50%;
  background-color: #F5B335;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

#chc_durango_location_map > a#map > span:nth-of-type(2) {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-image: radial-gradient(transparent, #72689F);
  background-position: center center;
  background-repeat: no-repeat;
  animation-name: location_beacon;
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}

@keyframes location_beacon {
  0% {
    opacity: 0;
    height: 0px;
    width: 0px;
  }
  70% {
    opacity: 0.75;
    height: 150px;
    width: 150px;
  }
  100% {
    opacity: 0;
    height: 150px;
    width: 150px;
  }
}
@media only screen and (max-width: 768px) {
  @keyframes location_beacon {
    0% {
      opacity: 0;
      height: 0px;
      width: 0px;
    }
    70% {
      opacity: 1;
      height: 100px;
      width: 100px;
    }
    100% {
      opacity: 0;
      height: 100px;
      width: 100px;
    }
  }
}
ul.bus_list {
  list-style-type: none;
}

ul.bus_list > li {
  margin: 15px 0px 15px 0px;
}

ul.bus_list > li::before {
  content: "";
  display: inline-block;
  margin-left: -1.6em;
  height: 1.25em;
  width: 1.25em;
  background-image: url(/images/glyphs/bus_72689F.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
