.block--locations .locations .locations__bar {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 80px 0;
}
.block--locations .locations .locations__bar .locations__filters {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
}
.block--locations .locations .locations__bar .locations__filters .locations__brands, .block--locations .locations .locations__bar .locations__filters .locations__locations {
  flex-grow: 1;
  max-width: 35%;
}
.block--locations .locations .locations__bar .locations__filters .locations__select {
  font-family: "Seravek Regular";
  width: 100%;
  color: var(--grey_800);
  background-color: var(--grey_100);
  padding: 12px;
  border-radius: 0;
  border: 1px solid var(--white);
  outline: none;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg aria-hidden="true" width="12" height="9" viewBox="0 0 12 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 8.37498L0 2.37498L1.4 0.974976L6 5.57498L10.6 0.974976L12 2.37498L9 5.37498L6 8.37498Z" fill="black"/></svg>');
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
}
.block--locations .locations .locations__bar .locations__archive {
  display: none;
}
.block--locations .locations .locations__bar.hide_filters .locations__filters {
  display: none;
}
.block--locations .locations .locations__bar.hide_filters .locations__archive {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.block--locations .locations .locations__bar.hide_filters .locations__archive .archive__icon {
  transition: transform 350ms ease;
}
.block--locations .locations .locations__bar.hide_filters .locations__archive:hover .archive__icon {
  transform: translateX(5px);
}
.block--locations .locations .locations__list {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, 1fr);
}
.block--locations .locations .locations__list .location {
  display: flex;
  flex-direction: column;
}
.block--locations .locations .locations__list .location .location__image {
  height: 425px;
  overflow: hidden;
}
.block--locations .locations .locations__list .location .location__image .empty {
  height: 100%;
  background-color: var(--grey_100);
}
.block--locations .locations .locations__list .location .location__image picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block--locations .locations .locations__list .location .location__image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block--locations .locations .locations__list .location .location__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 0 auto;
  padding: 24px 0 0 0;
}
.block--locations .locations .locations__list .location .location__content .location__details {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
.block--locations .locations .locations__list .location .location__content .location__details .location__information {
  grid-column: span 2;
}
.block--locations .locations .locations__list .location .location__content .location__details .location__link {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.block--locations .locations .locations__list .location .location__content .location__details .location__link .location__icon {
  transition: transform 350ms ease;
}
.block--locations .locations .locations__list .location .location__content .location__details .location__link:hover .location__icon {
  transform: translateX(5px);
}
.block--locations .locations .locations__list .location .location__content .location__brand {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.block--locations .locations .locations__list .location .location__content .location__brand .location__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  padding: 8px;
  background-color: var(--grey_200);
  transition: background-color 350ms ease;
}
.block--locations .locations .locations__list .location .location__content .location__brand .location__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.block--locations .locations .locations__list .location .location__content .location__brand .location__logo:hover {
  background-color: var(--grey_000);
}
@media only screen and (max-width: 800px) {
  .block--locations .locations .locations__bar {
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  .block--locations .locations .locations__bar .locations__filters {
    flex-direction: column;
    align-items: unset;
  }
  .block--locations .locations .locations__bar .locations__filters .locations__brands, .block--locations .locations .locations__bar .locations__filters .locations__locations {
    max-width: calc(100vw - 32px);
  }
  .block--locations .locations .locations__bar.hide_filters .locations__archive {
    justify-content: flex-start;
  }
  .block--locations .locations .locations__list {
    grid-template-columns: 1fr;
  }
  .block--locations .locations .locations__list .location {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .block--locations .locations .locations__list .location .location__image {
    height: auto;
  }
  .block--locations .locations .locations__list .location .location__image .empty {
    height: 200px;
  }
  .block--locations .locations .locations__list .location .location__image picture img {
    aspect-ratio: 16/9;
  }
  .block--locations .locations .locations__list .location .location__content {
    padding: 0;
    flex-direction: column-reverse;
  }
  .block--locations .locations .locations__list .location .locations__select {
    width: calc(100vw - 32px);
  }
  .block--locations .locations .locations__list .location .location__brand {
    display: flex;
    flex-wrap: wrap;
  }
  .block--locations .locations .locations__list .location .location__logo {
    width: fit-content;
    padding: 4px;
  }
}

/*# sourceMappingURL=block_locations.css.map */
