/*
 * Colors: Base
\* -------------------------------------------------------------------------- */
/*
 * Colors: System color
\* -------------------------------------------------------------------------- */
/*
 * Colors: Overrides
\* -------------------------------------------------------------------------- */
/*
 * Colors: ADN-club
\* -------------------------------------------------------------------------- */
/** System monospace */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/* -- Not on redesign -- */
/* 1025 is used instead of 1024 because touch devices design is not specified */
/* Scrollbars customization */
/**
 * Returns an url encoded SVG with the given color
 * @param {String} $icon - SVG code
 * @param {String} $color - Final color
 * @return {String} URL encoded svg
 */
/* stylelint-disable function-parentheses-newline-inside */
/* stylelint-enable function-parentheses-newline-inside */
/*
 * https://allyjs.io/tutorials/hiding-elements.html#2017-edition-of-visuallyhidden
 */
/* Mixin to use if touch devices design is specified */
/** Vertical scrollbar with custom color & size
*     @include ad-scrollbars(color, size);
*/
/** Horizontal scrollbar with custom color & size
*     @include ad-scrollbars();
*     @include ad-scrollbars-horizontal(color, size);
*/
.store-details__title {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.select-store-button {
  display: none;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
}

.store-locator-container {
  max-width: 450px;
  margin: 0 auto 2rem;
}
.store-locator-container .form-check-label {
  cursor: pointer;
}
.pickup-in-store .store-locator-container {
  max-width: inherit;
  margin: 0;
}
.store-locator-container .store-details {
  display: block;
  margin: 0;
}
.store-locator-container .form-check .store-details {
  margin: 0;
}
.store-locator-container .store-locator-no-results {
  display: none;
  margin: 0 1rem;
}
.store-locator-container .results-card {
  margin: 0 -1rem;
}
@media (min-width: 480px) {
  .store-locator-container .results-card {
    margin: 0;
  }
}

@media (min-width: 768px) {
  .store-locator-container .results {
    overflow-y: auto;
    /* W3C Working Draft */
    scrollbar-color: rgb(158, 158, 158) transparent; /* stylelint-disable-line property-no-unknown */
    /* Internet Explorer */
    scrollbar-face-color: rgb(158, 158, 158);
    scrollbar-track-color: transparent;
    /* Firefox */
    scrollbar-width: thin;
    max-height: 420px;
    overflow-y: auto;
  }
  .store-locator-container .results::-webkit-scrollbar-thumb {
    background-color: rgb(158, 158, 158);
    border-radius: 1.5px;
  }
  .store-locator-container .results::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .store-locator-container .results::-webkit-scrollbar {
    width: 3px;
    height: 3px;
  }
  .store-locator-container .results::-webkit-scrollbar:horizontal {
    width: 1px;
    height: 1px;
  }
  .store-locator-container .results::-webkit-scrollbar-thumb:horizontal {
    background-color: rgb(0, 0, 0);
    border-radius: 1.5px;
  }
  .store-locator-container .results::-webkit-scrollbar-track:horizontal {
    background-color: rgb(245, 245, 245);
  }
  @supports (scrollbar-width: auto) {
    .store-locator-container .results {
      scrollbar-color: auto; /* Chrome +121 */
    }
  }
  @supports (scrollbar-width: auto) {
    .store-locator-container .results {
      scrollbar-width: auto; /* Chrome +121 */
    }
  }
}
.store-locator-container .results__store {
  margin: 0 1rem;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgb(224, 224, 224);
}
@media (min-width: 480px) {
  .store-locator-container .results__store {
    margin: 0;
  }
  .store-locator-container .results__store:last-child {
    border-style: none;
  }
}
.store-locator-container .results__store:first-child {
  padding-top: 1.5rem;
  border-top: 1px solid rgb(224, 224, 224);
}
@media (min-width: 480px) {
  .store-locator-container .results__store:first-child {
    border-top-style: none;
  }
}

.store-locator-search-form {
  width: 100%;
}
.store-locator-search-form__separator {
  position: relative;
  margin: 1.5rem 0;
  border-bottom: 1px solid rgb(224, 224, 224);
}
.store-locator-search-form__separator::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 20px;
  color: rgb(224, 224, 224);
  text-align: center;
  background-color: rgb(255, 255, 255);
  transform: translate(-50%, -50%);
  content: "o";
}
.store-locator-search-form .form-group {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .store-locator-search-form .form-group {
    margin-bottom: 1rem;
  }
}

.storelocator {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .storelocator {
    margin-top: 3.5rem;
  }
}

.btn-storelocator-search,
.btn-storelocator-detect-location {
  margin-bottom: 1rem;
}

.store-address {
  margin: 0;
}

.store-phone-map {
  display: flex;
  margin: 0;
}
.pickup-in-store .store-phone-map {
  flex-direction: column;
}
@media (min-width: 375px) {
  .pickup-in-store .store-phone-map {
    flex-direction: row;
  }
}

.store-phone {
  font-family: "AdFont", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  color: rgb(0, 0, 0);
  font-weight: 600;
  margin-right: auto;
  margin-bottom: 0.5rem;
}

.store-hours__title, .store-hours__content {
  display: inline-block;
}
.store-hours .title {
  font-weight: 700;
}

.geolocation-denied-error {
  display: none;
}

.nav-tabs-wrapper {
  margin-bottom: 1.5rem;
}

.map-marker {
  position: relative;
  float: left;
  width: 2em;
  height: 2em;
  color: #fff;
  line-height: 2em;
  text-align: center;
  background-color: #7ed0ee;
  border-radius: 0.375em;
}
.map-marker::after {
  position: absolute;
  bottom: -0.625em;
  left: 50%;
  width: 0;
  height: 0;
  border-color: #7ed0ee transparent transparent transparent;
  border-style: solid;
  border-width: 1em 0.5em 0;
  transform: translate(-50%, 0);
  content: "";
}

.gm-style-iw .store-details {
  max-width: 375px;
  margin-left: 0;
  font-size: 0.875rem;
  font-family: "AdFont", sans-serif;
  line-height: 1.5;
}
.gm-style-iw .store-phone-map {
  display: flex;
  flex-direction: column;
}

.gm-style .gm-style-iw-c {
  width: 100%;
  padding-top: 1rem;
  padding-left: 1rem;
  border-radius: 0;
}
.gm-style .gm-style-iw-d {
  padding-right: 1rem;
  padding-bottom: 1rem;
  overflow: visible !important;
  overflow: initial !important;
  border-radius: 0;
}

.gm-ui-hover-effect {
  top: 0.375rem !important;
  right: 0.375rem !important;
}

.map-canvas {
  max-width: 900px;
  height: 500px;
  border-radius: 0;
}
@media (min-width: 480px) {
  .map-canvas {
    height: 660px;
  }
}

.storelocator .card-title-h3 {
  display: none;
}

.store-locator-no-apiKey {
  display: none;
}

.store-locator-no-results {
  display: none;
}

/*# sourceMappingURL=storeLocator.css.map*/