/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./deps/sfra-webpack-builder/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./deps/sfra-webpack-builder/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./deps/sfra-webpack-builder/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./src/app_schaffrath/cartridges/app_page_designer/cartridge/client/default/scss/experience/components/commerceAssets/storeLocator.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* 1820px */
/*md
@no-stat

# Breakpoints

## Launch 360 breakpoints

Launch 360 has 4 main breakpoints that targeted to [supported devices](https://confluence.ontrq.com/display/RSB/SFRA+BP+-+Supported+Browsers+and+Devices)
 - iPhone X, iPad, MS Windows desktop / Macbook Pro retina

** Please not iPad landscape - is LG breakpoint **

[See more info](https://confluence.ontrq.com/display/RSB/SFRA+-+Site+Layout+Conception)

## Supported screen resolutions

Launch 360 is come "Retina ready". It supports MDPI and XHDPI pixel density across all site.

| Device             | Screen Resolution, CSS pixels | Pixel density |
|--------------------|-------------------------------|---------------|
| Desktop Windows PC | 1920x1080                     | MDPI          |
| Macbook pro 13     | 1280x800 / 1440x900           | XHDPI         |
| iPad Air 2         | 1024x768                      | XHDPI         |
| iPhone X           | 375x812                       | XHDPI         |
| Samsung Galaxy S9  | 360x740                       | XHDPI         |

## Supported screen scaling

Launch 360 comes with support of 1:1, 1:1.25, 1.5, 1:2 screen scaling. To do so you need
to take care not only by whole pixel but pixel fractions that is used.

*/
/*md
@no-stat

# Media queries (breakpoints)

We have a `media` mixin for make it easier to implement responsive styling via media queries.

You can nest them right within other blocks of CSS,which puts the properties and values you are changing right next
to each other.
That creates an obvious connection between them, which is a much nicer authoring experience than trying to maintain
those changes separated by tons of other code or in a different file.

## Configuration

**Site Layout Conception** details with examples you can find [here](https://confluence.ontrq.com/display/RSB/SFRA+-+Site+Layout+Conception)

`media` mixin works with `$media` map where `media-name: media query`

This is how `$media` map looks:

```scss
$media: (
	sm: 'screen and (max-width: 767px)',
	md: 'screen and (min-width: 768px) and (max-width: 1199px)',
	lg: 'screen and (min-width: 1200px)',
	xl: 'screen and (min-width: 1201px)',
	md-up: 'screen and (min-width: 768px)',
	md-down: 'screen and (max-width: 1023px)',
	lg-up: 'screen and (min-width: 1024px)',
	lg-down: 'screen and (max-width: 1367px)'
);
```

## Usage

Here is how to use `media()` mixin:

```scss
.b-block {
	// styles outside of a media query

	@include media(md-up) {
		// styles for "m" and "l" viewports
	};

	@include media(sm) {
		// styles for "s" viewports
	};
}
```

Simply edit this file and add your own media queries to `$media` map.

*/
.storepage {
  width: 100%;
}
@media screen and (min-width: 1024px) and (max-width: 1366.9px) {
  .storepage {
    padding-top: 1.25rem;
  }
}

a.pd-image-link {
  border: none;
}
a.pd-image-link:hover, a.pd-image-link:visited {
  border: none;
}

.component--full-screen-width {
  max-width: 100vw;
}
.component--full-screen-width .container {
  max-width: 100vw;
}
.component--full-screen-width .row {
  margin: 0;
}
.component--full-screen-width .col-12 {
  padding: 0;
}
.component--full-screen-width .pd-image-link {
  width: 100%;
}
.component--full-screen-width picture {
  width: 100%;
}
.component--full-screen-width .carousel-control-prev {
  left: 1px;
}
.component--full-screen-width .carousel-control-next {
  right: 1px;
}

.m-page_designer .component--full-screen-width {
  width: calc(var(--vw, 1vw) * 100);
  margin: 0 calc(calc(var(--vw, 1vw) * -50) + 50%);
}

.store-locator-container {
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 32% 68%;
  gap: 1rem;
  background-color: #fff;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .store-locator-container {
    grid-template-columns: 100%;
    gap: 0;
  }
}
.store-locator-container .store-locator-header {
  grid-column: 1/-1;
}
.store-locator-container .store-locator-header h3 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (min-width: 992px) {
  .store-locator-container .store-locator-header h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
}
.store-locator-container .store-locator-header h4 {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-top: 0.75rem;
}
@media (max-width: 991.98px) {
  .store-locator-container .store-locator-header h4 {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-top: 0.5rem;
  }
}
@media (min-width: 768px) {
  .store-locator-container.store-locator-container-desktop-map-first {
    grid-template-columns: 68% 30%;
  }
  .store-locator-container.store-locator-container-desktop-map-first .store-locator-stores-list {
    grid-column: 2;
    order: 2;
  }
  .store-locator-container.store-locator-container-desktop-map-first .store-locator-map {
    grid-column: 1;
    order: 1;
  }
}
@media (max-width: 991.98px) {
  .store-locator-container.store-locator-container-mobile-map-first .store-locator-stores-list {
    grid-column: 1;
    order: 2;
  }
  .store-locator-container.store-locator-container-mobile-map-first .store-locator-map {
    grid-column: 1;
    order: 1;
  }
}
.store-locator-container [data-tab-id] {
  display: none;
}
.store-locator-container [data-tab-id].active {
  display: block;
}
.store-locator-container .store-locator-stores-list {
  margin-top: 1.75rem;
}
@media (max-width: 991.98px) {
  .store-locator-container .store-locator-stores-list {
    width: 98%;
    margin-top: 1.25rem;
  }
}
.store-locator-container .store-locator-stores-list .store-locator-navigation {
  margin-bottom: 2rem;
  display: flex;
  gap: 2.5rem;
  box-shadow: inset 0 -0.0625rem 0 0 #f2f2f2;
}
.store-locator-container .store-locator-stores-list .store-locator-navigation .tab-btn {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: box-shadow 0.15s ease-in-out;
  color: #424242;
  background-color: transparent;
  border: none;
  padding: 0.75rem 0.25rem;
}
@media (min-width: 992px) {
  .store-locator-container .store-locator-stores-list .store-locator-navigation .tab-btn {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 0.01em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .store-locator-container .store-locator-stores-list .store-locator-navigation .tab-btn {
    transition: none;
  }
}
.store-locator-container .store-locator-stores-list .store-locator-navigation .tab-btn:hover, .store-locator-container .store-locator-stores-list .store-locator-navigation .tab-btn.active {
  box-shadow: inset 0 -0.125rem 0 0 #e30714;
}
.store-locator-container .store-locator-stores-list .store-locator-store-list {
  max-height: 35rem;
  overflow-y: scroll;
}
.store-locator-container .store-locator-stores-list .store-locator-store-list::after {
  content: "";
  height: 1.25rem;
  display: block;
  position: sticky;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .store-locator-container .store-locator-stores-list .store-locator-store-list::after {
    height: 2.5rem;
  }
}
@media (max-width: 991.98px) {
  .store-locator-container .store-locator-stores-list .store-locator-store-list {
    max-height: 25rem !important;
    margin-right: -0.5rem;
    padding-right: 0.3125rem;
  }
}
.store-locator-container .store-locator-stores-list .store-locator-store-list::-webkit-scrollbar {
  width: 0.1875rem;
}
.store-locator-container .store-locator-stores-list .store-locator-store-list::-webkit-scrollbar-track {
  background-color: #f2f2f2;
  border-radius: 0.25rem;
}
.store-locator-container .store-locator-stores-list .store-locator-store-list::-webkit-scrollbar-thumb {
  background-color: #e30714;
  border-radius: 0.25rem;
  cursor: pointer;
}
.store-locator-container .store-locator-stores-list .store-locator-store-list::-webkit-scrollbar-thumb:hover {
  background-color: #be000b;
}
.store-locator-container .store-locator-stores-list .store-locator-store {
  transition: background-color 0.15s ease-in-out;
  margin: 0 2.5rem 0.75rem 0;
  padding: 1.25rem;
  position: relative;
  background-color: #f2f2f2;
  border-radius: 2rem;
}
@media (prefers-reduced-motion: reduce) {
  .store-locator-container .store-locator-stores-list .store-locator-store {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .store-locator-container .store-locator-stores-list .store-locator-store {
    margin: 0 0 0.75rem 0;
    padding: 0.75rem;
  }
}
.store-locator-container .store-locator-stores-list .store-locator-store.active, .store-locator-container .store-locator-stores-list .store-locator-store:hover {
  background-color: #ebe4de;
}
.store-locator-container .store-locator-stores-list .store-locator-store:last-child {
  margin: 0 2.5rem 0 0;
}
@media (max-width: 991.98px) {
  .store-locator-container .store-locator-stores-list .store-locator-store:last-child {
    margin: 0;
    padding: 0.75rem;
  }
}
.store-locator-container .store-locator-stores-list .store-locator-store .store-locator-store-heading {
  margin: 0 2.75rem 0.75rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}
.store-locator-container .store-locator-stores-list .store-locator-store .store-locator-store-heading .store-locator-store-title {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
}
@media (max-width: 991.98px) {
  .store-locator-container .store-locator-stores-list .store-locator-store .store-locator-store-heading .store-locator-store-title {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
}
.store-locator-container .store-locator-stores-list .store-locator-store .store-locator-store-heading .store-highlight-badge {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.01em;
  height: -moz-min-content;
  height: min-content;
  padding: 0.25rem 1rem;
  color: #fff;
  background-color: #e30714;
  border-radius: 4.875rem;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .store-locator-container .store-locator-stores-list .store-locator-store .store-locator-store-heading .store-highlight-badge {
    font-size: 0.875rem;
    line-height: 1.2;
  }
}
.store-locator-container .store-locator-stores-list .store-locator-store .store-locator-store-cta {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}
@media (max-width: 991.98px) {
  .store-locator-container .store-locator-stores-list .store-locator-store .store-locator-store-cta {
    top: 0.625rem;
    right: 0.75rem;
  }
}
.store-locator-container .store-locator-stores-list .store-locator-store .store-locator-store-body {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@media (max-width: 991.98px) {
  .store-locator-container .store-locator-stores-list .store-locator-store .store-locator-store-body {
    font-size: 0.875rem;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.01em;
  }
}
.store-locator-container .store-locator-stores-list .store-locator-store .store-events-info p {
  margin-bottom: 0.75rem;
}
.store-locator-container .store-locator-stores-list .store-locator-store .store-default-info p {
  margin-bottom: 0.25rem;
}
.store-locator-container .store-badges {
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.store-locator-container .store-badges .store-badge {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.25rem 1rem;
  outline: 0.125rem solid #424242;
  border-radius: 4.875rem;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .store-locator-container .store-badges .store-badge {
    font-size: 0.875rem;
    line-height: 1.2;
  }
}
.store-locator-container .image-fluid {
  width: 100%;
  max-width: 100%;
}
.store-locator-container .store-locator-map {
  margin-top: 1.75rem;
  position: relative;
  align-self: baseline;
  overflow: hidden;
}
.store-locator-container .store-locator-map_spots {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.store-locator-container .store-locator-map_spots-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: visible;
}
.store-locator-container .store-locator-map_spot {
  position: absolute;
  top: var(--top-position);
  left: var(--left-position);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.store-locator-container .store-locator-map_spot:has(.m-active) {
  z-index: 2;
}
.store-locator-container .store-locator-map_spot-btn {
  width: 2.875rem;
  height: 2.875rem;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: rgba(255, 255, 255, 0.4196078431);
  border: none;
  border-radius: 100%;
  z-index: 2;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .store-locator-container .store-locator-map_spot-btn {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}
.store-locator-container .store-locator-map_spot-btn::after {
  transition: transform 0.15s ease-in-out;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-color: #afc4b1;
  border-radius: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .store-locator-container .store-locator-map_spot-btn::after {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .store-locator-container .store-locator-map_spot-btn::after {
    width: 1rem;
    height: 1rem;
  }
}
.store-locator-container .store-locator-map_spot-btn:is(:hover, .m-active)::after {
  transform: scale(1.3);
}
.store-locator-container .store-locator-map_spot.kitchen .store-locator-map_spot-btn::after {
  background-color: #e30714;
}
.store-locator-container .store-locator-map_spot-popup {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: absolute;
  visibility: hidden;
  background-color: #f2f2f2;
  border-radius: 2rem;
  box-shadow: 0 0 2rem 0 rgba(66, 66, 66, 0.1);
  z-index: 2;
}
@media (max-width: 991.98px) {
  .store-locator-container .store-locator-map_spot-popup {
    padding: 0.625rem 0.75rem;
  }
}
.store-locator-container .store-locator-map_spot-popup[aria-hidden=false] {
  visibility: visible;
}
.store-locator-container .store-locator-map_spot-popup_content {
  white-space: nowrap;
}
.store-locator-container .store-locator-map_spot-popup_content-title {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .store-locator-container .store-locator-map_spot-popup_content-title {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
}
.store-locator-container .store-locator-map_spot-popup_content .m-link_regular {
  margin-top: 1.25rem;
}
@media (max-width: 991.98px) {
  .store-locator-container .store-locator-map_spot-popup_content .m-link_regular {
    margin-top: 0.625rem;
  }
}

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