/**
* 2007-2020 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2020 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

/* Always set the map height explicitly to define the size of the div
    * element that contains the map. */

#globalmap {
	position: relative;
	height: 800px;
	width: 100%;
	display: flex;
}

#map {
	height: 800px;
	width: 100%;
	float: left;
	margin-top: 10px;
}
#map-full-width {
	height: 100vh;
	width: 100vw;
}
.menumap {
	float: left;
	width: 100%;
}

.menumap.hide {
	display: none;
}

nav#navmap {
	width: 100%;
	font-size: 16px;
	overflow-y: auto;
	height: 300px;
}

/* ENABLED */
.locationEnabled {
	display: none;
	margin-top: 10px;
}
.locationEnabled.show {
	display: block;
}

/* width */
nav#navmap::-webkit-scrollbar {
	width: 10px;
}

/* Track */
nav#navmap::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
nav#navmap::-webkit-scrollbar-thumb {
	background: #888;
}

/* Handle on hover */
nav#navmap::-webkit-scrollbar-thumb:hover {
	background: #555;
}

nav#navmap input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	display: block;
	cursor: pointer;
}

nav#navmap ul {
	margin: 0;
	padding: 0;
}

nav#navmap a {
	display: block;
	padding: 15px 20px;
	color: #404040;
	text-decoration: none;
}

nav#navmap li {
	position: relative;
	float: left;
	width: 100%;
	list-style: none;
	color: #fff;
	transition: 0.5s;
	border-top: 1px solid #555;
}

nav#navmap li:first-child {
	border-top: none;
}

nav#navmap ul > li.sub > a:after {
	pointer-events: none;
	position: relative;
	float: right;
	content: "+";
	margin-top: -0.1em;
	font-size: 1.2em;
	vertical-align: middle;
	transition: 0.5s;
}

nav#navmap li:hover {
	background: #4096ee !important;
}

nav#navmap .submenu {
	max-height: 0;
	overflow: hidden;
	border-top: none;
	transition: max-height 0.5s ease-in-out;
}

nav#navmap input[type="checkbox"]:checked ~ .submenu {
	max-height: 999px;
	border-top: 1px solid #555;
}

nav#navmap input[type="checkbox"]:checked ~ a:after {
	transform: rotate(45deg);
}

nav#navmap .submenu a {
	padding: 10px 20px;
}

nav#navmap .submenu li {
	list-style-position: inside;
	list-style-type: square;
	background: #333;
}

nav#navmap .submenu li.sub {
	list-style: none;
}

nav#navmap .submenu li li {
	background: #3a3a3a;
}

nav#navmap .submenu li li li {
	background: #2a2a2a;
}

/* LIST MAPS */
.inditem {
	width: 100%;
	border: 1px solid #d6d6d6;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.inditem.highlight {
	background-color: #edeeed;
}

.inditem div {
	width: 100%;
	padding: 5px 10px;
}
.inditem div strong.name {
	font-size: 16px;
}

.inditem.expand div.info {
	background-color: #efefef;
}

.inditem .prodnum {
	position: absolute;
	font-size: 11px;
	bottom: 10px;
	right: 5px;
	color: #929292;
}

.inditem span.availability {
	font-weight: bold;
	font-size: 13px;
}
.inditem span.availability.open0 {
	color: #c5c5c5;
}

.inditem span.availability.open1 {
	color: #79b928ab;
}

.inditem .withproduct span.availability,
.inditem .withproduct strong.prodnum {
	color: #fff;
}

.inditem div.additional {
	display: none;
	background-color: #f9f9f9;
}

.inditem div.additional .map-address {
	display: block;
	font-size: 12px;
	margin-top: 10px;
}
.inditem div.additional .map-contact {
	font-size: 12px;
	color: #000;
	margin-top: 10px;
}

.inditem div.additional .openLabel {
	font-size: 14px;
	margin-bottom: 10px;
	display: block;
	color: #7ab929;
}

.inditem div.additional table {
	font-size: 12px;
}

.inditem > div:first-child {
	background-color: #ededed;
	position: relative;
}

.page-stores .inditem > div:first-child {
	background-color: white;
}

.inditem > div:first-child.withproduct {
	background-color: #79b928;
}

.expand.inditem {
	background-color: #f9f9f9;
}

#store .expand.inditem div:first-child {
	background-color: #f5f5f5;
}

.inditem.expand div.additional {
	background-color: #f9f9f9;
	display: block;
}

span.openmessage {
	position: relative;
	font-size: 12px;
	padding-left: 22px;
}
span.openmessage:before,
span.openmessage:after {
	content: " ";
	width: 5px;
	height: 5px;
	padding: 7px;
	position: absolute;
	border-radius: 100%;
	top: 0px;
	bottom: 0px;
	left: 0px;
	margin: auto;
}

span.openmessage:after {
	padding: 5px;
	background-color: red;
	left: 4px;
}

span.openmessage.open1 {
	color: #79b928;
}

span.openmessage.open1:before {
	border: 2px solid #79b928;
}

span.openmessage.open1:after {
	background-color: #79b928;
}

span.openmessage.open0:before {
	border: 2px solid grey;
}

span.openmessage.open0:after {
	background-color: grey;
}

span.openmessage.open0 {
	color: grey;
}

.inditem div.name {
	border-right: 1px solid #c3c3c3;
}

#description {
	font-family: Roboto;
	font-size: 15px;
	font-weight: 300;
}

#infowindow-content .title {
	font-weight: bold;
}

#infowindow-content {
	display: none;
}

#map #infowindow-content {
	display: inline;
}

.pac-card {
	margin: 10px 10px 0 0;
	border-radius: 2px 0 0 2px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	outline: none;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	background-color: #fff;
	font-family: Roboto;
}

#pac-container {
	padding-bottom: 12px;
	margin-right: 12px;
}

.pac-controls {
	display: inline-block;
	padding: 5px 11px;
}

.pac-controls label {
	font-family: Roboto;
	font-size: 13px;
	font-weight: 300;
}

#pac-input {
	background-color: #fff;
	font-family: Roboto;
	font-size: 15px;
	font-weight: 300;
	margin-left: 12px;
	padding: 0 11px 0 13px;
	text-overflow: ellipsis;
	width: 400px;
}

#pac-input:focus {
	border-color: #4d90fe;
}

#title {
	color: #fff;
	background-color: #4d90fe;
	font-size: 25px;
	font-weight: 500;
	padding: 6px 12px;
}
#target {
	width: 345px;
}
.filter-container {
	display: flex !important;
	flex-direction: column;
	flex-basis: 30%;
	min-width: 340px;
	max-width: 360px;
	padding: 9px;
	/* position: absolute; */
	z-index: 3;
	background-color: white;
	width: 300px;
	top: 40px;
	left: 40px;
	padding-top: 0px;
	padding-bottom: 0px;
	/* box-shadow: 0 2px 6px rgba(0,0,0,.3); */
	padding: 0 30px;
}

.my-store-map .filter-container {
	flex-basis: 35%;
	max-width: 400px;
}

.filter-container input {
	border: 1px solid #c3bbbb;
	border-radius: 7px;
	margin-bottom: 25px;
	width: 100%;
	height: 40px;
	padding: 12px;
	background-color: #fff;
	font-size: 14px !important;
	font-weight: normal;
}

.filter-container .searchbox svg {
	position: absolute;
	height: 40px;
	right: 0;
	cursor: pointer;
}

.filter-container p.text-center {
	color: #848280;
	font-size: 13px;
}

.filter-container .searchbox {
	position: relative;
	width: 100%;
	text-align: center;
}

.filter-container .searchbutton {
	width: 100%;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
}

.ui-widget {
	display: none;
}

.categories-tree .ui-widget,  .ui-widget.show {
	display: block;
}

/* MAP OPTIONS */
.mapoptions {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-bottom: 25px;
}

.mapoptions > div {
	font-weight: bold;
	text-decoration: none;
	font-size: 14px;
	margin-top: 0px !important;
	cursor: pointer;
	padding-bottom: 15px;
}

.mapoptions > div.active {
	color: black;
	background-color: white;
}

div.geolocation-ui {
	text-align: center;
}

/* INFOBOX */
.infobox {
	margin: 10px;
	/* width: 220px; */
	width: 150px;
	position: relative;
	overflow: hidden;
}

.infobox img {
	display: block;
	width: 130px;
	height: 80px;
	object-fit: contain;
	/* margin: auto;
    margin-bottom: 12px;
    margin-top: 10px; */
	margin: 0 0 12px 0;
	width: 100%;
	object-fit: cover;
}

.infobox strong.name {
	font-weight: bold;
	font-size: 12px;
	display: block;
	line-height: 1.4;
}

.infobox p {
	font-size: 11px;
}

p.infobox__location {
	margin-bottom: 14px;
}

.infobox h4.collapse__title_thic {
	margin-bottom: 0;
	line-height: 1.4;
	font-size: 12px !important;
}

.infobox .collapse__data {
	margin-bottom: 8px;
	font-size: 11px !important;
}

.infobox .btn.btn-store {
	height: 28px;
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--primary);
	color: #fff !important;
	font-weight: bold;
	width: 100%;
	font-size: 14px;
}

.infobox .btn.btn-direction {
	position: absolute;
	right: 0px;
	bottom: 40px;
	font-size: 12px;
}

.geolocation-ui .infobox {
	width: 95%;
	text-align: left;
}

.geolocation-ui .infobox img {
	margin-left: 0px;
}

.geolocation-ui .infobox a.changestore {
	display: none;
}

button.gm-ui-hover-effect {
	right: 5px !important;
	top: 5px !important;
	background: #fff !important;
}

.gm-style .gm-style-iw-c {
	border-radius: 0px !important;
}

#stores #wrapper {
	padding: 0px !important;
}
#stores #wrapper .breadcrumb {
	padding: 22px 15px 25px 15px;
}
#stores #wrapper .page-header h1 {
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px !important;
	margin-top: 20px;
	font-size: 24px;
	letter-spacing: 0.02em;
}

#stores #wrapper > .container {
	width: 100% !important;
	padding: 0px;
	max-width: 100%;
}

#stores .page-stores {
	width: 100%;
	margin-right: 0px;
	display: block;
	margin-left: 0px;
}

.fl-green {
	color: #7ab829 !important;
}

/* Preloader */

.preload {
	display: none;
	position: absolute;
	z-index: 999;
	background-color: white;
	height: 100%;
	width: 100%;
	background-image: url(../../loading.gif);
	background-size: 150px;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 0.97;
}

.preload.show {
	display: block;
}

/* NEAREST LOCATION  */
#fnl {
	position: fixed;
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	margin: auto;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	z-index: 999;
	justify-content: center;
	align-items: center;
	display: none;
}

#fnl.show {
	display: flex;
	flex-direction: column;
}

#fnl .marl-close {
	position: absolute;
	z-index: 999;
	right: 12px;
	top: 12px;
	color: #000;
	padding: 0;
	cursor: pointer;
	font-size: 18px;
}

#fnl .marl-close:hover {
	color: #79b928;
}
#fnl .marl-close:before {
	font-weight: bold;
}

#fnl .marl-modal,
#fnl .fnl-selectOptions {
	padding: 15px;
	position: relative;
	width: 70%;
	margin-top: auto;
	margin-bottom: auto;
	background-color: #fff;
	cursor: auto;
	flex-shrink: 0;
	opacity: 1;
	display: none;
	height: auto;
}

#fnl .marl-modal.show {
	display: block;
}

#fnl .fnl-selectOptions.show {
	display: block;
}

#fnl .mapbody {
	display: flex;
}

#fnl .mapbody .storelist {
	width: 30%;
	padding: 0px;
	overflow-y: auto;
	height: 540px;
	position: relative;
	padding-right: 5px;
	border: 1px solid #c3c0c0;
}

#product-stock-locator-filters .storelist {
	overflow-y: auto;
	/* max-height: 350px; */
}
/* width */
.storelist::-webkit-scrollbar {
	width: 10px;
}

/* Track */
.storelist::-webkit-scrollbar-track {
	background: #f6f6f6;
}

/* Handle */
.storelist::-webkit-scrollbar-thumb {
	background: var(--primary);
}

/* Handle on hover */
/* .storelist::-webkit-scrollbar-thumb:hover {
  background: #555;
} */

#fnl .mapbody .mapview {
	width: 70%;
}

#fnl .mapbody .mapview #map {
	height: 500px;
}

#fnl .searchgroup {
	width: 100%;
	display: flex;
}

#fnl .marl-modal.optionmodal {
	text-align: center;
}
#fnl .marl-modal.optionmodal .searchgroup {
	width: 300px;
	margin: auto;
	margin-bottom: 20px;
	margin-top: 20px;
}

#fnl .searchgroup input {
	width: calc(100% - 40px);
	padding: 10px;
	border-right: 0;
	border-radius: 4px 0 0 4px;
}

#fnl .searchgroup button {
	width: 50px;
	padding: 5px;
	font-size: 20px;
	border-radius: 0 4px 4px 0;
}

#fnl .searchgroup button span {
	color: #fff;
}

#fnl button.mine {
	margin: auto;
	margin-top: 20px;
}

#fnl .filters {
	border: 1px solid #bbb;
	padding: 16px;
	margin-bottom: 5px;
	margin-top: 20px;
	line-height: 12px;
}

#fnl .filters > div {
	display: inline-block;
}

#fnl .filters input {
	margin-left: 10px;
}

#marlemap-store-page {
	flex-wrap: wrap;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: auto;
	max-width: none !important;
	margin-right: 10px;
}

#marlemap-store-page > i.fl-outicons-pin12 {
	margin-right: 5px;
	font-size: 21px;
	cursor: pointer;
}

#marlemap-store-page div {
	display: none;
	flex-wrap: wrap;
	width: 200px;
	position: absolute;
	left: 30px;
	top: 8px;
}
#marlemap-store-page.selct i {
	color: #79b929;
}

#marlemap-store-page:hover div {
	display: flex;
}

#marlemap-store-page span {
	line-height: 14px;
	background-color: white;
	/* max-width: 168px; */
	/* text-overflow: ellipsis; */
	/* overflow: hidden; */
}
#marlemap-store-page span:first-child {
	color: #000;
	font-weight: bold;
}

#marlemap-store-page span:first-child:hover {
	color: #79b929;
}

.mobileStoreName {
	text-align: center;
	display: none;
}

@media (max-width: 1200px) {
	#fnl .marl-modal {
		width: 80%;
	}
}

#fnl .warningModal,
#fnl .optionmodal,
#fnl .infoModal {
	max-width: 430px;
	width: 100% !important;
	text-align: center;
	padding: 30px;
}

#fnl .warningModal .modal-top,
#fnl .infoModal .modal-top {
	padding-bottom: 22px;
}

#fnl .warningModal h3,
#fnl .infoModal h3 {
	font-size: 30px;
	line-height: 34px;
	margin-bottom: 18px;
	margin-top: 25px;
	padding: 0;
	border: 0;
	color: #000;
	font-weight: bold;
}

#fnl .warningModal p,
#fnl .infoModal p {
	font-size: 14px;
	line-height: 21px;
	color: #5d5d5d;
}
#fnl .warningModal p span,
#fnl .infoModal p span {
	display: block;
}

@media (max-width: 991px) {
	#fnl {
		padding: 0 15px;
	}
}

@media (max-width: 991px) {
	#fnl .marl-modal,
	#fnl .fnl-selectOptions {
		width: 90%;
		overflow-y: auto;
	}

	#fnl .filters {
		padding: 10px;
	}

	#fnl .filters > div {
		font-size: 13px;
	}

	#fnl .mapbody .storelist {
		width: 40%;
	}

	#fnl .mapbody .mapview {
		width: 60%;
	}
}

@media (max-width: 767px) {
	#fnl {
		padding-top: 0px;
	}

	#fnl .filters > div {
		font-size: 11px;
	}

	#fnl .searchgroup input {
		padding: 5px;
	}

	#fnl .filters > div:first-child {
		margin-bottom: 10px;
		display: block;
	}

	#fnl .filters input {
		margin-left: 0px;
	}
	#fnl .mapbody {
		flex-direction: column-reverse;
		height: 400px;
	}

	#fnl .mapbody .storelist {
		height: 400px;
		padding-right: 0px;
	}
	#fnl .mapbody .mapview,
	#fnl .mapbody .storelist {
		width: 100%;
	}

	#fnl .mapbody .mapview #map {
		display: none;
	}

	.mobileStoreName.show {
		display: block;
	}

	.filter-container {
		position: relative;
		width: 100%;
		left: 0px;
		padding: 0px;
		box-shadow: none;
		border-bottom: 1px solid #b5b1b1;
		border-top: 1px solid #e0e0e0;
	}
	.geolocation-ui .infobox a.changestore {
		display: block;
	}

	#product-stock-locator-filters .storelist {
		max-height: 350px;
	}

	#stores #wrapper .page-header h1 {
		text-align: center;
	}

	#marlemap-store-page {
		white-space: nowrap;
		align-items: center;
		margin-right: 0;
	}
	#marlemap-store-page div,
	#marlemap-store-page:hover div {
		display: none;
	}

	#marlemap-store-page > i.fl-outicons-pin12 {
		font-size: 28px;
		margin-right: 0;
	}

	.page-stores #map {
		display: none;
	}
}

.modal-btns-buttons .btn {
	margin-bottom: 10px;
	position: static;
}

/* CHANGE STORE BUTTON */
button.changestore {
	border: none;
	font-size: 14px;
	margin: 10px 0px;
	padding: 5px 15px;
	background-color: #565656;
	color: #fff;
	font-weight: bold;
}

/* #product .changestore {
    display: none;
} */
#product .has_product .changestore {
	display: block;
}

/* stores list */
.map-sm-title {
	font-size: 14px;
	font-weight: bold;
	color: var(--primary);
}
.map-md-title {
	font-size: 16px;
	font-weight: bold;
	color: var(--primary);
	margin-bottom: 0;
	/* margin: 0 5px; */
}

.selected-in-panel__title_thic {
	font: normal normal bold 14px/21px var(--font-family-sans-serif);
	letter-spacing: 0px;
	color: #7b7b7b;
}
.selected-in-panel p {
	color: #7b7b7b;
	font-size: 14px;
}
.choose-your-shop {
	margin-bottom: 15px;
}
.map-xl-title {
	font-size: 30px;
	font-weight: bold;
	color: var(--primary);	
	margin: 40px 30px 35px 30px;
	padding-bottom: 25px;
	border-bottom: 1px solid #f5f5f5;
}

.mapoptions-select-any-store {
	margin-bottom: 20px;
}
.map-sm-title.search-ui-title {
	margin-bottom: 10px;
}

.storelist__single_store__short {
	cursor: pointer;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.single_store__map-maker {
	min-width: 20px;
	width: 20px;
	min-height: 26.5px;
	height: 26.5px;
	margin-right: 8px;
}
.single_store__map-maker img,
.single_store__map-maker svg {
	width: 100%;
	object-fit: contain;
}

.single_store__name h3 {
	font-size: 14px;
	font-weight: bold;
	color: var(--primary);
	margin-bottom: 0;
	padding-right: 5px;
}

.single_store__collapse {
	display: none;
	padding: 0 26.5px;
}

.collapse__location,
.collapse__data,
.default-store__data,
.default-store__location {
	font-size: 14px !important;
	color: #7b7b7b !important;
	margin-bottom: 0;
	font-weight: normal;
}
.collapse__location,
.default-store__location {
	margin-bottom: 15px;
}
.collapse__data {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 26px;
}

.collapse__title_thic,
.default-store__title_thic {
	font-size: 14px !important;
	color: #7b7b7b !important;
	font-weight: bold !important;
	margin-bottom: 4px;
}
.default-store-title,
.default-store__title_thic {
	margin-bottom: 2px !important;
}
.default-store-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.default-store-title svg {
	display: none;
}

.collapse__data .select-store-btn {
	margin: 0;
	height: 28px;
	padding: 0 16px;
	border-radius: 7px;
	background-color: var(--primary);
	font-size: 13px !important;
}
.collapse__data .select-store-btn.disabled {
	opacity: 0.65 !important;
}
/* popup na mapie */
.gm-style-iw.gm-style-iw-c {
	padding: 0 !important;
}
.gm-style-iw-d {
	overflow: hidden !important;
}
.default-store.data > * {
	cursor: default;
}
/* map popup */
.map-sidebar {
	position: fixed;
	display: flex;
	flex-direction: column;
	right: 0;
	transform: translateX(0);
	top: 0;
	height: 100%;
	max-width: 85vw;
	width: 100%;
	z-index: 99999999;
	background: #ffffff;
	opacity: 1;
	transition: transform .35s cubic-bezier(0.46, 0.71, 0.75, 0.99), opacity 0.15s linear;
}
.map-sidebar.hidden {
	width: 100%;
	display: block !important;
	transform: translateX(100%);
	opacity: 0;
}

.map-sidebar #globalmap {
	height: 100%;
}

.map-sidebar #map {
	margin: 0 30px 2%;
}

svg.map-side-bar-close {
	cursor: pointer;
	position: absolute;
	top: 2%;
	right: 2%;
}

.map-sidebar #globalmap {
	height: 0%;
	flex-grow: 1;
}
.map-sidebar #map {
	height: auto;
}
.map-sidebar .filter-container {
	display: flex !important;
	flex-direction: column;
	position: relative;
	top: 0;
	left: 0;
	margin-bottom: 2%;
}

/* bgc layer */
main.curtain {
	position: relative;
}

main.curtain::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	/* transition: background-color .35s cubic-bezier(0.46, 0.71, 0.75, 0.99); */
	z-index: -999999;
}
main.curtain.curtain-active::before {
	background-color: rgba(0, 0, 0, 0.45);
	z-index: 999999;
}
body.no-scroll {
	overflow: hidden;
}
.pac-container {
	z-index: 2147483647;
}
@media (max-width: 1000px) {
	.map-xl-title {
		font-size: 24px;
	}
	.default-store-title svg {
		display: block;
		cursor: pointer;
		transition: ease 0.3s;
	}
	.default-store-title svg.hidden {
		transform: rotate(180deg);
	}

	.map-sidebar {
		max-width: 100vw;
		overflow-y: auto;
	}

	.map-sidebar .storelist {
		margin-bottom: 0;
	}

	.map-sidebar .map-sidebar-first-section {
		padding: 20px;
		margin: 0;
		border-bottom: 0;
		color: #fff;
		background-color: var(--primary);
	}

	.map-side-bar-close {
		stroke: #fff;
		filter: brightness(100);
		right: 20px !important;
	}

	.map-sidebar #globalmap {
		padding: 0 20px 20px;
		height: 1500px;
		display: block;
	}

	.map-sidebar .filter-container {
		padding-top: 36px;
		max-width: 100%;
		border: none;
	}

	.map-sidebar #map {
		min-height: 450px;
		margin: 40px 0 0 0;
	}

	.ui-widget.show {
		margin: 0;
	}
}

/* Stores */
#stores #map {
	margin: 0;
	margin-right: 30px;
}
#stores #product-stock-locator-filters {
	display: flex !important;
	flex-direction: column;
}
#stores #globalmap {
	margin-bottom: 90px;
}

#stores header.page-header.mb-4.text-center {
	display: none;
}

body#module-marlemap-mystore #globalmap {
	margin-bottom: 90px;
}

/* mobile */
@media (max-width: 1000px) {
	body#module-marlemap-mystore .container {
		padding: 0;
	}
	div#product-stock-locator-filters {
		min-width: 100%;
	}

	body#module-marlemap-mystore h3.map-xl-title.map-sidebar-first-section {
		justify-content: center;
		min-height: auto;
		padding-left: 0;
	}

	h3.map-xl-title.map-sidebar-first-section {
		margin: 0;
		padding: 0;
		border: none;
		text-align: center;
		min-height: 60px;
		display: flex;
		align-items: center;
		padding-left: 20px;
	}

	.mapoptions > div {
		margin: 0;
	}

	div#product-stock-locator-filters {
		border: none;
	}

	div#globalmap {
		padding: 0 20px;
	}

	div#globalmap {
		flex-direction: column;
		height: auto !important;
	}

	.storelist {
		height: 100%;
		max-height: 460px !important;
		margin-bottom: 40px;
		position: relative;
	}

	#map {
		display: flex !important;
		margin-top: 60px;
		height: 60vh !important;
		max-height: 450px;
	}

	.infobox strong.name {
		margin-bottom: 5px;
	}

	p.infobox__location {
		display: none;
	}

	a.btn.btn-store.disabled {
		display: none;
		opacity: 0.65 !important;
		background-color: var(--primary) !important;
	}
}
a.btn.btn-store.disabled {
	opacity: 0.65 !important;
	background-color: var(--primary) !important;
}

/* body#module-thecheckout-order {
	@media (max-width: 1469px) {
		.checkout-area-1
			.checkout-area-6
			.delivery-options
			.delivery-option-row.row.delivery-option.egstorepickup
			.checkout-map-store-data
			p {
			display: flex;
			flex-direction: column;

			button {
				order: 2;
				margin-right: 0.5rem;
			}
		}
	}
} */

.btn-show-more
{
	font-weight: 600;
	width: calc(100% - 20px);
	margin: 10px;
}

.map-showed-positions
{
	color: #404040;
	text-align: center;
	margin-top: 5px;
	width: 100%;
	display: block;
}
body#module-marlemap-mystore .registered-prod-add {
	padding: 0 10px;
}
@media (max-width:767px) {
	body#module-marlemap-mystore .registered-prod-add {
		padding: 0 20px;
	}
}
