.o-store-locator {
  position: fixed;
  z-index: 99999;
  left: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  top: var(--header-main-height);
}
.o-store-locator.down {
  top: 0;
}
.o-store-locator.down .o-store-locator__underlay,
.o-store-locator.down .o-store-locator__sidebar {
  top: 0;
}
.o-store-locator.up {
  top: var(--header-main-height);
}
.o-store-locator.up .o-store-locator__underlay,
.o-store-locator.up .o-store-locator__sidebar {
  top: var(--header-main-height);
}
@media screen and (min-width: 1250px) {
  .o-store-locator.up .o-store-locator__underlay,
  .o-store-locator.up .o-store-locator__sidebar {
    top: 0;
  }
}
@media screen and (min-width: 1250px) {
  .o-store-locator.up {
    top: 0;
  }
}
@media screen and (min-width: 1250px) {
  .o-store-locator {
    top: 0;
  }
}
.o-store-locator.animate .o-store-locator__sidebar {
  transition: transform var(--default-transition-timing) var(--default-transition-easing), opacity var(--default-transition-timing) var(--default-transition-easing), visibility 0s var(--default-transition-timing) var(--default-transition-easing);
}
.o-store-locator.animate .o-store-locator__underlay {
  transition: opacity var(--default-transition-timing) var(--default-transition-easing), visibility 0s var(--default-transition-timing) var(--default-transition-easing);
}
.o-store-locator.active {
  pointer-events: auto;
}
.o-store-locator.active .o-store-locator__sidebar {
  visibility: visible;
  opacity: 1;
  transform: translate(0);
  transition: transform var(--default-transition-timing) var(--default-transition-easing), opacity var(--default-transition-timing) var(--default-transition-easing), visibility 0s;
}
.o-store-locator.active .o-store-locator__underlay {
  visibility: visible;
  opacity: 0.4;
  transition-duration: 0.3s, 0s;
  transition-delay: 0.1s, 0s;
  transition: opacity var(--default-transition-timing) var(--default-transition-easing), visibility 0s;
}
.o-store-locator__sidebar {
  position: fixed;
  right: 0;
  z-index: 3000;
  height: 100%;
  width: 40rem;
  max-width: calc(100vw - 5.6rem);
  padding: 1.5rem 1rem;
  background-color: var(--color-primary-bg);
  overflow: hidden;
  flex-direction: column;
  transform: translate(100%);
  visibility: hidden;
  opacity: 0;
  top: var(--header-main-height);
  display: flex;
  flex-direction: column;
  max-height: 100%;
  overflow: scroll;
}
@media screen and (min-width: 1250px) {
  .o-store-locator__sidebar {
    top: 0;
    padding: 2rem 1.5rem;
  }
}
.o-store-locator__underlay {
  position: fixed;
  z-index: 2400;
  visibility: hidden;
  left: 0;
  height: 100vh;
  width: 100%;
  opacity: 0;
  background: var(--color-black);
  top: var(--header-main-height);
}
@media screen and (min-width: 1250px) {
  .o-store-locator__underlay {
    top: 0;
  }
}
.o-store-locator__top {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0.5rem;
}
.o-store-locator__input {
  position: relative;
}
.o-store-locator__input button {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.o-store-locator__current {
  margin-top: 1rem;
}
.o-store-locator__current .a-btn {
  width: 100%;
  text-align: center;
}
.o-store-locator__data {
  margin-top: 3rem;
}
.o-store-locator__tabs {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 2.5rem;
}
.o-store-locator__tab {
  width: 50%;
  text-align: center;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--color-primary-border);
  margin-bottom: 0;
  cursor: pointer;
}
.o-store-locator__tab--fw {
  width: 100%;
}
.o-store-locator__tab.active {
  border-bottom-width: 2px;
}
.o-store-locator__map {
  margin-bottom: 1.5rem;
}
.o-store-locator__map #map {
  height: 16.3rem;
  width: 100%;
}
@media screen and (min-width: 1250px) {
  .o-store-locator__map #map {
    height: 23.3rem;
  }
}
.o-store-locator__number {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  background-color: var(--color-primary);
  border-radius: 100%;
}
.o-store-locator__number span {
  color: var(--color-white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.o-store-locator__stores {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  overflow: scroll;
  position: relative;
  padding-bottom: var(--header-main-height);
}
.o-store-locator__stores.active {
  display: flex;
}
.o-store-locator__stores h4 {
  margin-bottom: 0;
}
.o-store-locator__stores--list, .o-store-locator__stores--wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.o-store-locator__store {
  font-size: var(--body-fs-xs);
  line-height: var(--body-lh-sm);
  text-transform: lowercase;
}
.o-store-locator__store a {
  color: var(--color-primary);
}
.o-store-locator__store--wrapper {
  display: flex;
  align-items: top;
  gap: 1rem;
  flex-wrap: nowrap;
}
.o-store-locator__marker-info h4 {
  margin-bottom: 1rem;
}

.pac-container {
  z-index: 9999999 !important;
}
