/* location */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200&family=Inter:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

#big-map {
	display: flex;
	flex-direction: column;
	min-height: 80vh;
	height: 100%;
}

@media screen and (min-width: 640px) {
	#big-map.mobile-map {
		display: none;
	}
}

#big-map .search-results {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-bottom: 2rem;
}

#big-map .location-search-bar {
	padding: 1.5rem 0;
	text-align: center;
}

@media screen and (min-width: 640px) {
	#big-map .location-search-bar {
		padding: 1.5rem;
	}
}

#big-map .location-search-bar h2 {
	font-size: 42px;
	margin: 0;
	margin-bottom: 1rem;
}

#big-map .location-search-bar label p {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
	clip-path: inset(50%);
	color: transparent;
}

#big-map .location-search-bar button {
	color: #fff;
}

#big-map .location-search-bar input {
	background: url('./icons/search-icon.svg') no-repeat;
	background-position: .5rem center;
	border-radius: 4px;
	border: 1px solid #CCC;
	padding: .75rem 1rem .75rem 2.5rem;
	width: 100%;
	font-size: 1rem;
}

.location-filter-container {
	display: flex;
	align-self: center;
	justify-content: center;
	border: 1px solid #ccc;
	border-radius: .25rem;
	overflow: hidden;
	margin-bottom: 1.5rem;
	width: 100%;
}

@media screen and (min-width: 640px) {
.location-filter-container, #big-map .location-search-bar input {
	max-width: 300px;
	}
}

.location-filter-container button {
	flex-basis: 50%;
	font-weight: 500;
	padding: .5rem 1.5rem;
	border: none;
	border-radius: 0;
	color: #666;
	font-family: "Roboto", serif;
	font-size: 14px;
	background: transparent;
	transition: all 0.3s ease;
}

.location-filter-container button.active {
	color: #000;
	background: #DDD;
}

#big-map .search-results .location-results-container {
	position: relative;
	overflow: hidden;
	border: 1px solid #79747E;
	border-radius: 0.75rem;
}

#big-map .search-results .location-results-container .results-bg-overlay {
	position: absolute;
	z-index: 2;
	height: 100%;
	width: 100%;
	pointer-events: none;
	background: linear-gradient(0deg, #fff 0%, transparent 10%)
}

#big-map .search-results .location-results {
	overflow-y: scroll;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	column-gap: 1.5rem;
	padding: 0.75rem;
	/* border: 1px solid #79747E; */
	/* border-radius: 0.75rem; */
	scrollbar-width: thin;
	scrollbar-color: #D9D9D9 transparent;
	--scrollbar-color-track: transparent;
	list-style: none;
	counter-reset: locationsCounter;
	height: 500px;
}

@media screen and (min-width: 600px) {
	#big-map .search-results .location-results {
		padding: 2rem;
	}
}

#big-map .search-results .location-results .location-item {
	position: relative;
	display: flex;
	align-items: flex-start;
	padding: 1.5rem 0 0 3rem;
	gap: 8px;
	width: 100%;
	counter-increment: locationsCounter;
}

@media screen and (min-width: 600px) {
#big-map .search-results .location-results .location-item {
	padding: 1.5rem 1.5rem 1.5rem 3rem;
	}
}

#big-map .search-results .location-results .location-item::before {
	content: '' counter(locationsCounter);
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50%;
	border: 2px solid #2080B4;
	height: 30px;
	width: 30px;
	text-align: center;
	margin-top: 1.25rem;
	color: #001E61;
}

#big-map .search-results .location-results .location-item .information {
	width: 100%;
}

#big-map .search-results .location-results .location-item .information p {
	padding-bottom: 0.75rem;
}

#big-map .search-results .location-results .location-item .information .location-name {
	color: #001E61;
	font-size: 1.5rem;
	font-weight: 400;
	padding-bottom: 1rem;
}

#big-map .search-results .location-results .location-item .information .location-phone {
	font-size: 1.25rem;
	font-weight: 400;
}

#big-map .search-results .location-results .location-item .information .location-street,
#big-map .search-results .location-results .location-item .information .location-csz {
	font-size: 1.25rem;
	font-weight: 600;
}

#big-map .search-results .location-results .location-item .information .directions-container {
	display: flex;
	justify-content: space-between;
	font-size: 1rem;
}

#big-map .search-results .location-results .location-item .information .directions-container a{
	font-size: 1.25rem;
	text-decoration: underline;
}

#big-map .search-results .location-results .location-item .information .additional-details {
	font-size: 1rem;
	font-weight: 400;
}

#big-map .search-results .location-results .location-item .information .open-now {
	position: relative;
	color: var(--Text-Main, #333);
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-style: normal;
	padding-left: 16px;
	font-weight: 700;
	line-height: 21px;
	margin: 0;
	margin-top: 10px;
	margin-bottom: 8px;
}

#big-map .search-results .location-results .location-item .information .open-now::before {
	content: '•';
	position: absolute;
	left: 0;
	top: 0;
	font-size: 20px;
	color: #f25146;
}

#big-map .search-results .location-results .location-item .information .contact a {
	color: var(--oracle-aa-accessible, #39706f);
	text-decoration: none;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 21px;
}

#big-map .search-results .location-results .location-item .information .contact a:nth-child(2) {
	padding-inline: 4px;
	border-inline: 2px solid var(--oracle-aa-accessible, #39706f);
}

#big-map #location-big-map {
	width: 100%;
	min-height: 500px;
	height: 100%;
}

@media screen and (max-width: 640px) {
	#big-map {
		flex-direction: column-reverse;
		min-height: 50vh;
		height: auto;
	}

	#big-map #location-big-map {
		width: 100%;
		height: 30vh;
	}
}

#location-big-map .map-marker {
	width: 30px;
	height: 40px;
	background: url('./icons/pin.svg') no-repeat;
	background-size: contain;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.info-window-content h2 {
	font-size: 1.5rem !important;
}

.info-window-content p, .info-window-content a {
	padding-bottom: 0 !important;
	font-weight: 400;
}