body #app-stores .store-list {
  flex: 0 0 30%;
}
body #app-stores .store-search {
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
body #app-stores .store-search input,
body #app-stores .store-search button {
  box-shadow: unset;
  border: 2px solid black;
}
body #app-stores .store-search button {
  font-size: 0.875rem;
}
body #app-stores ul li {
  background-color: #f0f0f0;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid transparent;
}
body #app-stores ul li a {
  text-decoration: none;
}
body #app-stores ul li .header svg {
  background-color: black;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
body #app-stores ul li .info {
  display: none;
}
body #app-stores ul li.selected {
  border-color: black;
  background-color: white;
}
body #app-stores ul li.selected .header svg {
  transform: rotate(180deg);
}
body #app-stores ul li.selected .info {
  display: flex;
}
body #app-stores .infowindow-content {
  min-width: 350px;
  max-width: 650px;
  font-size: 16px;
  line-height: 1.6;
  padding: 0 0 1rem 0;
}

@media (min-width: 1024px) {
  body #app-stores .store-search {
    background-color: white;
  }
  body #app-stores .store-list > ul {
    max-height: 580px;
    overflow: auto;
    padding-right: 1rem;
  }
}
/*# sourceMappingURL=stores.css.map */
