.locator {
  color: #051c2c;
  text-align: center;
  padding: 48px 0;
}
.locator h1, .locator h2, .locator h3 {
  font-family: 'Noto Serif', sans-serif;
}
.locator h1 {
  font-weight: bold;
  font-style: italic;
  font-size: 3.25rem;
  line-height: 125%;
  margin-top: 0;
}
.locator h2 {
  font-size: 1.5rem;
  line-height: 150%;
}
.locator p, .locator p a {
  font-size: 1rem;
  line-height: 150%;
}
.locator p a {
  color: #00aaa5;
}
.locator p a:hover {
  color: #a3d9e7;
}
.locator .locations {
  text-align: left;
}
.locator .locations ul {
  padding-left: 1.5rem;
}
.locator .locations > ul {
  padding: 0;
}
.locator .locations ul li {
  list-style-type: none;
  overflow: hidden;
  max-height: 0;
}
.locator .locations ul li.state {
  max-height: 100%;
}
.locator .locations ul li.open > ul > li {
  max-height: 100%;
}
.locator .locations .group {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  padding: 8px 0;
}
.locator .locations ul li h3 {
  font-weight: bold;
  margin: 0;
}
.locator .locations ul li h4 {
  margin: 0;
}
.locator .locations ul li .icons {
  position: relative;
  margin-left: 8px;
}
.locator .locations ul li .icons img {
  width: 18px;
  height: 18px;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.locator .locations ul li .icons img.placeholder {
  position: relative;
  opacity: 0;
}
.locator .locations ul li .icons img.plus, .locator .locations ul li .icons img.minus {
  position: absolute;
  top: 0;
  left: 0;
}
.locator .locations ul li .icons img.plus {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.locator .locations ul li .icons img.minus {
  opacity: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.locator .locations ul li .icons.open img.plus {
  opacity: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.locator .locations ul li .icons.open img.minus {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.locator .locations ul li a {
  color: #00aaa5;
  display: block;
  padding: 8px 0;
}
.locator .locations ul li a:hover {
  color: #a3d9e7;
}
.locator .locations ul li a h5, .locator .locations ul li a h6 {
  font-family: 'Noto Serif', sans-serif;
  font-size: 1.15rem;
  line-height: 125%;
  margin: 0;
}
.locator .locations ul li a h5 {
  font-weight: bold;
}
.locator .locations ul li a h6 {
  font-weight: normal;
}

@media screen and (min-width: 601px) {
  .locator .locations ul.location-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .locator .locations ul.location-list li {
    width: 50%;
    padding-right: 16px;
  }
}
@media screen and (min-width: 801px) {
  .locator .locations ul.location-list li {
    width: 33.33%;
  }
}
@media screen and (min-width: 1201px) {
  .locator .locations ul.location-list li {
    width: 25%;
  }
}