.aurica-where-buy {
  color: var(--contentPrimaryColor, #0a2753);
}

.aurica-where-buy__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gapX2, 8px);
  width: 100%;
}

.aurica-where-buy__filter {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gapX2, 8px);
  padding: 6px var(--gapX3, 12px);
  border: 0;
  border-radius: 4px;
  background: #fcf5ec;
  color: var(--contentPrimaryColor, #0a2753);
  font: inherit;
  font-size: var(--textMsize, 19px);
  line-height: var(--textMheightT, 24px);
  cursor: pointer;
}

.aurica-where-buy__filter-dot {
  width: 8px;
  height: 8px;
  display: none;
  flex: 0 0 8px;
  border-radius: 50%;
  background: currentColor;
}

.aurica-where-buy__filter.is-active .aurica-where-buy__filter-dot {
  display: block;
}

.aurica-where-buy__layout {
  display: grid;
  grid-template-columns: minmax(0, 908px) minmax(320px, 448px);
  align-items: end;
  column-gap: var(--gapX3, 12px);
  width: 100%;
}

.aurica-where-buy__map-wrap {
  box-sizing: border-box;
  width: 100%;
  padding-right: 20px;
}

.aurica-where-buy__map {
  width: 100%;
  height: auto;
  aspect-ratio: 888 / 499.5;
  overflow: hidden;
  background: var(--pageBg, #fffbf6);
}

.aurica-where-buy__map > ymaps {
  filter: grayscale(1) saturate(0) brightness(1.08) contrast(0.78);
  opacity: 0.8;
}

.aurica-where-buy__details {
  width: 100%;
}

.aurica-where-buy__panel {
  width: 100%;
}

.aurica-where-buy__place-title {
  color: var(--contentPrimaryColor, #0a2753);
  font-size: var(--titleXSsize, 30px);
  line-height: var(--titleXSheightT, 32px);
}

.aurica-where-buy__place-text {
  display: block;
  color: var(--contentPrimaryColor, #0a2753);
  font-size: var(--textMsize, 19px);
  line-height: var(--textMheightT, 24px);
  text-decoration: none;
}

.aurica-where-buy__phone:hover {
  color: var(--primary400, #31527c);
}

.aurica-where-buy__empty {
  color: var(--contentPrimaryColor, #0a2753);
}

@media (max-width: 991.98px) {
  .aurica-where-buy__filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .aurica-where-buy__filters::-webkit-scrollbar {
    display: none;
  }

  .aurica-where-buy__filter {
    flex: 0 0 auto;
  }

  .aurica-where-buy__layout {
    grid-template-columns: 1fr;
    row-gap: var(--gapX8, 32px);
  }

  .aurica-where-buy__map-wrap {
    padding-right: 0;
  }
}

@media (max-width: 767.98px) {
  .aurica-where-buy__map {
    aspect-ratio: 335 / 300;
  }

  .aurica-where-buy__place-title {
    font-size: var(--titleSsize, 26px);
    line-height: var(--titleSheightT, 30px);
  }

  .aurica-where-buy__place-text,
  .aurica-where-buy__filter {
    font-size: var(--textSsize, 16px);
    line-height: var(--textSheightT, 20px);
  }
}
