/*******
	Breakpoints / Layout / Grid
********/
/*******
	Typography
********/
/* Line height START */
/* Line height END */
/* Font size START */
/* Font size END */
/*******
	Backgrounds
********/
/*********
	Elements
********/
/* Breakpoints START */
/* Breakpoints END */
/* Spacings START */
/* Spacings END */
.locations-lister {
  color: #2d2d2d;
}
.locations-lister__inner {
  padding-top: 64px;
  padding-bottom: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.locations-lister__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.locations-lister__block-title {
  margin-bottom: 24px;
  font-size: 24px;
  font-family: "ITC Avant Garde Gothic W01 Bol", sans-serif;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .locations-lister__block-title {
    font-size: 32px;
  }
}
.locations-lister__grid-block {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .locations-lister__grid-block:nth-child(2) {
    margin-top: 40px;
  }
}
.locations-lister__grid {
  margin-top: 16px;
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .locations-lister__grid {
    grid-template-columns: repeat(auto-fill, minmax(274px, 1fr));
    gap: 16px 14px;
  }
}
.locations-lister__grid-title {
  margin-bottom: 12px;
  font-size: 20px;
}
@media (min-width: 768px) {
  .locations-lister__grid-title {
    font-size: 22px;
  }
}

.locations-lister-item {
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #f3f7fb;
  font-size: 18px;
  line-height: 130%;
  border-radius: 5px;
}
.locations-lister-item::before {
  margin-right: 8px;
  margin-bottom: 6px;
  content: "";
  width: 16px;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/sitefiles/dist/images/icons/pin--secondary.svg");
}
.locations-lister-item--top-location {
  background-color: #0862a9;
  color: white;
}
.locations-lister-item--top-location::before {
  background-image: url("/sitefiles/dist/images/icons/pin--white.svg");
}