/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
.store-locator {
  display: grid;
  grid-template-columns: 400px 1fr;
  width: 100%;
  height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}
.store-locator .sidebar {
  border: 1px solid rgb(229.5, 229.5, 229.5);
  position: relative;
  padding-top: 51px;
  overflow: hidden;
}
.store-locator .sidebar .loader {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(229.5, 229.5, 229.5, 0.7);
  z-index: 100;
  text-align: center;
}
.store-locator .sidebar .loader p {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
.store-locator .sidebar .search {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  background-color: rgb(229.5, 229.5, 229.5);
  border-bottom: 1px solid rgb(229.5, 229.5, 229.5);
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
}
.store-locator .sidebar .search .search-loader {
  display: none;
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  width: 100%;
  text-align: center;
  line-height: 46px;
  background-color: rgba(229.5, 229.5, 229.5, 0.7);
}
.store-locator .sidebar .search .search-loader img {
  vertical-align: middle;
}
.store-locator .sidebar .search .input input {
  width: 100%;
  height: 50px;
  border: none;
  margin: 0;
  padding: 0 50px 0 10px;
  box-sizing: border-box;
  outline: none;
}
.store-locator .sidebar .search .input .store-search-dropdown {
  box-sizing: border-box;
  background-color: rgb(229.5, 229.5, 229.5);
  position: absolute;
  top: 100%;
  width: 100%;
  max-height: 200px;
  overflow: hidden;
  z-index: 100;
}
.store-locator .sidebar .search .input .store-search-dropdown ul,
.store-locator .sidebar .search .input .store-search-dropdown li {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}
.store-locator .sidebar .search .input .store-search-dropdown li {
  width: 100%;
  padding: 15px 20px;
  border-bottom: 1px solid #cccccc;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s linear;
}
.store-locator .sidebar .search .input .store-search-dropdown li:hover {
  background-color: #cccccc;
}
.store-locator .sidebar .search .input .store-search-dropdown li:last-child {
  border: none;
}
.store-locator .sidebar .search .geolocation button {
  width: 100%;
  height: 50px;
  color: white;
  border: none;
  cursor: pointer;
  outline: none;
  background-color: #333333;
  box-sizing: border-box;
  padding: 0 10px;
}
.store-locator .sidebar .stores {
  position: relative;
  width: 100%;
  height: 100%;
}
.store-locator .sidebar .store {
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid rgb(229.5, 229.5, 229.5);
  transition: background-color 0.2s linear;
  position: relative;
}
.store-locator .sidebar .store:hover {
  background-color: rgb(242.25, 242.25, 242.25);
}
.store-locator .sidebar .store .store-data {
  width: 100%;
  cursor: pointer;
}
.store-locator .sidebar .store .distance {
  position: absolute;
  right: 10px;
  top: 5px;
}
.store-locator .sidebar .store .distance span {
  display: inline-block;
  box-sizing: border-box;
  padding: 0 5px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  font-size: 12px;
  border-radius: 5px;
}
.store-locator .sidebar .store h4,
.store-locator .sidebar .store p {
  margin: 0;
  padding: 0;
}
.store-locator .sidebar .store .name {
  margin-bottom: 10px;
  padding: 20px 20px 0 20px;
  box-sizing: border-box;
}
.store-locator .sidebar .store .name h4 {
  font-size: 20px;
}
.store-locator .sidebar .store .address {
  padding: 0 20px 20px 20px;
  box-sizing: border-box;
}
.store-locator .sidebar .store .address p {
  font-size: 16px;
}
.store-locator .sidebar .store .navigation {
  background: rgb(247.35, 247.35, 247.35);
  padding: 10px 20px;
  box-sizing: border-box;
  font-size: 16px;
}
.store-locator .sidebar .store .navigation a {
  text-decoration: none;
  color: blue;
}
.store-locator .sidebar .store .navigation ul,
.store-locator .sidebar .store .navigation li {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}
.store-locator .sidebar .store .navigation ul li {
  display: inline-block;
  width: auto;
  text-align: center;
}
.store-locator .sidebar .store .navigation ul li:after {
  display: inline-block;
  content: "-";
  margin-left: 4px;
}
.store-locator .sidebar .store .navigation ul li:last-child:after {
  display: none;
}
.store-locator .mapboxgl-popup {
  max-width: 350px;
}
.store-locator .mapboxgl-popup .mapboxgl-popup-content {
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  max-height: 80vh;
  overflow-y: auto;
  width: 350px;
}
.store-locator .mapboxgl-popup.mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
  border-bottom-color: #fff;
}
.store-locator .mapboxgl-popup.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
  border-top-color: #fff;
}
.store-locator .mapboxgl-popup.mapboxgl-popup-anchor-left .mapboxgl-popup-tip {
  border-right-color: #fff;
}
.store-locator .mapboxgl-popup.mapboxgl-popup-anchor-right .mapboxgl-popup-tip {
  border-left-color: #fff;
}
.store-locator .mapboxgl-popup .mapboxgl-popup-close-button {
  padding: 0;
  font-size: 20px;
  outline: none;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  width: 28px;
  height: 28px;
  border-radius: 100%;
  top: 15px;
  right: 15px;
  line-height: 28px;
  text-align: center;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-locator .mapboxgl-popup .mapboxgl-popup-close-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.store-locator .mapboxgl-popup .store-popup-card {
  display: flex;
  flex-direction: column;
}
.store-locator .mapboxgl-popup .store-popup-card .store-popup-thumbnail {
  width: 100%;
  padding-bottom: 50%;
  position: relative;
  overflow: hidden;
}
.store-locator .mapboxgl-popup .store-popup-card .store-popup-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.store-locator .mapboxgl-popup .store-popup-card .store-popup-infos {
  padding: 16px;
}
.store-locator .mapboxgl-popup .store-popup-card .store-popup-infos .store-popup-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0b2e4d;
  line-height: 1.2;
}
.store-locator .mapboxgl-popup .store-popup-card .store-popup-infos .store-popup-details {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  font-size: 0.875rem;
  color: #333;
}
.store-locator .mapboxgl-popup .store-popup-card .store-popup-infos .store-popup-details .store-popup-detail-item {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: flex-start;
}
.store-locator .mapboxgl-popup .store-popup-card .store-popup-infos .store-popup-details .store-popup-detail-item .store-popup-label {
  grid-column: span 1;
  font-size: 0.75rem;
  color: #ff5a3c;
  font-weight: 600;
  margin-top: 2px;
}
.store-locator .mapboxgl-popup .store-popup-card .store-popup-infos .store-popup-details .store-popup-detail-item .store-popup-label img {
  width: 12px;
  height: auto;
  object-fit: contain;
}
.store-locator .mapboxgl-popup .store-popup-card .store-popup-infos .store-popup-details .store-popup-detail-item .store-popup-label.store-popup-icon img {
  width: 14px;
}
.store-locator .mapboxgl-popup .store-popup-card .store-popup-infos .store-popup-details .store-popup-detail-item .store-popup-value {
  grid-column: span 6;
  opacity: 0.7;
  color: inherit;
  text-decoration: none;
  line-height: 1.4;
}
.store-locator .mapboxgl-popup .store-popup-card .store-popup-infos .store-popup-details .store-popup-detail-item .store-popup-value a {
  color: inherit;
  text-decoration: none;
}
.store-locator .mapboxgl-popup .store-popup-card .store-popup-infos .store-popup-details .store-popup-detail-item .store-popup-value a:hover {
  opacity: 1;
}
.store-locator .mapboxgl-popup .store-popup-card .store-popup-infos .store-popup-details .store-popup-detail-item .store-popup-value p {
  margin: 0;
}
.store-locator .map-container {
  border: 1px solid rgb(229.5, 229.5, 229.5);
  border-left: none;
}
.store-locator .map-container #mapbox-el {
  width: 100%;
  height: 100%;
}
.store-locator .map-container #mapbox-el .mapboxgl-marker {
  width: 28px;
  height: 41px;
}
.store-locator .map-container #mapbox-el .mapboxgl-marker svg {
  display: none;
}
.store-locator .map-container #mapbox-el .mapboxgl-marker:after, .store-locator .map-container #mapbox-el .mapboxgl-marker:before {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 4px;
  left: 7px;
  border-radius: 100%;
}
.store-locator .map-container #mapbox-el .mapboxgl-marker:after {
  z-index: 10;
  background-color: #2271b1;
}
.store-locator .map-container #mapbox-el .mapboxgl-marker:before {
  width: 22px;
  height: 22px;
  left: 3px;
  bottom: 0;
  background-color: rgba(34, 113, 177, 0.3);
}

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