/* CSS Document */
/* CSS Document */
/* CSS Document */
.content {
  max-width: 100%;
  width: 100%;
  padding: 0;
  background: #354B5C;
  color: #fff;
}
.content .page-content {
  max-width: 75em;
  margin: 0 auto;
}

.maps-outer-container {
  max-height: 600px;
}

.map-container {
  width: 60vw;
}
.map-container #map {
  height: 100%;
  width: 100%;
  height: 600px;
}

.location-buttons {
  padding: 0.5em;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
.location-buttons a {
  background: #fff;
  text-decoration: none;
  padding: 0.5em 1em;
  margin: 0.5em;
  min-width: 150px;
  display: inline-block;
  text-align: center;
  color: #156AAD;
}
.location-buttons a.selected:before {
  background: linear-gradient(to left, #F4CD1D 50%, rgb(246.3670886076, 215.7594936709, 77.6329113924) 50%) right;
  position: absolute;
  content: "";
  overflow: hidden;
  height: 200%;
  width: 200%;
  transform: skewX(60deg);
  background-size: 200%;
  transition: 0.5s ease-out;
  z-index: -1;
  top: 0;
  left: 0;
}

.locations-container {
  width: 40vw;
  overflow-y: scroll;
  background: #fff;
}
.locations-container .location-details {
  width: 100%;
  padding: 1em;
  color: #000;
  display: none;
}
.locations-container .location-details.selected {
  display: inline-block;
}
.locations-container .location-details .button-link {
  font-size: 0.75em;
  margin-top: 0.5em;
}
.location-details {
  max-width: 75rem;
  margin: 0 auto;
}
.location-details > .flex > div {
  padding: 1em;
}
.location-details .map-directions {
  min-width: 500px;
}
.location-details .map-directions iframe {
  width: 100% !important;
  height: 500px !important;
  max-height: 500px;
}
.location-details h2 {
  color: #156AAD;
}

@media (max-width: 900px) {
  .location-details > .flex {
    flex-direction: column;
  }
  .location-details .map-directions {
    min-width: 300px;
  }
}
@media (max-width: 700px) {
  .maps-outer-container {
    flex-direction: column;
    height: auto;
    max-height: 100%;
  }
  .map-container {
    width: 100%;
    height: 400px;
  }
  .locations-container {
    width: 100%;
    overflow-y: unset;
  }
}
