.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: 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__top h1 {
  margin-bottom: 2rem;
}
.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;
}
.o-store-locator__stores-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.o-store-locator__store {
  font-size: var(--body-fs-xs);
  line-height: var(--body-lh-sm);
  text-transform: capitalize;
}
.o-store-locator__store a {
  color: var(--color-primary);
}
.o-store-locator__store--wrapper {
  display: flex;
  align-items: top;
  gap: 1rem;
  flex-wrap: nowrap;
  transition: background-color 0.2s ease;
  padding: 1rem;
  border-bottom: 0.5px solid var(--color-secondary-body);
}
.o-store-locator__store--wrapper.active {
  background-color: var(--color-secondary-bg);
}
.o-store-locator__store--wrapper:hover {
  background-color: var(--color-secondary-bg);
}
.o-store-locator__marker-info h4 {
  margin-bottom: 1rem;
}

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

.gm-ui-hover-effect {
  width: 20px !important;
  height: 20px !important;
  top: 2px !important;
  right: 2px !important;
}
.gm-ui-hover-effect img {
  width: 12px !important;
  height: 12px !important;
  margin: 4px !important;
}
.gm-ui-hover-effect span {
  width: 12px !important;
  height: 12px !important;
  margin: 4px !important;
}

.o-store-locator-page[data-top=small] {
  --spacing-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .o-store-locator-page[data-top=small] {
    --spacing-top: 3.5rem;
  }
}
.o-store-locator-page[data-top=large] {
  --spacing-top: 5rem;
}
@media screen and (min-width: 768px) {
  .o-store-locator-page[data-top=large] {
    --spacing-top: 6rem;
  }
}
.o-store-locator-page[data-top=extra-large] {
  --spacing-top: 8rem;
}
@media screen and (min-width: 768px) {
  .o-store-locator-page[data-top=extra-large] {
    --spacing-top: 10rem;
  }
}
.o-store-locator-page[data-bottom=small] {
  --spacing-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .o-store-locator-page[data-bottom=small] {
    --spacing-bottom: 3.5rem;
  }
}
.o-store-locator-page[data-bottom=large] {
  --spacing-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .o-store-locator-page[data-bottom=large] {
    --spacing-bottom: 6rem;
  }
}
.o-store-locator-page[data-bottom=extra-large] {
  --spacing-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .o-store-locator-page[data-bottom=extra-large] {
    --spacing-bottom: 10rem;
  }
}
.o-store-locator-page__inner-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
}
@media screen and (min-width: 768px) {
  .o-store-locator-page__inner-wrapper {
    grid-template-columns: 50% 1fr;
    grid-template-rows: 1fr;
  }
}
@media screen and (min-width: 1100px) {
  .o-store-locator-page__inner-wrapper {
    grid-template-columns: 40% 1fr;
  }
}
.o-store-locator-page__data-wrapper {
  position: relative;
  order: 2;
}
@media screen and (min-width: 768px) {
  .o-store-locator-page__data-wrapper {
    order: 0;
  }
}
@media screen and (min-width: 768px) {
  .o-store-locator-page__data {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: scroll;
    padding-right: 12rem;
  }
}
@media screen and (min-width: 1100px) {
  .o-store-locator-page__data {
    padding-right: 8rem;
  }
}
@media screen and (min-width: 1250px) {
  .o-store-locator-page__data {
    padding-right: 20rem;
  }
}
.o-store-locator-page__data .o-store-locator__tabs {
  margin-bottom: 1rem;
}
.o-store-locator-page__map-wrapper {
  order: 1;
}
@media screen and (min-width: 768px) {
  .o-store-locator-page__map-wrapper {
    order: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  .o-store-locator-page__map-wrapper {
    padding-right: 8rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1250px) {
  .o-store-locator-page__map-wrapper {
    padding-right: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .o-store-locator-page__map-wrapper .o-store-locator__map {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .o-store-locator-page__map-wrapper .o-store-locator__map #map {
    height: calc(100vh - var(--header-height) - var(--announcement-height) - var(--spacing-top) - var(--spacing-bottom));
  }
}
.o-store-locator-page .o-store-locator__data {
  margin-top: 3rem;
  margin-top: 4rem;
}
.o-store-locator-page .o-store-locator__top--title {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .o-store-locator-page .o-store-locator__top--title {
    margin-bottom: 4rem;
  }
}
.o-store-locator-page .o-store-locator__top--title h1,
.o-store-locator-page .o-store-locator__top--title h2,
.o-store-locator-page .o-store-locator__top--title h3 {
  margin: 0;
}
