.frontPage .frontPageContent h1 {
	margin-bottom: 20px;
}

.frontPage .frontPageContent p {
	font-size: var(--font-size-rg);
	line-height: var(--line-height-rg);
	margin-bottom: 32px;
}

@media (min-width: 992px) {
	.frontPage .frontPageContent h1,
	.frontPage .frontPageContent p {
		width: 50%;
	}
}

.frontPage .frontPageContent figure {
	margin: 0;
}

.frontPage .frontPageContent figure img {
	width: 100%;
}

.frontPage .frontPageStores {
	margin-top: 40px;
}

.frontPage .frontPageStores .frontPageLocationPicker {
	flex: 0 0 100%;
	margin-bottom: 40px;
}

@media (min-width: 992px) {
	.frontPage .frontPageStores .frontPageLocationPicker {
		flex: 0 0 240px;
		margin-bottom: 0;
		margin-right: 40px;
	}
}

.frontPage .frontPageStores .frontPageLocationPicker .frontPageLocationPickerOption {
	border: 1px solid var(--color-yellow1);
	color: var(--color-grey4);
	display: block;
	font-size: var(--font-size-lg);
	line-height: var(--line-height-lg);
	padding: 11px 16px 12px 16px;
	position: relative;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.frontPage .frontPageStores .frontPageLocationPicker .frontPageLocationPickerOption.active {
	background: var(--color-yellow-gradient1);
	border: none;
	color: var(--color-red1);
	font-weight: var(--font-weight-condensed-black);
	padding: 12px 16px;
}

@media (min-width: 992px) {
	.frontPage .frontPageStores .frontPageLocationPicker .frontPageLocationPickerOption {
		padding: 19px 20px;
	}

	.frontPage .frontPageStores .frontPageLocationPicker .frontPageLocationPickerOption.active {
		padding: 20px;
	}
}

.frontPage .frontPageStores .frontPageLocationPicker .frontPageLocationPickerOption:not(:last-child) {
	margin-bottom: 20px;
}

.frontPage .frontPageStores .frontPageLocationPicker .frontPageLocationPickerOption:after {
	border: solid var(--color-grey3);
	border-width: 0 2px 2px 0;
	content: '';
	display: inline-block;
	left: auto;
	padding: 4px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

@media (min-width: 992px) {
	.frontPage .frontPageStores .frontPageLocationPicker .frontPageLocationPickerOption:after {
		padding: 5px;
		right: 24px;
	}
}

.frontPage .frontPageStores .frontPageLocationPicker .frontPageLocationPickerOption.active:after {
	border-color: var(--color-red1);
	border-width: 0 3px 3px 0;
}

.frontPage .frontPageStores .frontPageLocations {
	flex-basis: 100%;
}

.frontPage .frontPageStores .frontPageLocations .frontPageLocationStores {
	column-gap: 0;
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 40px;
}

@media (min-width: 992px) {
	.frontPage .frontPageStores .frontPageLocations .frontPageLocationStores {
		column-gap: 24px;
		grid-template-columns: repeat(2, 1fr);
		row-gap: 48px;
	}
}

@media (min-width: 1200px) {
	.frontPage .frontPageStores .frontPageLocations .frontPageLocationStores {
		column-gap: 32px;
		grid-template-columns: repeat(3, 1fr);
		row-gap: 56px;
	}
}

@media (min-width: 1400px) {
	.frontPage .frontPageStores .frontPageLocations .frontPageLocationStores {
		column-gap: 40px;
		grid-template-columns: repeat(4, 1fr);
		row-gap: 64px;
	}
}

.frontPage .frontPageStores .frontPageLocations .frontPageLocationStores:not(.active) {
	display: none;
}

.frontPage .frontPageStores .frontPageLocations .frontPageLocationStores .frontPageStore h2 {
	color: var(--color-grey4);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-condensed-black);
	line-height: var(--line-height-lg);
	padding: 0 16px 16px 16px;
}

.frontPage .frontPageStores .frontPageLocations .frontPageLocationStores .frontPageStore hr {
	background-color: var(--color-grey4);
	border: none;
	height: 2px;
	margin: 0;
	opacity: 1;
}

.frontPage .frontPageStores .frontPageLocations .frontPageLocationStores .frontPageStore p {
	font-size: var(--font-size-rg);
	line-height: var(--line-height-rg);
	margin-bottom: auto;
	padding: 12px 16px 6px;
}

.frontPage .frontPageStores .frontPageLocations .frontPageLocationStores .frontPageStore p + p {
	font-weight: var(--font-weight-bold);
	margin-bottom: 0;
	padding: 6px 16px 12px;
}

.frontPage .frontPageStores .frontPageLocations .frontPageLocationStores .frontPageStore a {
	background-color: var(--color-red1);
	color: var(--color-white);
	display: block;
	font-size: var(--font-size-rg);
	font-weight: var(--font-weight-condensed-black);
	line-height: var(--line-height-rg);
	padding: 8px 0 10px;
	text-align: center;
	text-decoration: none;
	transition: background-color .2s ease;
}

.frontPage .frontPageStores .frontPageLocations .frontPageLocationStores .frontPageStore a:active,
.frontPage .frontPageStores .frontPageLocations .frontPageLocationStores .frontPageStore a:focus,
.frontPage .frontPageStores .frontPageLocations .frontPageLocationStores .frontPageStore a:hover {
	background-color: var(--color-red2);
	transition: background-color .2s ease;
}