/* Google Maps Store Finder Frontend Styles */

.display-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex-wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.gmsf-wrapper {
	background-color: #f7f7f7;
	display: block;
	width: 100%;
}
.gmsf-wrapper .row-utility {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	padding: 12px 9px 10px;
}
/* Search form */
#gmsf-search-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0;
	flex: 0;
	gap: 10px;
	width: 100%;
}
#gmsf-search-input {
	background-image: url(/wp-content/mu-plugins/google-maps-store-finder/assets/images/icon_search.svg);
	background-position: 12px center;
	background-repeat: no-repeat;
	background-size: 14px 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 225px;
	padding: 12px 12px 12px 33px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 7px;
	border-radius: 2px;
	border: 1px solid #dadada;
	background-color: #fdfdfd;
}
.gmsf-search-form input[type="text"],
.gmsf-search-form select,
.gmsf-search-form button {
	padding: 6px 10px;
	font-size: 14px;
	border-radius: 4px;
	border: 1px solid #ccc;
}
#gmsf_radius {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 2px;
	border: 1px solid #dadada;
	background: #fdfdfd;
	background-image: url(/wp-content/mu-plugins/google-maps-store-finder/assets/images/icon_arrow-blue-down.svg);
	background-position: calc(100% - 8px) center;
	background-repeat: no-repeat;
	background-size: 11px 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 12px 24px 12px 12px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
}
.gmsf-category-buttons {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0 16px;
}
.gmsf-wrapper button.gmsf-category-button {
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	opacity: 0.7;
}
.gmsf-wrapper button.gmsf-category-button,
.gmsf-store-category {
	border-radius: 20px;
	border: 1px solid #ededed;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: var(--Gray, #505050);
	font-size: 0.6875rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	padding: 9px 10px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.gmsf-category-button:before {
	background-color: var(--PARR-Light-Blue, #0ea6df);
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 7px;
	margin-right: 3px;
	width: 7px;
}
.gmsf-wrapper button.gmsf-category-button.active {
	background-color: var(--PARR-Light-Blue, #0ea6df);
	color: #fff;
	-webkit-filter: none;
	filter: none;
	opacity: 1;
}
.gmsf-wrapper button.gmsf-category-button.active:before {
	background-color: #fff;
}
.gmsf-category-button:hover {
	background: #ddd;
}

.gmsf-category-button.active {
	background: #0073aa;
	color: #fff;
}
@media only screen and (max-width: 395px) {
	#gmsf-search-form {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
/* Stores list container */
.gmsf-store-list {
	height: 100%;
	margin: 0 -5px;
	overflow: auto;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: 6px;
	/* max-height: 597px; */
	max-height: 100vh;
	margin-bottom: 17px;
	margin-top: 17px;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	padding-left: 20px;
	padding-right: 6px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 6px;
}
.gmsf-store-list-wrapper::-webkit-scrollbar-thumb,
.gmsf-store-list::-webkit-scrollbar-thumb {
	background-color: #afafaf;
	border-radius: 10px;
}
.gmsf-store-list-wrapper::-webkit-scrollbar,
.gmsf-store-list::-webkit-scrollbar {
	background-color: transparent;
	width: 8px;
}
.gmsf-store-item {
	background: #fff;
	border-left: 5px solid transparent;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.04);
	box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.04);
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 26px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 8px;
	-ms-flex-item-align: stretch;
	align-self: stretch;
}
.gmsf-store-item.active {
	border-color: #e0e328;
}
.public .gmsf-store-button,
.gmsf-store-button {
	background: var(--PARR-Light-Blue, #0ea6df);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #fff;
	font-family: "trade-gothic-next", sans-serif;
	font-size: 0.8125rem;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	text-transform: uppercase;
	max-width: 100%;
	padding: 7px 15px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 7px;
	text-decoration: none;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}
/* Map container */
#gmsf-map {
	width: 100%;
	height: 595px;
	border: 1px solid #ddd;
}
.gm-style img {
	-o-object-fit: contain;
	object-fit: contain;
}
/* Custom Overlay Popup */
.gmsf-overlay {
	position: absolute;
	-webkit-transform: translate(-50%, -110%);
	transform: translate(-50%, -110%);
	z-index: 1000;
}
.gmsf-overlay-content {
	background: #ffffff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 32px 10px 10px 10px;
	-webkit-box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
	max-width: 308px;
	min-width: 220px;
	position: relative;
	font-size: 14px;
}
.gmsf-info-window {
	display: grid;
	gap: 10px;
}
.gmsf-store-name,
.gmsf-overlay-content .gmsf-info-title {
	display: block;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
}
.gmsf-store-address,
.gmsf-store-phone,
.gmsf-overlay-content .gmsf-store-text,
.gmsf-overlay-content .gmsf-info-address,
.gmsf-overlay-content .gmsf-phone a,
.gmsf-overlay-content .gmsf-day {
	color: var(--Gray, #505050);
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.3em;
}
.gmsf-store-categories {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 3px;
}
.gmsf-store-category:hover,
.gmsf-store-category {
	background-color: #f2f2f2;
	border-radius: 20px;
	padding: 6px 8px;
}
.gmsf-hours-row {
	margin: 2px 0;
}
.gmsf-hours,
.gmsf-store-text {
	font-weight: 500;
	padding: 3px 0 9px 0;
}
.gmsf-day {
	display: inline-block;
	font-weight: 400;
	margin-right: 10px;
	min-width: 76px;
}
.gmsf-button-container {
	margin-bottom: 16px;
}
.gmsf-overlay-close {
	background-image: url(./images/icon_close.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	height: 10px;
	width: 10px;
	top: 10px;
	right: 10px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	color: #999;
}
.gmsf-overlay-close:hover {
	color: #000;
}

/* Small arrow pointer */
.gmsf-overlay-content::after {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #fff;
}

/* Optional: mobile responsive */
@media (max-width: 600px) {
	.gmsf-search-form {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 8px;
	}
}
/* DELIVERY SHORTCODE */
#gmsf-delivery-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
#gmsf-zip-code {
	border-radius: 2px 0 0 2px;
	border-top: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
	border-left: 1px solid #dadada;
	border-right: 0;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: var(--Form-Text-Gray, #393939);
	font-size: 0.9375rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding: 12px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	-ms-flex: 1 0 0px;
	flex: 1 0 0;
}
#gmsf-delivery-search-submit {
	border: 0;
	border-radius: 0 2px 2px 0;
	background-color: var(--PARR-Light-Blue, #0ea6df);
	background-image: url(./images/icon_arrow-r-white.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 6px 11px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	padding: 12px 16px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}
.gmsf-modal-wrapper {
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	height: 100%;
	left: 0;
	max-width: 100%;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
}
.gmsf-modal-inner {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}
.gmsf-store-list-wrapper-outer {
	background-color: #fff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/* height: 80vh; */
	margin: 30px 20px;
	max-height: 80vh;
	max-width: 749px;
	padding-top: 39px;
	padding: 40px 20px;
	position: relative;
	width: 100%;
}
.gmsf-delivery-stores__title-container {
	margin-bottom: 20px;
}
.block h2.gmsf-delivery-stores-title {
	color: var(--PARR-Navy, #183963);
	font-size: 2.25rem;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	margin-bottom: 0px;
}
.block h2.gmsf-delivery-stores-title,
.gmsf-delivery-stores-sub-title {
	padding: 0 20px;
}
.gmsf-store-list-wrapper {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 30px;
	max-height: calc(100% - 120px);
	overflow-y: auto;
	position: relative;
	width: 100%;
}
.gmsf-store-list-wrapper-outer button.close {
	background-image: url(./images/icon_close.svg);
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-filter: brightness(100);
	filter: brightness(100);
	position: absolute;
	height: 14px;
	width: 14px;
	top: -30px;
	right: 0px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	color: #999;
}
.gmsf-modal-wrapper .gmsf-store-list {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	height: auto;
	margin: 0;
	max-height: 64vh;
	max-width: 100%;
	padding: 20px;
	width: 100%;
}
.gmsf-modal-wrapper .gmsf-store-item {
	cursor: default;
}
/* LOCATION BLOCK */
.gmsf-location-block__delivery {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin: 16px 0;
}
.block .gmsf-location-block__delivery > span {
	color: var(--PARR-Light-Blue, #0ea6df);
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 700;
	line-height: 150%; /* 1.3125rem */
	text-transform: uppercase;
	margin-bottom: 0;
	margin-right: 20px;
}
.gmsf-location-block__delivery #gmsf-zip-code {
	height: 43px;
}
.gmsf-location-block__delivery-rejected {
	margin: 0 -8px;
}
.gmsf-location-block__delivery-rejected * {
	margin: 0 8px;
}
.block .gmsf-delivery-results-text span {
	color: var(--Form-Text-Gray, #393939);
	font-size: 0.9375rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: none;
}
.gmsf-location-block__delivery-confirmed span:before {
	color: #47c95a;
	content: "\2713";
	display: inline-block;
	font-size: 1em;
	font-weight: 700;
	margin-right: 5px;
}
.gmsf-delivery-view-stores-button {
	background-color: transparent;
	border: 0;
	color: var(--PARR-Light-Blue, #0ea6df);
	font-size: 0.8125rem;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	padding: 0;
	-webkit-text-decoration-line: underline;
	text-decoration-line: underline;
	-webkit-text-decoration-style: solid;
	text-decoration-style: solid;
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
	text-transform: uppercase;
}
.gmsf-location-block__store-info {
	border-bottom: 1px solid #e2e2e2;
	padding-bottom: 30px;
}
.gmsf-location-block__store-info > div,
.gmsf-location-block__store-cat {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: var(--Gray, #505050);
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 20px 0;
}
.gmsf-icon-before:before {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 20px;
	margin-right: 10px;
	max-width: 17px;
	position: relative;
	width: 17px;
}
.gmsf-location-block__address:before {
	background-image: url(./images/icon_map-pin-light-blue.svg);
}
.gmsf-location-block__phone:before {
	background-image: url(./images/icon_phone.svg);
}
.gmsf-location-block__hours:before {
	background-image: url(./images/icon_clock.svg);
	top: 5px;
}
.gmsf-location-block__day-hours {
	font-weight: 600;
	margin: 4px 0;
}
.gmsf-location-block__day-hours .day {
	display: inline-block;
	font-weight: 400;
	margin-right: 10px;
	width: 83px;
}
.gmsf-location-block__store-cats {
	padding-top: 30px;
}
.gmsf-location-block__store-cat {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 9px 0;
}
.gmsf-location-block__store-cat:before {
	background-image: url(./images/icon_bullet.svg);
	top: 4px;
}
.bottom .gmsf-location-block__col-1 {
	margin-bottom: 30px;
}
.gmsf-location-block__manager {
	margin: 10px 0;
}
.gmsf-location-block__manager img {
	aspect-ratio: 1;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	margin-bottom: 16px;
	max-height: 194px;
	max-width: 194px;
}
.block.block_type__location-block .gmsf-location-block__store-mgr {
	color: var(--Gray, #505050);
	font-size: 0.8125rem;
	font-style: normal;
	font-weight: 600;
	line-height: 100%; /* 0.8125rem */
	margin-bottom: 5px;
	text-transform: uppercase;
}
.block.block_type__location-block .gmsf-location-block__store-mgr-name {
	font-size: 1rem;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 1rem */
}
.block.block_type__location-block a.gmsf-location-block__store-mgr-name {
	-webkit-text-decoration-line: underline;
	text-decoration-line: underline;
	-webkit-text-decoration-style: solid;
	text-decoration-style: solid;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}
.gmsf-location-block__col-2 {
	overflow: hidden;
}
.gmsf-location-block__col-2 iframe {
	height: 100%;
	/* max-height: 459px; */
	max-width: 100%;
	width: 100%;
}
@media only screen and (min-width: 1024px) {
	.gmsf-wrapper .gmsf-store-list {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		/* margin: 0 -5px; */
		max-height: 561px;
		max-width: 27.77%;
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}
	#gmsf-map {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
}
@media only screen and (min-width: 768px) {
	.gmsf-location-block__row {
		margin: 0 -20px;
	}
	.top .gmsf-location-block__col-1 {
		margin-bottom: 30px;
	}
	.gmsf-location-block__col-1,
	.gmsf-location-block__col-2 {
		margin: 0 20px;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
	.gmsf-location-block__col-1 {
		max-width: 25.1%;
	}
	.top .gmsf-location-block__col-2 {
		min-height: 520px;
	}
	.gmsf-location-block__col-2 {
		margin-bottom: 30px;
		max-width: 74.9%;
	}
}
@media only screen and (max-width: 767px) {
	.top .gmsf-location-block__col-1,
	.top .gmsf-location-block__col-2 {
		width: 100%;
	}
	.top .gmsf-location-block__col-2 {
		order: -1;
	}
	.top .gmsf-location-block__col-2 iframe {
		aspect-ratio: 1.2;
	}
	.bottom .gmsf-location-block__col-1 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin: 40px -10px 30px -10px;
		width: 100%;
	}
	.bottom .gmsf-location-block__col-1 > div {
		margin: 0 10px;
	}
	.gmsf-location-block__delivery {
		justify-content: flex-start;
	}
}
@media only screen and (min-width: 640px) and (max-width: 767px) {
	.top .gmsf-location-block__col-1 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin: 40px -30px 30px -30px;
	}
	.top .gmsf-location-block__col-1 > div {
		flex: 1;
		margin: 0 30px;
	}
	.gmsf-location-block__store-info {
		border-bottom: 0;
		border-right: 1px solid #e2e2e2;
	}
	.bottom .gmsf-location-block__col-1 {
		display: block;
		width: auto;
	}
	.bottom .gmsf-location-block__col-2 {
		flex: 1;
		margin: 0 10px 0 40px;
	}
}
@media only screen and (max-width: 480px) {
	.bottom .gmsf-location-block__col-1 {
		flex-wrap: wrap;
	}
	.bottom .gmsf-location-block__col-1 > div {
		margin: 10px;
	}
}
