/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
        /* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
        mix-blend-mode: plus-lighter;
}


.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100;max-width:none }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: inherit; /*"Helvetica Neue", Arial, Helvetica, sans-serif;*/
	font-size: 0.8333em;
        line-height: 1.0em;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 5px 2px 5px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */
	
@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

.fullscreen-icon{background-image:url(images/icon-fullscreen.png)}.leaflet-retina .fullscreen-icon{background-image:url(images/icon-fullscreen-2x.png);background-size:26px 26px}.leaflet-container:-webkit-full-screen{width:100%!important;height:100%!important;z-index:99999}.leaflet-container:-ms-fullscreen{width:100%!important;height:100%!important;z-index:99999}.leaflet-container:full-screen{width:100%!important;height:100%!important;z-index:99999}.leaflet-container:fullscreen{width:100%!important;height:100%!important;z-index:99999}.leaflet-pseudo-fullscreen{position:fixed!important;width:100%!important;height:100%!important;top:0!important;left:0!important;z-index:99999}

.leaflet-control-locate{font-size:1.4em;color:#666;cursor:pointer}.leaflet-control-locate.active{color:#2074b6}.leaflet-control-locate.active.following{color:#fc8428}.leaflet-control-locate-location circle{animation:leaflet-control-locate-throb 4s ease infinite}.icon-locate::before{content:url(images/icon-location.svg);opacity:.6}.leaflet-control-locate.active .icon-locate::before{opacity:.9}.leaflet-control-locate.active.following .icon-locate::before{filter:invert(72%)sepia(31%)saturate(4580%)hue-rotate(335deg)brightness(94%)contrast(110%);opacity:1}.icon-locate.searching::before{transform-origin:50% 40%;animation:ckw .2s infinite linear;display:block}@keyframes ckw{from{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes leaflet-control-locate-throb{0%{stroke-width:1}50%{stroke-width:3;transform:scale(.8,.8)}100%{stroke-width:1}}

.map-canvas {
  contain: strict;
  margin: 1rem auto;
  overflow: hidden;
  resize: vertical;
}

.dist-icon {
  font-size: 12px;
  border: none;
  border-radius: 10px;
  text-align: center;
  color: black;
  background: #fff;
  overflow: hidden;
}

.dist-start {
  background: white;
}

.dist-stop {
  background: black;
}

.dist-1 {
  background: blue;
}

.dist-5 {
  background: orange;
}

.dist-10 {
  background: yellow;
}

.dist-50 {
  border-radius: 5px 5px 5px 5px;
  /*border: 1px solid #000;*/
  background-color: green;
  color: #fff;
  font-size: 12px;
  text-align: center;
  overflow: hidden;
  width: 22px;
  height: 17px;
}

.dist-100 {
  border-radius: 5px 5px 5px 5px;
  /*border: 1px solid #000;*/
  background-color: yellow;
  color: #000;
  font-size: 12px;
  text-align: center;
  overflow: hidden;
  width: 22px;
  height: 17px;
}



.marker-t img.poi-icon {
  width: 14px !important;
  height: 14px !important;
  margin-left: -7px !important;


}

.marker-s img.poi-icon {
  width: 16px !important;
  height: 16px !important;
  margin-left: -8px !important;

}

.marker-m img.poi-icon {
  width: 18px !important;
  height: 18px !important;
  margin-left: -9px !important;

}

.post-marker {
  font-size: 14px;
  border: 1px solid #777;
  border-radius: 10px;
  text-align: center;
  color: black;
  margin: 0px;
  padding-bottom: 2px;
  background: #fff;
}

.post-marker.maanden {

  background: yellow;
}

.leaflet-control-toggle {
  opacity: .5
}

.visible.leaflet-control-toggle {
  opacity: 1;
}

.disabled.leaflet-control-toggle {
  opacity: .25;
  border: 2px solid rgba(255, 0, 0, 0.8);
}

.toggle-icon.camping-icon {
  background-image: url(images/icon-campings.png);
}

.toggle-icon.campings-icon {
  background-image: url(images/icon-campings.png);
}

.toggle-icon.water-icon {
  background-image: url(images/icon-water.png);
}

.toggle-icon.caravan-icon {
  background-image: url(images/icon-caravan.png);
}

.toggle-icon.test-icon {
  background-image: url(images/icon-test.png);
}

.toggle-icon.fietsenwinkel-icon {
  background-image: url(images/icon-fietsenwinkel.png);
}

.toggle-icon.bank-icon {
  background-image: url(images/icon-bank.png);
}

.toon-icon {
  cursor: pointer;
  margin-left: 5px;
  display: none;
  background-image: url(images/icon-fitbounds.png);
  background-size: contain;
  width: 1em;
  height: 1em
}

.pop-icon {
  cursor: pointer;
  margin-left: 5px;
  display: none;
  background-image: url(images/icon-pop.png);
  background-size: contain;
  width: 1em;
  height: 1em
}

input.leaflet-control-layers-selector:checked+span>span.pop-icon,
input.leaflet-control-layers-selector:checked+span>span.toon-icon {
  display: inline-block;
}

.map-bericht {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 999999;
  display: table;
  opacity: .6;
  pointer-events: none;
}

.map-bericht>div {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  font-size: 24px;
  color: #fff;
}

.buffer.weg,
.water.weg,
.camping.weg {
  font-weight: bold;
}


.lds-hourglass {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
}

.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 8px;
  box-sizing: border-box;
  border: 8px solid red;
  border-color: red transparent red transparent;
  animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  100% {
    transform: rotate(1800deg);
  }
}

.lds-dual-ring {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 16px;
  height: 16px;
  margin: 8px;
  border-radius: 50%;
  border: 2px solid blue;
  border-color: blue transparent blue transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.track.optional,
label.show {
  cursor: pointer;
}

.track.optional:hover,
label.show:hover {
  text-decoration: underline;
}

.leaflet-popup-content {
  margin: 13px 5px 2px 5px;
  width: max-content;
}

.leaflet-popup-content p.tasks {
  margin: 3px 0;
}

ul.toggle li {
  transition: opacity .2s linear;
}


ul.closed>li:not(:nth-child(-n+2)),
ul>li>ul.closed>li {
  max-height: 0px;
  overflow: hidden;
  opacity: 0;
}

ul.closed>li:nth-child(-n+2) {
  opacity: 1;
}

ul.closed>li:nth-child(2) {
  opacity: .5;
}

ul.closed>li>ul {
  display: none;
}

ul.closed>li>div.toggle {
  display: none;
}

ul.tracklist li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

ul.tracklist.hover {
  background-color: rgba(33, 150, 243, 0.2);
  transition: background-color .1s linear;
}

ul.tracklist {
  display: block;
  list-style: none !important;
  margin: 0px;
  padding: 0px 0px 0px 20px !important;
  border-left: solid 1px rgba(33, 150, 243, 0.5);
  transition: background-color 1s linear;

}

label.track {
  display: inline-block;
  position: relative;
  padding-left: 1.5em;
  /*margin-bottom: 12px;*/
  cursor: pointer;
  /*  font-size: 1em;*/
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
label.track input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
label.track .checkmark {
  position: absolute;
  top: .1em;
  left: 0;
  height: 1em;
  width: 1em;
  background-color: #2196F3;
  opacity: .25;
  box-sizing: content-box;
}

ul.tracklist a.link {
  color: #2196F3;
  text-decoration: underline;
  padding-left: 1.5em;
}

ul.tracklist a.piwik_link:before {
  border: solid #2196F3;
  content: '';
  margin-right: 3px;

  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;

  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}



li label.track .checkmark {
  top: 0;
}

/* On mouse-over, add a grey background color */
label.track:hover input~.checkmark {
  opacity: .25;
}


label.track input:checked~.checkmark {
  opacity: 1;
}

label.connection .checkmark,
label.approach .checkmark {
  background-color: indianred;
}

label.excursion .checkmark {
  background-color: darkseagreen;
}

label.alternative .checkmark {
  background-color: yellowgreen;
}


/* Create the checkmark/indicator (hidden when not checked) */
label.track .checkmark:after {
  content: "";
  position: absolute;
  display: block;

}


p.help {
  font-size: .8em;
  opacity: .9;
}

/* Style the checkmark/indicator */
label.track .checkmark:after {
  left: .4em;
  top: .15em;
  width: .2em;
  height: .5em;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


div.toggle {
  position: relative;
  background: transparent;
  border: none;
  margin: 0px auto;
  width: 85%;
  height: 20px;
  cursor: pointer;
}

div.toggle:after,
div.toggle:before {
  border: solid transparent;
  border-bottom-color: #2196F3;
  border-top-color: transparent;
  left: 0;
  bottom: 5px;

  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  cursor: pointer;

}

div.toggle:after {
  border-width: 1px;
  margin-left: -1px;
}

div.toggle:before {
  border-width: 12px;
  margin-left: -12px;
}

ul.closed+div.toggle:before,
ul.closed+div.toggle:after {
  border-bottom-color: transparent;
  border-top-color: #2196F3;
}

ul.closed+div.toggle:after,
ul.closed+div.toggle:before {
  top: 5px;

}


.reload {
  cursor: pointer;
  width: 20px;
  height: 20px;
  padding: 2px;


}

.icon-download {
  background-image: url(images/download.png);
  background-size: contain;

  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: bottom;

}

.icon-reload {
  background-image: url(images/icon-reset.png);
  background-size: contain;
}

.icon-roos {
  background-image: url(images/icon-roos.png);
  background-size: contain;
}

.icon-mapshot {
  background-image: url(images/icon-mapshot.png);
  background-size: contain;
}

.icon-bewerk {
  background-image: url(images/icon-bewerk.png);
  background-size: contain;
}

.icon-toevoegen {
  background-image: url(images/icon-toevoegen.png);
  background-size: contain;
  border-radius: 50%;
}

.icon-move-ns {
  cursor: ns-resize;
}

.icon-move-ew {
  cursor: ew-resize;
}

.icon-move {
  background-color: rgba(255, 120, 0, .6);


  border-radius: 50%;
  display: inline-block;
  width: 100%;
  height: 100%;
}

input:disabled {
  opacity: .25;
  display: none !important;
}

.icon-close {
  border-radius: 50%;
  background-color: rgba(255, 120, 0, .8);
  width: 100%;
  height: 100%;

}

.icon-close:hover {
  opacity: 1;
}

.icon-close:before,
.icon-close:after {
  position: absolute;
  left: 50%;
  content: ' ';
  height: 100%;
  width: 2px;
  background-color: #000;
}

.icon-close:before {
  transform: rotate(45deg);
}

.icon-close:after {
  transform: rotate(-45deg);
}

.plottertoggle {
  display: none
}


#mapshotform {
  display: flex;
  flex-flow: row wrap;
  align-items: top;
}

#mapshotform label,
#mapshotform input,
#mapshotform select {
  margin: 5px 10px 5px 0;
  display: block;
}

#mapshotform input[type=checkbox] {
  margin-top: 10px;
}

#mapshotform>div.shotflex {
  display: flex;
}

#mapshotform>div {

  vertical-align: middle;
  margin: 5px 10px 5px 0;
  padding: 10px;
  background-color: #eee;
  /*border: 1px solid #ddd;*/
}

@media (max-width: 800px) {
  #mapshotform>div {
    margin: 10px 0;
  }

  #mapshotform {
    flex-direction: column;
    align-items: stretch;
  }
}

#mapshotlinks {
  position: absolute;
  top: 10px;
  left: 10px;
}

#mapshotlinks a {
  display: block;
  background-color: white;
  opacity: .8;
  border: 1px solid gray;
  border-radius: 5%;
  padding: 3px;
}

#mapshotloading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: darkred;
  cursor: progress;
  text-align: center;
  background-color: rgba(255, 255, 255, .8);
}

#mapshot {
  z-index: 9999999;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  cursor: wait;
  background-color: rgba(255, 255, 255, .5);
}

#mapshotresult {
  object-fit: scale-down;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

#resultcontainer {
  display: block;
  text-align: center;
  position: relative;
  margin: 10px auto;
  width: 90%;
  height: 90%;
  border-radius: 10px;
  background-color: rgba(128, 128, 128, .9);
}

#haha.plotter {
  cursor: crosshair
}

input.spectrum {
  max-width: 5em;
}

.leaflet-control-toggle.visible:hover a.download {
  display: block;
}

.leaflet-control-toggle a.download {
  display: none;
  position: absolute;
  top: -2px;
  left: 28px;
  border-radius: 0 4px 4px 0;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-left: none;
  background-color: #fff;
  background-clip: padding-box;
  z-index: -1;
  height: auto;
  margin: 0;
  padding: 0 8px 0 8px;
  width: auto;
}

a.poi {
  transition: background-color .2s;
  cursor: pointer;
  font-weight: bold;
}

a.poi.active {
  background-color: rgb(243, 245, 108);
}

a.poi:after {
  content: "";
  display: inline-block;
  background: url("images/marker-poi.png") no-repeat;
  background-size: cover;
  width: 0.75em;
  height: 1.2em;
  position: relative;
  bottom: .25em;

}

.leaflet-tile-pane.invert-1 .base,
.leaflet-tile-pane.invert-2 .base {
  filter: invert(100%)
}

.leaflet-tile-pane.matrix .base {
  filter: url(#mapshotfilter);
}

.leaflet-tile-pane.matrix.invert-1 .base {
  filter: invert(100%) url(#mapshotfilter);
}

.leaflet-tile-pane.matrix.invert-2 .base {
  filter: url(#mapshotfilter) invert(100%);
}

.widget_jmapfietsverhuurwidget p {
  text-align: center;
}

.leaflet-popup-content a.download {
  display: none;
}

.leaflet-top.leaflet-right {
  z-index: 2000;
}

.extrainfo {
  display: none;
  white-space: normal;
}

ul.tracklist .extrainfo {
  display: block;
  padding-left: 1.5em;
}
.leaflet-cluster-anim .leaflet-marker-icon,.leaflet-cluster-anim .leaflet-marker-shadow{-webkit-transition:-webkit-transform .3s ease-out,opacity .3s ease-in;-moz-transition:-moz-transform .3s ease-out,opacity .3s ease-in;-o-transition:-o-transform .3s ease-out,opacity .3s ease-in;transition:transform .3s ease-out,opacity .3s ease-in}.leaflet-cluster-spider-leg{-webkit-transition:-webkit-stroke-dashoffset .3s ease-out,-webkit-stroke-opacity .3s ease-in;-moz-transition:-moz-stroke-dashoffset .3s ease-out,-moz-stroke-opacity .3s ease-in;-o-transition:-o-stroke-dashoffset .3s ease-out,-o-stroke-opacity .3s ease-in;transition:stroke-dashoffset .3s ease-out,stroke-opacity .3s ease-in}

.marker-cluster-small{background-color:rgba(181,226,140,.6)}.marker-cluster-small div{background-color:rgba(110,204,57,.6)}.marker-cluster-medium{background-color:rgba(241,211,87,.6)}.marker-cluster-medium div{background-color:rgba(240,194,12,.6)}.marker-cluster-large{background-color:rgba(253,156,115,.6)}.marker-cluster-large div{background-color:rgba(241,128,23,.6)}.leaflet-oldie .marker-cluster-small{background-color:#b5e28c}.leaflet-oldie .marker-cluster-small div{background-color:#6ecc39}.leaflet-oldie .marker-cluster-medium{background-color:#f1d357}.leaflet-oldie .marker-cluster-medium div{background-color:#f0c20c}.leaflet-oldie .marker-cluster-large{background-color:#fd9c73}.leaflet-oldie .marker-cluster-large div{background-color:#f18017}.marker-cluster{background-clip:padding-box;border-radius:20px}.marker-cluster div{width:30px;height:30px;margin-left:5px;margin-top:5px;text-align:center;border-radius:15px;font:12px helvetica neue,Arial,Helvetica,sans-serif}.marker-cluster span{line-height:30px}

.leaflet-control-geosearch *,.leaflet-control-geosearch *:before,.leaflet-control-geosearch *:after{box-sizing:border-box}.leaflet-control-geosearch .leaflet-bar-part{border-radius:4px;border-bottom:none}.leaflet-control-geosearch a.leaflet-bar-part:before,.leaflet-control-geosearch a.leaflet-bar-part:after{position:absolute;display:block;content:''}.leaflet-control-geosearch a.leaflet-bar-part:before{top:19px;left:16px;width:8px;border-top:2px solid #555;transform:rotateZ(45deg);box-sizing:border-box}.leaflet-control-geosearch a.leaflet-bar-part:after{top:6px;left:6px;height:14px;width:14px;border-radius:50%;border:2px solid #555;box-sizing:border-box}.leaflet-control-geosearch.error a.leaflet-bar-part:before,.leaflet-control-geosearch.pending a.leaflet-bar-part:before{display:none}.leaflet-control-geosearch.pending a.leaflet-bar-part:after,.leaflet-control-geosearch.error a.leaflet-bar-part:after{left:50%;top:50%;width:18px;height:18px;margin:-9px 0 0 -9px;border-radius:50%}.leaflet-control-geosearch.pending a.leaflet-bar-part:after{content:'';border:2px solid #555;border-top:2px solid #f3f3f3;animation:spin 1s linear infinite}.leaflet-control-geosearch.error a.leaflet-bar-part:after{content:'!';line-height:initial;font-weight:600;font-size:18px;border:none}.leaflet-control-geosearch form{display:none;position:absolute;top:0;left:30px;border-radius:0 4px 4px 0;background-color:#fff;background-clip:padding-box;z-index:-1;height:30px;margin:0;padding:0 8px;box-shadow:0 1px 5px rgba(0,0,0,.65)}.leaflet-geosearch-button form.open{border-radius:0 4px 4px 4px}.leaflet-control-geosearch.active form{display:block}.leaflet-geosearch-button.active .leaflet-bar-part{border-radius:4px 0 0 4px;width:36px}.leaflet-geosearch-button form{max-width:350px}.leaflet-control-geosearch form input{min-width:200px;width:100%;outline:none;border:none;margin:0;padding:0;font-size:12px;height:26px;border:none;border-radius:0 4px 4px 0;text-indent:8px}.leaflet-touch .leaflet-geosearch-bar form{border:2px solid rgba(0,0,0,.2);box-shadow:none;height:34px}.leaflet-touch .leaflet-geosearch-bar form input{height:30px}.leaflet-control-geosearch .results{background:#fff}.leaflet-control-geosearch .results>*{line-height:24px;padding:0 8px;border:1px solid transparent;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.leaflet-control-geosearch .results.active{padding:8px 0;border-top:1px solid #c6c6c6}.leaflet-control-geosearch .results>.active,.leaflet-control-geosearch .results>:hover{background-color:#f8f8f8;border-color:#c6c6c6;cursor:pointer}.leaflet-control-geosearch .results.active:after{content:'';display:block;width:0;position:absolute;left:-2px;bottom:-2px;top:30px}.leaflet-touch .leaflet-control-geosearch .results.active:after{border-left:2px solid rgba(0,0,0,.2)}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.leaflet-top .leaflet-geosearch-bar,.leaflet-bottom .leaflet-geosearch-bar{display:none}.leaflet-geosearch-bar{position:relative;display:block;height:auto;width:400px;width:calc(100% - 120px);margin:10px auto 0;cursor:auto;z-index:1000}.leaflet-geosearch-bar form{position:relative;top:0;left:0;display:block;border-radius:4px}.leaflet-geosearch-bar form input{min-width:100%;width:100%}.leaflet-geosearch-bar .results.active:after{opacity:.2}.leaflet-right .leaflet-control-geosearch form{right:28px;left:initial;border-radius:4px 0 0 4px;border-left:inherit;border-right:none}.leaflet-bar-notfound{font-style:italic}.leaflet-control-geosearch button.reset{color:#000;font-weight:700;position:absolute;line-height:26px;padding:0 8px;right:0;top:0;cursor:pointer;border:none;text-decoration:none;background-color:#fff;border-radius:0 4px 4px 0}.leaflet-touch .leaflet-control-geosearch button.reset{line-height:30px}.leaflet-control-geosearch button.reset:hover{background:#f5f5f5}

.leaflet-control-minimap{border:solid #fff 4px;box-shadow:0 1px 5px rgba(0,0,0,.65);border-radius:3px;background:#f8f8f9;transition:all .6s}.leaflet-control-minimap a{background-color:#fff;background-repeat:no-repeat;z-index:99999;transition:all .6s}.leaflet-control-minimap a.minimized-bottomright{-webkit-transform:rotate(180deg);transform:rotate(180deg);border-radius:0}.leaflet-control-minimap a.minimized-topleft{-webkit-transform:rotate(0);transform:rotate(0);border-radius:0}.leaflet-control-minimap a.minimized-bottomleft{-webkit-transform:rotate(270deg);transform:rotate(270deg);border-radius:0}.leaflet-control-minimap a.minimized-topright{-webkit-transform:rotate(90deg);transform:rotate(90deg);border-radius:0}.leaflet-control-minimap-toggle-display{background-image:url(images/toggle.svg);background-size:cover;position:absolute;border-radius:3px 0 0 0}.leaflet-oldie .leaflet-control-minimap-toggle-display{background-image:url(images/toggle.png)}.leaflet-control-minimap-toggle-display-bottomright{bottom:0;right:0}.leaflet-control-minimap-toggle-display-topleft{top:0;left:0;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.leaflet-control-minimap-toggle-display-bottomleft{bottom:0;left:0;-webkit-transform:rotate(90deg);transform:rotate(90deg)}.leaflet-control-minimap-toggle-display-topright{top:0;right:0;-webkit-transform:rotate(270deg);transform:rotate(270deg)}.leaflet-oldie .leaflet-control-minimap{border:1px solid #999}.leaflet-oldie .leaflet-control-minimap a{background-color:#fff}.leaflet-oldie .leaflet-control-minimap a.minimized{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)}

