/* ---------- HELPERS ---------- */
:root {
	/* ----- Spacers ----- */
	--spacer_xxxxs: 4px;
	--spacer_xxxs: 8px;
	--spacer_xxs: 12px;
	--spacer_xs: 16px;
	--spacer_sm: 24px;
	--spacer_md: 32px;
	--spacer_lg: 40px;
	--spacer_xl: 48px;
	--spacer_xxl: 56px;
	--spacer_xxxl: 64px;
	--spacer_xxxxl: 80px;
	
	--font_family_body: "GT Flexa", sans-serif;
	--font_family_title: "Jean Luc", sans-serif;
	
	--font_size_body: 16px;
	--font_size_sm: 14px;
}

.show-for-sr {
	border: 0 !important;
	clip: rect(0,0,0,0) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important
}

.reset-button-style {
	appearance: none;
	padding: 0;
	border: 0;
	background-color: transparent;
}

.semantic-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.body-container ul.semantic-list li {
	padding-left: 0;
}
.body-container ul.semantic-list li::before {
	content: none;
}
/* ---------- END HELPERS ---------- */
.map {
	-webkit-tap-highlight-color: transparent;
}
.map__actions {
	align-items: center;
	justify-content: space-between;
}

.map__search {
	position: relative;
	padding: 0;
	display: inline-flex;
	align-items: center;
	max-width: 450px;
	width: 100%;
	height: 55px;
}
.map__search-icon {
	display: block;
}

.map__search-input {
	font-size: 18px;
	appearance: none;
	border: 0;
	border-radius: 0;
	background-color: #FFF;
	padding-left: var(--spacer_md);
	padding-right: var(--spacer_lg);
	height: 100%;
	width: 100%;
	border-top: 1px solid #B9B9B9;
	border-bottom: 1px solid #B9B9B9;
	border-left: 1px solid #B9B9B9;
	/* box-shadow: inset 0 0 0 1px #B9B9B9; */
	box-sizing: border-box;
	transition: border 0.2s ease;
}
.map__search-input::placeholder {
	color: #CACACA;
}
.map__search-input:active,
.map__search-input:focus {
	/* box-shadow: inset 0 0 0 1px #FF7700; */
	border-color: #FF7700;
	outline: 0;
}

.map__search-reset-button {
	position: absolute;
	top: 50%;
	right: 88px;
	width: 24px;
	height: 24px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -50%);
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.map__search--has-value .map__search-reset-button {
	opacity: 1;
	visibility: visible;
}

.map__search-message {
	position: absolute;
	display: block;
	top: calc(100% + var(--spacer_xxxs));
	left: 0;
	width: 100%;
	min-height: 100%;
	font-size: 16px;
	line-height: 1.25;
	font-weight: bold;
	padding: var(--spacer_xs) var(--spacer_md);
	background-color: #FFF;
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.5);
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition: opacity 0.2s ease, visibility 0.2s ease, z-index 0s linear 0.2s;
}
.map__search--no-results .map__search-message--no-results,
.map__search--not-enough .map__search-message--not-enough {
	opacity: 1;
	visibility: visible;
	z-index: 15;
	transition: opacity 0.2s ease, visibility 0.2s ease, z-index 0s linear 0s;
}

.map__search-button {
	padding-left: var(--spacer_md);
	padding-right: var(--spacer_md);
	height: 100%;
	background-color: #FF7700;
	color: #FFF;
	box-shadow: inset 0 0 0 1px #FF7700;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease;
}
.map__search-button:active,
.map__search-button:focus {
	outline: 0;
	color: #FF7700;
	background-color: #FFF;
}
@media (hover: none) and (pointer: coarse) {
	.map__search-button:hover {
		color: #FF7700;
		background-color: #FFF;
	}
}
.map__filter {
	position: relative;
}

.map__filter-label {
	display: inline-flex;
	align-items: center;
	padding: var(--spacer_xs) var(--spacer_md);
	background-color: #F5F5F5;
	box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0);
	font-size: 18px;
	line-height: 1.25;
	cursor: pointer;
	margin-left: var(--spacer_xs);
	height: 55px;
	box-sizing: border-box;
}

.map__filter--has-filter .map__filter-label {
	box-shadow: inset 0 0 0 1px #FF7700;
}

.map__filter-label-icon {
	margin-left: var(--spacer_lg);
}

.map__list-container-outer {
	position: absolute;
	top: 0;
	right: 0;
	width: 390px;
	height: 508px;
	max-height: 0;
	overflow: hidden;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	transition: max-height 0.5s ease, box-shadow 0.2s ease;
}

.map__filter-input:checked + .map__filter-label + .map__list-container-outer {
	max-height: 508px;
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
}

.map__list-container-inner {
	position: relative;
	height: 100%;
	overflow-y: auto;
	box-sizing: border-box;
	background-color: #FFF;
	box-shadow: inset 0 0 0 1px #b9b9b9;
	padding: var(--spacer_md);
	z-index: 1;
}
.map__list-container-inner::-webkit-scrollbar {
	width: 12px;
}
.map__list-container-inner::-webkit-scrollbar-track {
	box-shadow: inset 0 0 0 1px #C1C1C1;
	background-color: #B9B9B9;
}
.map__list-container-inner::-webkit-scrollbar-thumb {
	background-color: #EBEBEB;
	box-shadow: inset 0 0 0 1px #C1C1C1;
	border-radius: 12px;
	cursor: pointer;
}

.map__list-container-inner::after {
	content: "";
	position: absolute;
}

.map__list-title {
	font-family: var(--font_family_title);
	font-size: 20px;
}

.map__list-head {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--spacer_md);
}

.map__list-title {
	font-size: 32px;
	line-height: 1.18;
	margin-bottom: 0;
}

.map__list-close {
	cursor: pointer;
}

.map__list-close svg {
	display: block;
	transition: transform 0.2s ease;
}

.map__list-close:hover svg {
	transform: scale(0.9);
} 


.map__item:not(:last-of-type) {
	position: relative;
	padding-bottom: var(--spacer_md);
}
.map__item:not(:last-of-type)::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0.5px;
	width: calc(100% - var(--spacer_md));
	background-color: #EBEBEB;
	transform: translateY(50%);
}

.map__item:not(:first-of-type) {
	margin-top: var(--spacer_md);
}

.map__item-title {
	display: block;
	font-size: var(--font_size_body);
	margin-bottom: var(--spacer_md);
}

.map__list-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.map__list-item--hide {
	display: none;
}

.map__list-item:not(:last-of-type) {
	margin-bottom: var(--spacer_sm);
}

.map__list-label {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	line-height: 1.18;
	cursor: pointer;
}

.map__list-checkbox {
	display: inline-block;
	min-width: 24px;
	height: 24px;
	box-shadow: inset 0 0 0 0.5px #C1C1C1;
	cursor: pointer;
}

.map__list-checkbox-squarre {
	fill: #FFF;
	stroke: #B9B9B9;
	stroke-width: 2px;
	transition: fill 0.2s ease 0.2s, stroke 0.2s ease 0.2s;
}

.map__list-input:checked + .map__list-label .map__list-checkbox-squarre {
	fill: #FF7700;
	stroke: #FF7700;
	transition: fill 0.2s ease 0s, stroke 0.2s ease 0s;
}

.map__list-checkbox-check {
	stroke: #FFF;
	stroke-dasharray: 40px;
	stroke-dashoffset: 40px;
	transition: stroke-dashoffset 0.4s ease 0s;
}

.map__list-input:checked + .map__list-label .map__list-checkbox-check {
	stroke-dashoffset: 20px;
}

.map__list-actions {
	margin-top: var(--spacer_md);
}

.map__reset-filter-btn,
.map__search-filter-btn {
	cursor: pointer;
}

.map__reset-filter-btn {
	font-size: 16px;
	color: #000;
	text-decoration: underline;
}

.map__search-filter-btn {
	font-family: var(--font_family_title);
	font-size: 20px;
	padding: var(--spacer_xs) var(--spacer_md);
	color: #FFF;
	background-color: #FF7700;
	box-shadow: inset 0 0 0 1px #FF7700;
	transition: color 0.2s ease, background-color 0.2s ease;
}
.map__search-filter-btn:active,
.map__search-filter-btn:focus {
	outline: 0;
	color: #FF7700;
	background-color: #FFF;
}
@media (hover: none) and (pointer: coarse) {
	.map__search-filter-btn:hover {
		color: #FF7700;
		background-color: #FFF;
	}
}
.map__container {
	height: 465px;
	background-color: #B9B9B9;
	margin-top: var(--spacer_md);
}

.map__container .gm-style .gm-style-iw-c {
	border-radius: 0;
	padding-left: 0;
	padding-top: 0;
	box-shadow: unset;
}
.map__container .gm-style .gm-style-iw-d {
	overflow: auto!important /* because inline style by GMaps */
}
.map__container .gm-ui-hover-effect {
	visibility: hidden;
}

.map__container .gm-style .gm-style-iw-tc::after {
	content: none;
}

.map__container .gm-style .gm-style-iw-t {
	filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.3));
}

.map__container .gm-style .gm-style-iw-t::after {
	top: -218px;
	left: -180px;
	border-top: 32px solid transparent;
	border-bottom: 32px solid transparent; 
	border-right: 16px solid #FFF; 
	width: 0;
	height: 0;
	background: unset;
	box-shadow: unset;
	transform: translate(-100%,-50%) rotate(0);
}

.infoWindow {
	position: relative;
	width: 360px;
	background-color: #FFF;
	display: flex;
	flex-direction: column;
}

.infoWindow__close-btn {
	display: block;
	position: absolute;
	top: var(--spacer_xs);
	right: var(--spacer_xs);
	width: 24px;
	height: 24px;
	color: #000;
	/* filter: drop-shadow(0px 0px 2px #000000); */
	appearance: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	background: transparent;
}
.infoWindow__close-btn:focus {
	outline: 0;
}

.infoWindow__close-btn svg {
	transition: transform 0.2s ease;
}
.infoWindow__close-btn:hover svg {
	transform: scale(0.9);
}

.infoWindow__image {
	object-fit: cover;
	object-position: center;
}

.infoWindow__texts {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: var(--spacer_lg) var(--spacer_sm) var(--spacer_sm);
	font-family: var(--font_family_body);
	font-size: var(--font_size_sm);
}

.infoWindow__address {
	margin-bottom: var(--spacer_xxxxs);
}

.infoWindow__address > *:last-child {
	margin-bottom: 0;
}

.infoWindow__category {
	color: #BCBCBC;
	font-size: 12px;
	margin-bottom: 0;
	line-height: 1.25;
}

p.infoWindow__title {
	font-family: "Jean Luc", sans-serif;
	font-size: 24px;
	line-height: 1.08;
	color: #3F65BF;
	margin-bottom: var(--spacer_xxxs);
}

.infoWindow__phone-link {
	margin-bottom: var(--spacer_xs);
	color: #C5C5C5;
}
.infoWindow__phone-link:hover {
	color: #3F65BF
}

.infoWindow__store-link {
	text-align: center;
	padding: var(--spacer_xxxs) var(--spacer_sm);
	background-color: #FF7700;
	font-size: 16px;
	line-height: 1.18;
	color: #FFF;
	margin-top: 16px;
	box-shadow: inset 0 0 0 1px #FF7700;
	transition: color 0.2s ease, background-color 0.2s ease;
}
.infoWindow__store-link:active,
.infoWindow__store-link:focus {
	outline: 0;
	color: #FF7700;
	background-color: #FFF;
}
@media (hover: none) and (pointer: coarse) {
	.infoWindow__store-link:hover {
		color: #FF7700;
		background-color: #FFF;
	}
}
@media (max-width: 991px) {
	.map__search-button {
		padding-left: var(--spacer_sm);
		padding-right: var(--spacer_sm);
	}
	.map__search-reset-button {
		right: 68px;
	}
	.map__filter-label {
		padding-left: var(--spacer_sm);
		padding-right: var(--spacer_sm);
	}
	.map__filter-label-text {
		display: none;
	}
	.map__filter-label-icon {
		margin-left: 0;
	}
	.map__list-container-outer {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		opacity: 0;
		visibility: hidden;
		max-height: unset;
		transition: opacity 0.2s ease, visibility 0.2s ease, z-index 0s linear 0.2s;
	}
	.map__filter-input:checked + .map__filter-label + .map__list-container-outer {
		max-height: unset;
		opacity: 1;
		visibility: visible;
		z-index: 15;
		transition: opacity 0.2s ease, visibility 0.2s ease, z-index 0s linear 0s;
	}
	.map__list-container-inner {
		background-color: #FFF;
		box-shadow: unset;
	}
	.infoWindow__category {
		font-size: 12px;
	}
	p.infoWindow__title {
		font-size: 20px;
		margin-bottom: 12px;
	}
	.infoWindow__phone-link {
		font-size: 12px;
		margin-bottom: 16px;
	}
	.infoWindow__store-link {
		font-size: 14px;
	}
	.infoWindow__address * {
		font-size: 12px;
		line-height: 1.25;
	}
	
}

@media (max-width: 540px) {
	.filter-is-open {
		overflow: hidden;
	}
	.map__search-input::placeholder {
		max-width: 55px;
	}
	.map__search-input:focus::placeholder {
		color: transparent;
	}
	.map__search-input:placeholder-shown {
		text-overflow: ellipsis;
	}
	.map__container .gm-style .gm-style-iw-t::after {
		content: none;
	}
	.map__container .gm-style .gm-style-iw-c {
		max-width: calc(100vw - (60px + 48px)) !important;
	}
	.infoWindow {
		width: 100%;
	}
	.infoWindow__texts {
		padding: 24px 16px 16px;
	}
}
