.map-showroom {
  overflow: hidden;
  display: grid;
  grid-template-columns: var(--one-three);
  gap: 16px;
}
.map-showroom__wrapper {
  display: grid;
  grid-template-rows: max-content 1fr 64px;
  gap: 16px;
}
.map-showroom__wrapper .widget {
  margin-top: 0;
}
.map-showroom__info {
  padding: 24px;
  background: var(--color-content-accent);
  color: var(--color-content-white);
  min-height: 159px;
}
.map-showroom__info:has(.map-showroom__address) .map-showroom__title {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-content-white);
}
.map-showroom__title {
  margin-bottom: 0;
}
.map-showroom .button {
  width: 100%;
}
.map-showroom__button {
  min-height: 64px;
}
.map-showroom_sticky .contacts-page__map {
  /*position: sticky;*/
  height: -moz-max-content;
  height: max-content;
  /*top: 150px;*/
  overflow: hidden;
}

.filial {
  margin-top: 64px;
}
.filial_contacts {
  gap: 0;
}
.filial__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.filial__item {
  display: grid;
  grid-template-rows: max-content 1fr;
}
.filial__item .widget > div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border-md);
  margin-bottom: 12px;
}
.filial__item .widget > div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.filial__item .widget a {
  display: inline-block;
}

#map {
  aspect-ratio: 656/410;
}

.legal {
  margin-top: 64px;
  display: grid;
  grid-template-columns: var(--one-three);
  gap: 16px;
}
.legal__action {
  display: grid;
  grid-template-rows: max-content 1fr;
}
.legal__action .button {
  align-self: end;
}
.legal__item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-md);
  margin-bottom: 16px;
}
.legal__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

[class*=map-copyrights-promo] {
  display: none;
}

@media (max-width: 1000px) {
  .filial__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .map-showroom {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .legal {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .filial__items {
    grid-template-columns: 1fr;
  }
  .map-showroom__info {
    min-height: -moz-max-content;
    min-height: max-content;
  }
}/*# sourceMappingURL=map.css.map */