/** Mobile Sidebar **/

.blumaps-sidebar-mobile,
.blumaps-sidebar-mobile-filterable {
	background-color: white;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	padding: 12px;
	display: block;
	position: fixed;
	box-sizing: border-box;	
    z-index: 9;
}

.blumaps-sidebar-mobile-filterable .blumaps-search-toggle { 
    display: block; 
}

.blumaps-sidebar-mobile-img {
	position: absolute;
    top: 30px;
    left: 50%;
	width: 160px;
    transform: translate(-50%, -50%);
}

.blumaps-sidebar-mobile-close {
	background-color: white;
}

.blumaps-sidebar-mobile-close-button {
	border: none !important;
    background-size: 12px 12px !important;
	display: none;
	top: 0;
	left: 0;
	background-color: var(--primary-color) !important;
	box-shadow: 0 0 0 0 !important;
	cursor: pointer;
	display: block;
	font-size: 0px;
	font-weight: 100;
	line-height: 20px;
	padding: 4px 10px;
	margin-bottom: 0.5em;
	text-align: center;
	user-select: none;
	width: 35px;
	height: 35px;
	border-radius: 35px;
	transition: transform 0.2s;
	position: relative;
	background: url(../../assets/icons/cross-white.svg) no-repeat center;
}

.blumaps-sidebar-mobile-header-opened.blumaps-sidebar-mobile-filterable .blumaps-sidebar-dim {
	opacity: 0.1;
	pointer-events: auto;
}

.blumaps-sidebar-mobile-header {
	background-color: #fff;
	box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 16px 20px;
	position: absolute;
	right: 12px;
	left: 12px;
	margin-top: 15px;
	z-index: 2;
	max-height: 80px;
	transition: max-height 0.2s;
}

.blumaps-sidebar-mobile.blumaps-sidebar-mobile-header-opened.blumaps-sidebar-mobile-filterable .blumaps-sidebar-mobile-header {
	max-height: 80%;
}

.blumaps-sidebar-mobile-header > .blumaps-icon {
	margin-left: 20px;
	margin-top: 32px;
}

.blumaps-sidebar-mobile.blumaps-sidebar-mobile-tagsrow .blumaps-sidebar-mobile-header { 
    max-height: -webkit-fill-available; 
}

.blumaps-sidebar-mobile-header-opened.blumaps-sidebar-mobile-filterable .blumaps-filter { 
    opacity: 1; 
}

.blumaps-sidebar-mobile-header-opened.blumaps-sidebar-mobile-filterable .blumaps-search-toggle {
	background-color: var(--primary-color);
}

.blumaps-sidebar-mobile-dim {
	background-color: #000;
	opacity: 0;
	position: absolute;
	top: 12px;
	right: 12px;
	left: 12px;
	bottom: 12px;
	transition: opacity 0.2s;
	z-index: 1;
	pointer-events: none;
}

.blumaps-sidebar-mobile-header-opened.blumaps-sidebar-mobile-filterable .blumaps-sidebar-mobile-dim {
	opacity: 0.1;
	pointer-events: auto;
}

.blumaps-sidebar-mobile.blumaps-sidebar-mobile-tagsrow .blumaps-filter-tags { display: flex; flex-wrap: wrap;}


/* Mobile Sidebar List */

.blumaps-list-container-mobile {
	background-color: #fdfdfd;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
	box-sizing: border-box;
	overflow-y: auto;
	position: absolute;
	bottom: 12px;
	top: 160px;
	right: 12px;
	left: 12px;
	padding: 0;
	margin: 0;
	transition: top 0.2s;
	-webkit-overflow-scrolling: touch;
}

.blumaps-list-container-mobile li {
	margin: 0 !important;
}

.blumaps-list-container-mobile h4 {
	font-size: 16px !important;
	font-weight: 400 !important;
}

.blumaps-list-container-mobile .blumaps-dir-item a {
	padding: 12px 20px 12px 18px;
}

.blumaps-sidebar-mobile.blumaps-sidebar-mobile-tagsrow .blumaps-list-container-mobile { top: 185px; }


/** Default Sidebar **/

.blumaps-sidebar-default,
.blumaps-sidebar-default-filterable {
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
	max-width: 400px;
    height: 100%;
    padding: 0 0 12px 0;
    position: relative;
    box-sizing: border-box;
    pointer-events: none;
	background-color: #fff;
	display: block;
}

.blumaps-sidebar-default-filterable .blumaps-search-toggle { 
    display: block; 
}

.blumaps-sidebar-default > * {
    pointer-events: auto;
}

.blumaps-sidebar-default-img {
	position: absolute;
    top: 30px;
    left: 50%;
	width: 160px;
    transform: translate(-50%, -50%);
}

.blumaps-sidebar-default-close {
	background-color: white;
}

.blumaps-sidebar-default-close-button {
	border: none !important;
    background-size: 12px 12px !important;
	display: none;
	top: 0;
	left: 0;
	background-color: var(--primary-color) !important;
	box-shadow: 0 0 0 0 !important;
	cursor: pointer;
	display: block;
	font-size: 0px;
	font-weight: 100;
	line-height: 20px;
	padding: 4px 10px;
	margin-bottom: 0.5em;
	text-align: center;
	user-select: none;
	width: 35px;
	height: 35px;
	border-radius: 35px;
	transition: transform 0.2s;
	position: relative;
	background: url(../../assets/icons/cross-white.svg) no-repeat center;
}

.blumaps-sidebar-default-header-opened.blumaps-sidebar-default-filterable .blumaps-sidebar-dim {
	opacity: 0.1;
	pointer-events: auto;
}

.blumaps-sidebar-default-header {
	background-color: #fff;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 16px 20px;
	position: absolute;
	z-index: 2;
	max-height: 80px;
	transition: max-height 0.2s;
	border-bottom: 1px solid lightgray;
	width: 100%;
	top: 75px;
}

.blumaps-sidebar-default.blumaps-sidebar-default-header-opened.blumaps-sidebar-default-filterable .blumaps-sidebar-default-header {
	max-height: 80%;
}

.blumaps-sidebar-default-header > .blumaps-icon {
	margin-left: 20px;
	margin-top: 32px;
}

.blumaps-sidebar-default.blumaps-sidebar-default-tagsrow .blumaps-sidebar-default-header { 
    max-height: -webkit-fill-available; 
}

.blumaps-sidebar-default-header-opened.blumaps-sidebar-default-filterable .blumaps-filter { 
    opacity: 1; 
}

.blumaps-sidebar-default-header-opened.blumaps-sidebar-default-filterable .blumaps-search-toggle {
	background-color: var(--primary-color);
}

.blumaps-sidebar-default-dim {
	background-color: #000;
	opacity: 0;
	position: absolute;
	top: 0px;
	right: 0px;
	left: 0px;
	bottom: 0px;
	transition: opacity 0.2s;
	z-index: 1;
	pointer-events: none;
}

.blumaps-sidebar-default-header-opened.blumaps-sidebar-default-filterable .blumaps-sidebar-default-dim {
	opacity: 0.1;
	pointer-events: auto;
}

.blumaps-sidebar-default.blumaps-sidebar-default-tagsrow .blumaps-filter-tags { 
	display: flex; 
	flex-wrap: wrap;
}

.blumaps-sidebar-default-logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
    padding: 8px;
	width: 180px;
}

.blumaps-sidebar-default-logo-div {
    box-sizing: border-box;
    background-color: white;
    background-repeat: no-repeat;
    background-position: top;
    background-position-y: center;
    height: auto;
    max-height: 100%;
    overflow-y: auto;
    position: relative;
    border-top-style: solid;
    border-top-width: medium;
    border-top-color: #0072bc;
    border-bottom-style: solid;
    border-bottom-width: thin;
    border-bottom-color: #ffde00;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
	z-index: 3;
	display: block;
	position: absolute;
	width: 100%;
}

/* Default Sidebar List */

.blumaps-list-container-default {
	background-color: #fdfdfd;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
	box-sizing: border-box;
	overflow-y: auto;
	position: absolute;
	bottom: 0;
	top: 160px;
	padding: 0;
	margin: 0;
	transition: top 0.2s;
	-webkit-overflow-scrolling: touch;
}

.blumaps-list-container-default li {
	margin: 5px 15px !important;
	border-bottom: 1px solid lightgray;
}

.blumaps-list-container-default h4 {
	font-size: 16px !important;
	font-weight: 400 !important;
}

.blumaps-list-container-default .blumaps-dir-item a {
	padding: 12px 20px 12px 18px;
}

.blumaps-sidebar-default.blumaps-sidebar-default-tagsrow .blumaps-list-container-default { top: 200px; }


/** Mobile Free Route - Sidebar **/
.blumaps-sidebar-mobilefreeroute,
.blumaps-sidebar-mobilefreeroute-filterable {
	background-color: white;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	padding: 12px;
	display: block;
	position: fixed;
	box-sizing: border-box;	
    z-index: 9;
}

.blumaps-sidebar-mobilefreeroute-filterable .blumaps-search-toggle { 
    display: block; 
}

.blumaps-sidebar-mobilefreeroute-img {
	position: absolute;
    top: 30px;
    left: 50%;
	width: 160px;
    transform: translate(-50%, -50%);
}

.blumaps-sidebar-mobilefreeroute-close {
	background-color: white;
}

.blumaps-sidebar-mobilefreeroute-close-button {
	border: none !important;
    background-size: 12px 12px !important;
	display: none;
	top: 0;
	left: 0;
	background-color: var(--primary-color) !important;
	box-shadow: 0 0 0 0 !important;
	cursor: pointer;
	display: block;
	font-size: 0px;
	font-weight: 100;
	line-height: 20px;
	padding: 4px 10px;
	margin-bottom: 0.5em;
	text-align: center;
	user-select: none;
	width: 35px;
	height: 35px;
	border-radius: 35px;
	transition: transform 0.2s;
	position: relative;
	background: url(../../assets/icons/cross-white.svg) no-repeat center;
}

.blumaps-sidebar-mobilefreeroute-header-opened.blumaps-sidebar-mobilefreeroute-filterable .blumaps-sidebar-dim {
	opacity: 0.1;
	pointer-events: auto;
}

.blumaps-sidebar-mobilefreeroute-header {
	background-color: #fff;
	box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 16px 20px;
	position: absolute;
	right: 12px;
	left: 12px;
	margin-top: 15px;
	z-index: 2;
	max-height: 80px;
	transition: max-height 0.2s;
}

.blumaps-sidebar-mobilefreeroute.blumaps-sidebar-mobilefreeroute-header-opened.blumaps-sidebar-mobilefreeroute-filterable .blumaps-sidebar-mobilefreeroute-header {
	max-height: 80%;
}

.blumaps-sidebar-mobilefreeroute-header > .blumaps-icon {
	margin-left: 20px;
	margin-top: 32px;
}

.blumaps-sidebar-mobilefreeroute.blumaps-sidebar-mobilefreeroute-tagsrow .blumaps-sidebar-mobilefreeroute-header { 
    max-height: -webkit-fill-available; 
}

.blumaps-sidebar-mobilefreeroute-header-opened.blumaps-sidebar-mobilefreeroute-filterable .blumaps-filter { 
    opacity: 1; 
}

.blumaps-sidebar-mobilefreeroute-header-opened.blumaps-sidebar-mobilefreeroute-filterable .blumaps-search-toggle {
	background-color: #0072bc;
}

.blumaps-sidebar-mobilefreeroute-dim {
	background-color: #000;
	opacity: 0;
	position: absolute;
	top: 12px;
	right: 12px;
	left: 12px;
	bottom: 12px;
	transition: opacity 0.2s;
	z-index: 1;
	pointer-events: none;
}

.blumaps-sidebar-mobilefreeroute-header-opened.blumaps-sidebar-mobilefreeroute-filterable .blumaps-sidebar-mobilefreeroute-dim {
	opacity: 0.1;
	pointer-events: auto;
}

.blumaps-sidebar-mobilefreeroute.blumaps-sidebar-mobilefreeroute-tagsrow .blumaps-filter-tags { display: flex; flex-wrap: wrap;}


/* Mobilefreeroute Sidebar List */

.blumaps-list-container-mobilefreeroute {
	background-color: #fdfdfd;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
	box-sizing: border-box;
	overflow-y: auto;
	position: absolute;
	bottom: 12px;
	top: 160px;
	right: 12px;
	left: 12px;
	padding: 0;
	margin: 0;
	transition: top 0.2s;
	-webkit-overflow-scrolling: touch;
}

.blumaps-list-container-mobilefreeroute li {
	margin: 0 !important;
}

.blumaps-list-container-mobilefreeroute h4 {
	font-size: 16px !important;
	font-weight: 400 !important;
}

.blumaps-list-container-mobilefreeroute .blumaps-dir-item a {
	padding: 12px 20px 12px 18px;
}

.blumaps-sidebar-mobilefreeroute.blumaps-sidebar-mobilefreeroute-tagsrow .blumaps-list-container-mobilefreeroute { top: 185px; }
