body.no-scroll {
  overflow-y: hidden;
}

.bega_store_locator_dialog {
  display: none;
  transition: opacity 0.5s;
  opacity: 0;
}
.bega_store_locator_dialog.show {
  display: flex;
}
.bega_store_locator_dialog.fade-in {
  opacity: 1;
}
.bega_store_locator_dialog {
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1000;
}
.bega_store_locator_dialog .bega-sl-window {
  background-color: white;
  padding: 20px;
  width: 400px;
  min-height: 200px;
  max-width: 90vw;
  border-radius: 20px;
  box-shadow: 1px 2px 5px #ccc;
  position: relative;
}
.bega_store_locator_dialog .bega-sl-window .bega_sl_close {
  background-image: url(./close.svg);
  position: absolute;
  top: 5px;
  right: 5px;
  width: 25px;
  height: 25px;
  background-size: contain;
  border: 1px solid #000;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.bega_store_locator_dialog .bega-sl-window .bega_sl_close:hover {
  transform: scale(1.05);
}
.bega_store_locator_dialog .bega-sl-window .bega_sl_close:active {
  transform: scale(0.9);
}
.bega_store_locator_dialog .bega-sl-window .bega_sl_results {
  margin-top: 10px;
  overflow-y: scroll;
  max-height: 30vh;
}
.bega_store_locator_dialog .bega-sl-window .bega_sl_results strong {
  font-size: 1.1em;
  color: #000;
}
.bega_store_locator_dialog .bega-sl-window .bega_sl_results p {
  color: #000;
  font-size: 1em;
}
.bega_store_locator_dialog .bega-sl-window .bega-sl-search {
  display: flex;
  background-color: #f4f2f2;
  padding: 15px;
  border-radius: 15px;
}
.bega_store_locator_dialog .bega-sl-window .bega-sl-search input {
  width: 100%;
}
.bega_store_locator_dialog .bega-sl-window .bega-sl-search button {
  border: 0;
  background: none;
  width: 35px;
  height: 35px;
  padding: 0;
}

.bega_find_in_store {
  display: inline-flex;
  background-color: #009b3d;
  border: 1px solid #009b3d;
  color: white;
  cursor: pointer;
  padding: 0 10px 0 32px;
  border-radius: 5px;
  background-image: url(./shopping-cart.svg);
  background-position: 5px center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.bega_find_in_store:hover {
  background-color: white;
  color: #009b3d;
  background-image: url(./shopping-cart-green.svg);
}

.bega-error {
  color: rgb(159, 8, 8);
  background-color: rgb(178, 134, 134);
  padding: 5px;
  border-radius: 5px;
}

/*# sourceMappingURL=store-locator.css.map */
