<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#esto-store-locator {
  gap: 2rem;
}

.esto-locator-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  @media (min-width: 768px) {
    flex-direction: row;
  }
}

.esto-store-map-container {
  margin-bottom: 1rem;

  @media (min-width: 768px) {
    margin-bottom: 0;
  }
}

.esto-store-list {
  width: 100%;
  order: 99;
  margin: 0;
  margin-top: 1rem;
  flex: 1 1 50%;
  max-width: 500px;

  @media (min-width: 768px) {
    order: initial;
    margin-top: 0;
    padding-right: 1rem;
  }
}

.esto-store-item {
  display: block;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #f5f5f5;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.esto-store-item:hover {
  background-color: #e9e9e9;
}

.esto-store-item.active {
  background-color: #e0e0e0;
  border-left: 4px solid #2271b1;
}

.esto-store-map-container {
  width: 100%;
}

#esto-store-map {
  flex: 2;
  height: 600px;
  border-radius: 4px;
  position: sticky;
  top: 0;
}

@media (max-width: 768px) {
  #esto-store-locator {
    flex-direction: column;
  }

  #esto-store-list {
    max-width: 100%;
  }

  #esto-store-map {
    height: 400px;
  }
}

.esto-store-controls {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.esto-search-container {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  max-width: 250px;
}

#esto-address-input {
  flex: 1;
  padding: 8px;
}

#esto-search-button,
#esto-geolocate-button {
  padding: 8px 15px;
  cursor: pointer;
}

.esto-store-item {
  display: none; /* Initially hidden until map is ready */
}

.esto-visually-hidden {
  display: none;
}

.leaflet-popup-content {
  max-width: calc(100vw - 105px);
}

.esto-store-item-link {
  text-decoration: none !important;
}
</pre></body></html>