.location--top {
	background: var(--theme-primary-color);
	color: #fff;
}

.location--container-top {
	padding: 60px 30px;
}

.location--cta-wrap {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.location--cta {
	margin: 15px 10px;
}

.theme-button.location--cta.active,
.theme-button.location--cta:focus {
	background: var(--theme-transparent-white);
	outline: none;
}

.location--mid {
	background: var(--theme-primary-color);
	overflow: hidden;
}

.location--static-image,
.location--background {
	position: relative;
}

.location--static-image:before,
.location--background:before {
	content: "";
	position: absolute;
	top: 50%;
	width: 100vw;
	left: calc(50% - 50vw);
	bottom: 0;
	background: var(--theme-light-grey);
}

.location--static-image img,
.location--background img {
	position: relative;
}

.location--background svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}

.location--bottom {
	background: var(--theme-light-grey);
	color: var(--theme-primary-color);
}

.location--container-bottom {
	padding: 60px 30px 90px;
}

.location--explainer {
	font-size: 1.25rem;
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: .07em;
}

.location--stat {
	font-size: 4rem;
	text-align: center;
	font-weight: 400;
	line-height: 1;
}

.location--stat-description {
	display: block;
	font-size: 1.063rem;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: .1em;
}

.location-tip {
	cursor: pointer;
}

.location--popup {
	position: absolute;
	background: #fff;
	color: var(--theme-charcoal);
	padding: 20px 30px 15px 15px;
	color: var(--theme-primary-color);
	margin-top: 50px;
	z-index: 5;
	font-size: 1.063rem;
	max-width: 360px;
}

.location--popup > ul {
	list-style-type: none;
	padding: 0;
	margin: 0 0 16px;
}

@media (min-width: 576px) {
	.location--popup > ul {
		columns: 2;
		gap: 20px;
		list-style-type: none;
		padding: 0;
		margin: 0 0 16px;
	}
}

.location--popup > p strong {
	font-weight: 500;
	font-size: 1.5rem;
}

.location--popup-close {
	width: 44px;
	height: 44px;
	position: absolute;
	top: 0;
	right: 0;
	text-indent: 100px;
	white-space: nowrap;
	overflow: hidden;
	font-size: 1px;
	border: 0;
	box-shadow: none;
	background: transparent;
	background-image: url(../../images/close.svg);
	background-position: right 12px top 12px;
	background-repeat: no-repeat;
	background-size: 12px 12px;
	cursor: pointer;
}