/* 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;
	-webkit-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 {
	-moz-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; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(../../node_modules/leaflet/dist/#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: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* 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(../../node_modules/leaflet/dist/images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(../../node_modules/leaflet/dist/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(../../node_modules/leaflet/dist/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 24px 13px 20px;
	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 {
	-ms-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;
		}
	}

.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
	-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
	-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
	-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
	transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
	/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
	-webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
	-moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
	-o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
	transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before, .mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/*# sourceMappingURL=magnific-popup.css.map */
.ms-options-wrap {
    position: relative;
}

.ms-options-wrap,
.ms-options-wrap * {
    box-sizing: border-box;
}

.ms-options-wrap > button:focus,
.ms-options-wrap > button {
    position: relative;
    width: 100%;
    text-align: left;
    border: 1px solid #aaa;
    background-color: #fff;
    padding: 5px 20px 5px 5px;
    margin-top: 1px;
    font-size: 13px;
    color: #aaa;
    outline-offset: -2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ms-options-wrap > button[disabled] {
    background-color: #e5e9ed;
    color: #808080;
    opacity: 0.6;
}

.ms-options-wrap > button:after {
    content: ' ';
    height: 0;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 0;
    border: 6px solid rgba(0, 0, 0, 0);
    border-top-color: #999;
    margin-top: -3px;
}

.ms-options-wrap.ms-has-selections > button {
    color: #333;
}

.ms-options-wrap > .ms-options {
    position: absolute;
    left: 0;
    width: 100%;
    margin-top: 1px;
    margin-bottom: 20px;
    background: white;
    z-index: 2000;
    border: 1px solid #aaa;
    overflow: auto;
    visibility: hidden;
}

.ms-options-wrap.ms-active > .ms-options {
    visibility: visible
}

.ms-options-wrap > .ms-options > .ms-search input {
    width: 100%;
    padding: 4px 5px;
    border: none;
    border-bottom: 1px groove;
    outline: none;
}

.ms-options-wrap > .ms-options > .no-result-message {
    padding: 4px 5px;
    display: none;
}

.ms-options-wrap > .ms-options .ms-selectall {
    display: inline-block;
    font-size: .9em;
    text-transform: lowercase;
    text-decoration: none;
}
.ms-options-wrap > .ms-options .ms-selectall:hover {
    text-decoration: underline;
}

.ms-options-wrap > .ms-options > .ms-selectall.global {
    margin: 4px 5px;
}

.ms-options-wrap > .ms-options > ul,
.ms-options-wrap > .ms-options > ul > li.optgroup ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.ms-options-wrap > .ms-options > ul li.ms-hidden {
    display: none;
}

.ms-options-wrap > .ms-options > ul > li.optgroup {
    padding: 5px;
}
.ms-options-wrap > .ms-options > ul > li.optgroup + li.optgroup {
    border-top: 1px solid #aaa;
}

.ms-options-wrap > .ms-options > ul > li.optgroup .label {
    display: block;
    padding: 5px 0 0 0;
    font-weight: bold;
}

.ms-options-wrap > .ms-options > ul label {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 4px 4px 4px 20px;
    margin: 1px 0;
    border: 1px dotted transparent;
}
.ms-options-wrap > .ms-options.checkbox-autofit > ul label,
.ms-options-wrap > .ms-options.hide-checkbox > ul label {
    padding: 4px;
}

.ms-options-wrap > .ms-options > ul label.focused,
.ms-options-wrap > .ms-options > ul label:hover {
    background-color: #efefef;
    border-color: #999;
}

.ms-options-wrap > .ms-options > ul li.selected label {
    background-color: #efefef;
    border-color: transparent;
}

.ms-options-wrap > .ms-options > ul input[type="checkbox"] {
    margin: 0 5px 0 0;
    position: absolute;
    left: 4px;
    top: 7px;
}

.ms-options-wrap > .ms-options.hide-checkbox > ul input[type="checkbox"] {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url(/assets/font/ajax-loader.gif) center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url(/assets/font/slick.eot);
  src: url(/assets/font/slick.eot?#iefix) format("embedded-opentype"), url(/assets/font/slick.woff2) format("woff2"), url(/assets/font/slick.woff) format("woff"), url(/assets/font/slick.ttf) format("truetype"), url(/assets/font/slick.svg#slick) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  padding: 0 20px;
  border: none;
  outline: none;
  z-index: 999;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  position: absolute;
  font-family: "slick";
  font-size: 30px;
  line-height: 1;
  color: #6751ca;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 0;
  background: linear-gradient(90deg, rgb(242, 242, 242) 0%, rgba(242, 242, 242, 0) 100%);
}
[dir=rtl] .slick-prev {
  left: auto;
  right: 0;
}

.slick-next {
  right: 0;
  background: linear-gradient(270deg, rgb(242, 242, 242) 0%, rgba(242, 242, 242, 0) 100%);
}
[dir=rtl] .slick-next {
  left: 0;
  right: auto;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -50px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li:after {
  display: none !important;
  content: "";
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 12px;
  width: 12px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 0px;
  cursor: pointer;
  border-radius: 20px;
  box-shadow: 0 4px 10px 0 rgba(26, 20, 51, 0.15);
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 12px;
  height: 12px;
  font-family: "slick";
  font-size: 14px;
  line-height: 12px;
  text-align: center;
  background: black;
  opacity: 0.25;
  border-radius: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

@font-face {
  font-family: IconFont;
  src: url(/assets/font/icomoon-custom.ttf?4321) format("truetype"), url(/assets/font/icomoon-custom.woff?4321) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: IconFont;
  src: url(/assets/font/icomoon.ttf?4321) format("truetype"), url(/assets/font/icomoon.woff?4321) format("woff");
  font-weight: 400;
  font-style: normal;
}
.map-wrapper {
  width: 100%;
  height: 600px;
  position: relative;
  margin: 20px 0;
}
.map-wrapper.detail {
  height: 400px;
}
.map-wrapper.detail #map {
  height: 400px;
}

#map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 11px;
}

/* Cluster */
.marker-cluster-small {
  background-color: rgba(102, 83, 199, 0.6);
}
.marker-cluster-small div {
  background-color: rgba(102, 83, 199, 0.6);
}

.marker-cluster-medium {
  background-color: rgba(102, 83, 199, 0.6);
}
.marker-cluster-medium div {
  background-color: rgba(102, 83, 199, 0.6);
}

.marker-cluster-large {
  background-color: rgba(102, 83, 199, 0.6);
}
.marker-cluster-large div {
  background-color: rgba(102, 83, 199, 0.6);
}

.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;
  color: #fff;
}
.marker-cluster span {
  line-height: 30px;
}

.leaflet-container {
  font-size: unset;
  font-family: unset;
}
.leaflet-container a {
  color: unset;
}
.leaflet-container img.leaflet-tile {
  border-radius: 0 !important;
}

/* Popup */
.marker-popup .leaflet-popup-content-wrapper, .result-list .leaflet-popup-content-wrapper {
  padding: 0 !important;
  border-radius: 11px;
}
.marker-popup .leaflet-popup-content, .result-list .leaflet-popup-content {
  margin: 0 !important;
  font-size: unset;
  font-family: unset;
}

@media only screen and (min-width: 1px) and (max-width: 47.9375em) {
  .marker-popup .leaflet-popup-content-wrapper {
    font-size: 0.8rem;
  }
  .leaflet-popup {
    width: 300px;
  }
}
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  text-align: center;
  width: 27px;
  height: 27px;
  font: 24px Tahoma, Verdana, sans-serif;
  color: #fff;
  line-height: 24px;
  text-decoration: none;
  border-radius: 24px;
  background: #000;
  padding: 0;
}
.leaflet-container a.leaflet-popup-close-button:hover {
  color: #fff;
}

ol.meta-data {
  list-style: none;
  padding: 0;
  margin: 1rem 0 !important;
}
ol.meta-data li {
  display: inline-block;
  margin-right: 10px;
  padding-left: 28px;
  position: relative;
  margin-left: 0 !important;
  font-size: 1rem;
}
ol.meta-data li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  background: url(/assets/images/Tekengebied9.svg) no-repeat -2px;
}
ol.meta-data li.home-type:before {
  background: url(/assets/images/Tekengebied12.svg) no-repeat -2px 1px;
}
ol.meta-data li.bed-no:before {
  background: url(/assets/images/Tekengebied11.svg) no-repeat -2px 5px;
}

@media only screen and (min-width: 1px) and (max-width: 47.9375em) {
  .marker-popup ol.meta-data li {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 47.9376em) {
  .aanbod-container {
    margin: 0 auto;
  }
  .aanbod-container .field-wrapper {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1px) and (max-width: 47.9375em) {
  .aanbod-container .aanbod-left {
    position: unset;
    width: 100%;
  }
  .aanbod-container .aanbod-right {
    display: block;
  }
  .aanbod-container .aanbod-right .cntr {
    display: block;
    height: auto;
  }
  .aanbod-container .field-wrapper {
    margin-bottom: 0;
  }
}
.aanbod-container.show-list .show-on-list {
  display: block;
}
.aanbod-container.show-list button.show-on-list {
  display: inline-block;
}
.aanbod-container.show-list .show-on-map {
  display: none;
}

.aanbod-container.show-map .show-on-list {
  display: none;
}
.aanbod-container.show-map .show-on-map {
  display: block;
}
.aanbod-container.show-map button.show-on-map {
  display: inline-block;
}

/*
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #6751CA;
    border-radius: 10px;
}
*/
@media only screen and (min-width: 64em) {
  .aanbod-tabs {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-around;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    background: #f0f0f0;
    border-radius: 13px;
    font-family: "Gotham SSm A", "Gotham SSm B", Arial, Helvetica, sans-serif;
  }
  .aanbod-tabs .tab {
    display: block;
    width: 100%;
    text-align: center;
    border: none;
    text-decoration: none;
    font-size: 18px;
    padding: 17px 20px 20px 20px;
    white-space: nowrap;
    color: #6751CA;
    margin-top: -5px;
  }
  .aanbod-tabs .tab span {
    border-bottom: 2px solid transparent;
    padding: 5px 0;
  }
  .aanbod-tabs .tab:first-child {
    border-radius: 13px 0 0 13px;
  }
  .aanbod-tabs .tab:last-child {
    border-radius: 0 13px 13px 0;
  }
  .aanbod-tabs .tab:hover {
    background: #6751CA;
    color: #fff;
  }
  .aanbod-tabs .tab.active {
    background: #6751CA;
    color: #fff;
  }
  .aanbod-tabs .tab.active span {
    border-bottom: 2px solid #fff;
  }
  .aanbod-tabs .tab.active:hover {
    background: #6751CA;
    color: #fff;
  }
  .aanbod-tabs .tab .count {
    font-size: 12px;
    font-weight: normal;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    display: inline-block;
    margin: 0;
  }
  .aanbod-tabs .tab .count:empty {
    display: none;
  }
  .aanbod-tabs .tab i.icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
  }
  .aanbod-tabs .tab i.icon:before {
    content: " ";
    position: absolute;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    left: -5px;
    top: 2px;
  }
  .aanbod-tabs .tab.bog i.icon:before {
    background-image: url(/assets/images/paars/Bedrijfsruimtes.svg);
  }
  .aanbod-tabs .tab.bog:hover i.icon:before, .aanbod-tabs .tab.bog.active i.icon:before {
    background-image: url(/assets/images/wit/Bedrijfsruimtes.svg);
  }
  .aanbod-tabs .tab.huur i.icon:before {
    background-image: url(/assets/images/paars/Huurwoning.svg);
    background-size: 33px;
  }
  .aanbod-tabs .tab.huur:hover i.icon:before, .aanbod-tabs .tab.huur.active i.icon:before {
    background-image: url(/assets/images/wit/Huurwoning.svg);
    background-size: 33px;
  }
  .aanbod-tabs .tab.sociaal i.icon:before {
    background-image: url(/assets/images/paars/SocialeHuurwoning.svg);
  }
  .aanbod-tabs .tab.sociaal:hover i.icon:before, .aanbod-tabs .tab.sociaal.active i.icon:before {
    background-image: url(/assets/images/wit/SocialeHuurwoning.svg);
  }
  .aanbod-tabs .tab.koop i.icon:before {
    background-image: url(/assets/images/paars/Koopwoning.svg);
    background-size: 25px;
    left: -3px;
  }
  .aanbod-tabs .tab.koop:hover i.icon:before, .aanbod-tabs .tab.koop.active i.icon:before {
    background-image: url(/assets/images/wit/Koopwoning.svg);
    background-size: 25px;
    left: -3px;
  }
  .aanbod-tabs .tab.parkeer i.icon:before {
    background-image: url(/assets/images/paars/Parkeren.svg);
  }
  .aanbod-tabs .tab.parkeer:hover i.icon:before, .aanbod-tabs .tab.parkeer.active i.icon:before {
    background-image: url(/assets/images/wit/Parkeren.svg);
  }
}
.has-typography ul li, .u-has-typography ul li, ul li {
  -webkit-hyphens: none;
  hyphens: none;
}

.widget.has-box-shadow {
  background-color: #fff;
  padding: 20px;
  border-radius: 11px;
  border: 0;
  box-shadow: 0 4px 10px 0 rgba(26, 20, 51, 0.15);
  margin-bottom: 20px;
}

.filter-toolbar {
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: baseline;
}
.filter-toolbar .buttons .field {
  display: inline-flex;
}
.filter-toolbar .buttons .field:first-child {
  border-right: 2px solid #000;
  margin-right: 10px;
  padding-right: 10px;
}
.filter-toolbar .buttons button {
  border: 0;
  outline: 0;
  line-height: 30px;
  margin: 0;
  padding: 0 10px;
  background: transparent;
  font-weight: 400;
  font-size: 18px;
}
.filter-toolbar .buttons button .count {
  font-size: 12px;
  font-weight: normal;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  display: inline-block;
  margin: 0;
}
.filter-toolbar .buttons button .count:empty {
  display: none;
}
.filter-toolbar .buttons button i.icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.filter-toolbar .buttons button i.icon:before {
  content: " ";
  position: absolute;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  left: -5px;
  top: 2px;
}
.filter-toolbar .buttons button i.icon.map:before {
  background-image: url(/assets/images/Kaart.svg);
}
.filter-toolbar .buttons button i.icon.list:before {
  background-image: url(/assets/images/Lijst.svg);
  top: 6px;
}
.filter-toolbar .buttons button i.icon.filters:before {
  background-image: url(/assets/images/Filters.svg);
  left: -7px;
  top: 6px;
}
@media only screen and (min-width: 1px) and (max-width: 47.9375em) {
  .filter-toolbar {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .filter-toolbar .buttons {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .filter-toolbar .buttons .field {
    display: block;
    width: 100%;
  }
  .filter-toolbar .buttons .field:first-child {
    border-right: none;
    margin-right: 20px;
    padding-right: 0;
  }
  .filter-toolbar .buttons button {
    outline: 0;
    margin: 0;
    padding: 7px 0px;
    background: #F3F3F3;
    border: 1px solid #AEAEAE;
    border-radius: 12px;
    font-weight: 400;
    font-size: 15px;
    width: 100%;
  }
  .filter-toolbar .buttons button i.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
  }
  .filter-toolbar .buttons button i.icon:before {
    content: " ";
    position: absolute;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    left: -3px;
    top: 2px;
  }
}

.filter-section {
  display: none;
  flex: 1;
  padding: 20px;
  background: #f0f0f0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1568627451);
  margin-bottom: 20px;
}
.filter-section .buttons {
  text-align: right;
}
.filter-section .buttons .button--light {
  background: #fff;
}
.filter-section .buttons .button--light:hover {
  background: #ff8916;
}
.filter-section.aanmelden {
  display: block;
}
.filter-section.aanmelden .buttons {
  display: none;
}
.filter-section .tabcontent {
  display: none;
}
.filter-section .tabcontent.active {
  display: block;
}

.toggle-extended-filters {
  max-width: 175px;
}

@media only screen and (min-width: 1px) and (max-width: 47.9375em) {
  .filter-section {
    display: none;
  }
  .filter-section .extended {
    display: block;
  }
  .filter-section .toggle-extended-filters {
    display: none;
  }
  .filter-section .buttons .column-element {
    margin: 0;
  }
}
@media only screen and (min-width: 47.9376em) {
  .filter-section {
    display: block;
  }
  .filter-section .extended {
    display: none;
  }
  .filter-section.aanmelden .extended {
    display: block;
  }
}
.field-wrapper {
  margin-bottom: 0;
}
.field-wrapper .field.inline {
  display: inline-block;
  float: right;
}
.field-wrapper.multiple-choice {
  padding-top: 0;
}
.field-wrapper.multiple-choice .field {
  margin-right: 10px;
}
@media only screen and (min-width: 1px) and (max-width: 47.9375em) {
  .field-wrapper .field.inline {
    display: block;
    float: none;
  }
}
.field-wrapper .field-select {
  padding: 0.5em;
  border: 1px solid #e1e1e1;
  color: #000 !important;
  border-radius: 11px !important;
  background-color: #fff !important;
  background-image: url(/assets/images/arrowdown.svg) !important;
  background-size: 25px 25px !important;
  background-position: 98% 50% !important;
  background-repeat: no-repeat;
  padding: 5px 10px 10px 10px !important;
  outline: none;
  -webkit-appearance: none;
  font-size: 16px !important;
}

.custom-select span span {
  font-size: 16px !important;
}

.custom-select.hover span span {
  color: #000 !important;
}

.custom-select-container:hover {
  border-color: #999;
}

.checkbox {
  display: inline-block !important;
  margin: 0 5px 10px 0;
  width: auto;
  line-height: 32px;
  height: auto;
}
.checkbox input {
  display: none;
}
.checkbox p {
  float: right;
  margin-left: 30px;
  position: absolute;
  width: 100%;
  line-height: 20px;
  top: 8px;
  font-weight: 400;
}
.checkbox label {
  padding-left: 25px;
  padding-right: 10px;
  width: auto;
  cursor: pointer;
  display: inline-block;
  font-weight: 300;
  font-size: 1em;
  min-height: 1.2em;
}
.checkbox label:before {
  width: 20px;
  height: 20px;
  border: 1px solid #d9d9d9;
  background: #fff;
  border-radius: 4px;
  content: "";
  margin-left: -25px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: sub;
  transition: 0.3s all;
}
.checkbox input[type=checkbox]:checked + label {
  border-color: #d9d9d9;
}
.checkbox input[type=checkbox]:checked + label:before {
  border-color: #ff8916 !important;
  background: url(/assets/Images/checkbox.svg) no-repeat center #ff8916;
  background-size: 14px 14px !important;
}

.input-validation-valid + .c-form__validation-error-message {
  display: none;
}

.count {
  margin: 15px 0 0 0;
}

.card {
  border-radius: 11px;
}

#list {
  padding: 20px 0;
}
#list .banner-item {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  padding: 0;
  margin-bottom: 40px;
}
#list .banner-item .banner {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  background: #6751CA;
  border-radius: 6px;
  width: 100%;
  padding: 35px 25px;
}
#list .banner-item .banner h3.title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
#list .banner-item .banner a {
  font-size: 18px;
  color: #FD8817;
  text-decoration: underline #FD8817;
}
#list .item {
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: 0px 3px 14px rgba(0, 0, 0, 0.2392156863);
  border-radius: 22px;
  margin-bottom: 40px;
}
#list .item h3.title {
  font-size: 18px;
  margin-bottom: 0;
}
#list .item-media {
  order: 1;
  min-height: 150px;
  position: relative;
  margin: 0;
}
#list .item-media img {
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#list .item-content {
  order: 2;
  padding: 20px 20px;
}
#list .item-content .props {
  margin-top: 10px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#list .item-content .props span {
  font-size: 15px;
  margin-right: 6px;
  white-space: nowrap;
}
#list .item-content .props span.middot {
  color: #6751CA;
  font-weight: 700;
  font-size: 1.5rem;
}
#list .item-content .props span sup {
  transform: translateY(-0.5em);
  display: inline-block;
  font-size: 0.7em;
}
#list .item-content .subtitle {
  margin-top: 0;
}
#list .item-content .price {
  margin-top: 10px;
  font-weight: 700;
  font-size: 16px;
}
#list .item-content .price .huurvoorrang {
  border: 2px solid #6751CA;
  border-radius: 3px;
  color: #6751CA;
  padding: 0px 6px 2px 6px;
  margin: 0;
  margin-left: 15px;
  font-size: 0.9rem;
  font-weight: normal;
}
@media only screen and (min-width: 64em) {
  #list .item-content .price {
    font-size: 18px;
  }
}
#list .item-content p {
  margin: 10px 0;
}
#list .item-content a.text {
  margin-top: 0;
}
#list .item-extra {
  order: 3;
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 0 20px 30px 20px;
  justify-content: space-between;
}
#list .item-extra :nth-child(n+2) {
  margin-left: 20px;
}
#list .item-extra .label {
  margin-top: 3px;
  font-weight: 600;
  text-align: center;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 400;
  padding: 3px;
  color: #6751CA;
  border: 2px solid #6751CA;
  width: 100%;
  max-width: 47%;
}
#list .item-extra .label.bekijkwoning i.icon {
  width: 19px;
  height: 15px;
  display: inline-block;
  position: relative;
}
#list .item-extra .label.bekijkwoning i.icon:before {
  background-image: url(/assets/images/paars/Pijl.svg);
  content: " ";
  position: absolute;
  width: 26px;
  height: 28px;
  background-repeat: no-repeat;
  left: -5px;
}
#list .item-extra .label.huurvoorrangtot {
  background: #6751CA;
  color: #fff;
  font-weight: normal;
}
#list .item-extra .label.verhuurd, #list .item-extra .label.verkocht {
  border: 2px solid #000;
  background: #000;
  color: #fff;
}
@media only screen and (min-width: 64em) {
  #list .banner-item {
    display: flex;
    flex-direction: row;
    border-bottom: 1.5px solid #707070;
    padding: 20px 0;
    margin-bottom: 0px;
    cursor: pointer;
  }
  #list .banner-item .banner {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    background: #f0f0f0;
    border-radius: 13px;
    width: 100%;
    padding: 25px;
  }
  #list .banner-item .banner h3.title {
    font-size: 18px;
    margin-bottom: 0;
    color: #6751CA;
  }
  #list .banner-item .banner a {
    font-size: 18px;
    color: #FD8817;
    text-decoration: underline #FD8817;
  }
  #list .item {
    display: flex;
    flex-direction: row;
    border-bottom: 1.5px solid #707070;
    padding: 20px 0;
    box-shadow: none;
    margin-bottom: 0;
    border-radius: 0;
  }
  #list .item h3.title {
    font-size: 18px;
    margin-bottom: 0;
  }
  #list .item-media {
    order: 1;
    min-height: 150px;
    position: relative;
    margin: 0;
    width: 20%;
  }
  #list .item-media img {
    border-radius: 6px;
    max-height: 160px;
  }
  #list .item-content {
    order: 2;
    width: 55%;
    padding: 0 20px;
  }
  #list .item-content .props {
    display: flex;
    justify-content: normal;
  }
  #list .item-content .subtitle {
    margin-top: 0;
  }
  #list .item-content .price {
    margin-top: 20px;
    font-weight: 600;
  }
  #list .item-content .price .huurvoorrang {
    border: 2px solid #6751CA;
    border-radius: 3px;
    color: #6751CA;
    padding: 0px 6px 2px 6px;
    margin: 0;
    margin-left: 15px;
    font-size: 0.9rem;
    font-weight: normal;
  }
  #list .item-content p {
    margin: 0;
  }
  #list .item-content a.text {
    margin-top: 0;
  }
  #list .item-extra {
    order: 3;
    width: 25%;
    position: relative;
    padding: 0 20px 20px 20px;
  }
  #list .item-extra p {
    margin: 0;
  }
  #list .item-extra .huurvoorrangtot {
    position: absolute;
    right: 0px;
    bottom: 10px;
    font-weight: 400;
  }
  #list .item-extra .huurvoorrangtot .time {
    margin-top: 3px;
    background: #6751CA;
    border-radius: 3px;
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
    padding: 3px 20px 5px 20px;
    display: inline-block;
    margin-left: 0;
  }
}

.item.popup {
  max-width: 300px;
}
.item.popup .item-media {
  margin: 0;
}
.item.popup .item-media img {
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  max-width: 300px;
}
.item.popup .item-content {
  padding: 20px;
}
.item.popup .item-content .props {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.item.popup .item-content .props span {
  font-size: 0.9rem;
  white-space: nowrap;
}
.item.popup .item-content .props span.middot {
  color: #6751CA;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 0.9rem;
}
.item.popup .item-content .props span sup {
  transform: translateY(-0.3em);
  display: inline-block;
  font-size: 0.7em;
}
.item.popup .item-content h3.title {
  font-size: 16px;
  margin: 0;
}
.item.popup .item-content .subtitle {
  font-size: 14px;
  margin-bottom: 5px;
}
.item.popup .item-content .price {
  font-size: 14px;
  font-weight: 700;
  margin-top: 15px;
}
.item.popup .item-extra {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px 20px 20px;
}
.item.popup .item-extra .huurvoorrang {
  border: 2px solid #6751CA;
  border-radius: 3px;
  color: #6751CA;
  padding: 0px 6px 2px 8px;
  font-size: 0.9rem;
  font-weight: normal;
  margin-right: 4px;
}
.item.popup .item-extra .bekijkwoning {
  margin-top: 3px;
  font-weight: 600;
  text-align: center;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 400;
  padding: 3px;
  color: #6751CA;
  border: 2px solid #6751CA;
  width: 100%;
  max-width: 50%;
}
.item.popup .item-extra .bekijkwoning i.icon {
  width: 19px;
  height: 15px;
  display: inline-block;
  position: relative;
}
.item.popup .item-extra .bekijkwoning i.icon:before {
  background-image: url(/assets/images/paars/Pijl.svg);
  content: " ";
  position: absolute;
  width: 26px;
  height: 28px;
  background-repeat: no-repeat;
  left: -5px;
}
.item.popup .item-extra .time {
  border: 2px solid #6751CA;
  background: #6751CA;
  border-radius: 3px;
  color: #fff;
  font-size: 0.9rem;
  padding: 0px 8px 2px 8px;
}
.item.popup .item-extra .label {
  border-radius: 3px;
  font-size: 0.9rem;
  padding: 2px 8px 4px 8px;
  color: #fff;
}
.item.popup .item-extra .label.available {
  border: 2px solid #FD8817;
  background: #FD8817;
}
.item.popup .item-extra .label.unavailable {
  background: #000;
  border: 2px solid #000;
}

@media only screen and (min-width: 64em) {
  .item.popup {
    max-width: unset;
  }
  .item.popup .item-media {
    margin: 0;
  }
  .item.popup .item-media img {
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    max-width: 100%;
  }
  .item.popup .item-content {
    padding: 20px;
  }
  .item.popup .item-content .props {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .item.popup .item-content .props span {
    font-size: 0.9rem;
    white-space: nowrap;
  }
  .item.popup .item-content .props span.middot {
    color: #6751CA;
    font-weight: 700;
    font-size: 1.5rem;
  }
  .item.popup .item-content .props span sup {
    transform: translateY(-0.3em);
    display: inline-block;
    font-size: 0.7em;
  }
  .item.popup .item-content h3.title {
    font-size: 16px;
    margin: 0;
  }
  .item.popup .item-content .subtitle {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .item.popup .item-content .price {
    font-size: 14px;
    font-weight: 700;
    margin-top: 15px;
  }
  .item.popup .item-extra {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px 20px 20px;
  }
  .item.popup .item-extra .huurvoorrang {
    border: 2px solid #6751CA;
    border-radius: 3px;
    color: #6751CA;
    padding: 2px 6px 4px 8px;
    font-size: 0.9rem;
    font-weight: normal;
    margin-right: 4px;
  }
  .item.popup .item-extra .bekijkwoning {
    font-size: 0.9rem;
  }
  .item.popup .item-extra .time {
    border: 2px solid #6751CA;
    background: #6751CA;
    border-radius: 3px;
    color: #fff;
    font-size: 0.9rem;
    padding: 2px 8px 4px 8px;
  }
  .item.popup .item-extra .label {
    border-radius: 3px;
    font-size: 0.9rem;
    padding: 2px 8px 4px 8px;
    color: #fff;
  }
  .item.popup .item-extra .label.available {
    border: 2px solid #FD8817;
    background: #FD8817;
  }
  .item.popup .item-extra .label.unavailable {
    background: #000;
    border: 2px solid #000;
  }
}
.overlay {
  position: absolute;
  height: auto;
  z-index: 1;
  background: #6751ca;
  display: block;
  padding: 3px 6px;
  color: #fff;
  opacity: 1;
  font-size: 0.95rem;
}
.overlay:empty {
  display: none;
}
.overlay.popup {
  width: 100%;
  position: relative;
  border-top-right-radius: 11px;
  padding-left: 20px;
}
.overlay.top {
  border-radius: 3px;
  left: 10px;
  top: 10px;
}
@media only screen and (max-width: 64em) {
  .overlay.top {
    border-radius: 5px;
    left: 30px;
    top: 30px;
  }
}
.overlay.unavailable {
  background: #000000;
}
.overlay ul {
  list-style: none;
  padding: 0;
}
.overlay ul li {
  display: inline-block;
  padding: 0;
  width: 55px;
  line-height: 1;
  text-align: center;
}
.overlay ul li::after {
  content: none;
}

.button-group .button,
.buttons-group .button {
  margin-right: 1rem !important;
  font-size: 1em !important;
}

@media only screen and (max-width: 64em) {
  .button-group .button,
  .buttons-group .button {
    margin-right: 0.5rem !important;
    font-size: 0.85em !important;
  }
}
.profiel-image {
  margin-top: -80px;
}

@media only screen and (max-width: 64em) {
  .profiel-image {
    margin-top: 0px;
  }
}
.show-on-map .banner-item {
  display: flex;
  flex-direction: row;
  border-top: 1.5px solid #707070;
  padding: 20px 0;
  margin-bottom: 0px;
  cursor: pointer;
}
.show-on-map .banner-item.no-border {
  border-top: none;
}
.show-on-map .banner-item .banner {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  background: #f0f0f0;
  border-radius: 13px;
  width: 100%;
  padding: 25px;
}
.show-on-map .banner-item .banner h3.title {
  font-size: 18px;
  margin-bottom: 0;
  color: #6751CA;
}
@media only screen and (max-width: 48em) {
  .show-on-map .banner-item .banner h3.title {
    font-size: 16px;
  }
}
.show-on-map .banner-item .banner a {
  font-size: 18px;
  color: #FD8817;
  text-decoration: underline #FD8817;
}

.widgets_wrap {
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px 20px 40px 20px;
  background: #f2f1f1;
  clear: both;
  border-radius: 11px;
}
.widgets_wrap img {
  border-radius: 0 !important;
}
.widgets_wrap .button {
  display: inline-block;
  margin-bottom: 50px;
}
.widgets_wrap .social_heading {
  display: block;
  margin-bottom: 40px;
  font-size: 25px;
}
.widgets_wrap .intrest {
  margin-bottom: -60px;
}
.widgets_wrap ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.widgets_wrap ol li {
  display: inline-block;
  padding: 0 7px;
  line-height: 35px;
  margin: 0;
}
.widgets_wrap ol li i {
  font-size: 18px;
  color: #fff;
}
.widgets_wrap ol li a {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  background-color: #6751ca;
}

.icon-alternate:after {
  content: none !important;
}

#gallery .overlay.bottom {
  border-bottom-left-radius: 11px;
}

.icon-item > span {
  max-width: none;
}

.image-gallery {
  margin-bottom: 0;
}

.btn_box a {
  margin-bottom: 10px;
  margin-right: 15px;
}

.c-widget__category-header.purple {
  background-color: #6751ca !important;
  border-radius: 6px 6px 0 0 !important;
  padding: 0 20px !important;
}
.c-widget__category-header.purple h2 {
  line-height: 55px !important;
}

@media only screen and (min-width: 1px) and (max-width: 47.9375em) {
  .c-widget__category-header.purple {
    background-color: #6751ca !important;
    border-radius: 6px 6px 0 0 !important;
    padding: 0 20px !important;
  }
  .c-widget__category-header.purple h2 {
    line-height: 35px !important;
  }
  .btn_box {
    margin-bottom: 0;
  }
}
.c-widget__category {
  background-color: #fff !important;
  border-radius: 6px !important;
}
.c-widget__category p {
  padding: 0 1rem 1rem 1rem;
  text-align: center;
}
.c-widget__category .btn_box {
  padding: 1rem 1.5rem;
  text-align: center;
}
.c-widget__category .btn_box a {
  margin-bottom: 0;
  margin-right: 0;
}

.o-widget__container.o-widget__container--Main {
  margin-top: -160px;
}
.o-widget__container.o-widget__container--Main .props {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.o-widget__container.o-widget__container--Main .props span {
  font-size: 0.9rem;
  white-space: nowrap;
}
.o-widget__container.o-widget__container--Main .props span.middot {
  color: #6751CA;
  font-weight: 700;
  font-size: 1.5rem;
}
.o-widget__container.o-widget__container--Main .props span sup {
  transform: translateY(-0.3em);
  display: inline-block;
  font-size: 0.7em;
}
.o-widget__container.o-widget__container--Main .price {
  display: flex;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 1.8rem 0;
  flex-direction: row;
  justify-content: space-between;
}
.o-widget__container.o-widget__container--Main .price .voorrang {
  display: flex;
  border: 2px solid #6751CA;
  border-radius: 3px;
  color: #6751CA;
  padding: 0px 6px 2px 6px;
  margin: 0;
  margin-left: 5px;
  font-size: 0.9rem;
  font-weight: normal;
}

.show-mobile .o-widget__container.o-widget__container--Main {
  margin: 10px;
}

.text-right {
  text-align: right;
}

.bg-white {
  background: #fff;
}

.mfp-bg {
  background: rgba(112, 112, 112, 0.5);
  opacity: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.mfp-wrap {
  top: 60px;
}
.mfp-wrap .mfp-figure img.mfp-img {
  margin: 40px auto;
  border-radius: 10px;
  padding: 0;
}
.mfp-wrap .mfp-figure:after {
  content: none;
  box-shadow: none;
}
.mfp-wrap .mfp-counter {
  color: #000;
}
.mfp-wrap .mfp-close {
  top: unset !important;
  margin-top: -40px;
  color: #000;
  opacity: 1;
  font-size: 2.5rem;
}
.mfp-wrap .mfp-arrow {
  opacity: 1;
}
.mfp-wrap .mfp-arrow:before {
  border: none;
  background: #000;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  margin: 0;
  opacity: 1;
  top: 0;
}
.mfp-wrap .mfp-arrow:after {
  content: none;
}
.mfp-wrap .mfp-arrow.mfp-arrow-left:before {
  left: 25px;
  background-image: url(/assets/images/left.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  font-size: 30px;
  color: #fff;
}
.mfp-wrap .mfp-arrow.mfp-arrow-right:before {
  background-image: url(/assets/images/right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  font-size: 30px;
  color: #fff;
}
.mfp-wrap .white-popup {
  padding: 23px;
  max-width: 600px !important;
  text-align: left;
  border-radius: 18px;
  box-shadow: 0px 3px 32px rgba(0, 0, 0, 0.1882352941);
}
.mfp-wrap .white-popup a.button {
  color: #ff8916;
  border-color: #ff8916;
  border-style: solid;
  background: #fff;
  border-radius: 22px;
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, Helvetica, sans-serif;
  padding: 0.5em 1.125em;
  font-size: 1em;
  line-height: 1.3em;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  margin-left: 10px;
  margin-top: 15px;
  display: inline-block;
}
.mfp-wrap .white-popup a.button:first-child {
  margin-left: 0;
}
.mfp-wrap .white-popup a.button.invert, .mfp-wrap .white-popup a.button:hover {
  color: #fff;
  background: #ff8916;
}
.mfp-wrap .white-popup a.button.invert:hover {
  color: #ff8916;
  background: #fff;
}
.mfp-wrap .white-popup .mfp-close {
  top: 0px !important;
  margin-top: 0;
  font-size: 2.5rem;
}

@media only screen and (min-width: 64em) {
  .mfp-wrap .white-popup {
    padding: 40px;
  }
}
.custom-select__dropdown {
  z-index: 999;
}

.toolbar {
  margin: 10px 0 30px 0;
}
.toolbar ul {
  list-style: none;
  padding: 0;
  margin: 0 !important;
}
.toolbar ul li {
  display: inline-block;
  margin-right: 20px;
  padding: 0 20px 0 0;
  position: relative;
  margin-left: 0 !important;
  font-size: 1rem;
  border-right: 2px solid gray;
}
.toolbar ul li a {
  background-color: #f2f2f2;
  transition: 180ms ease-in-out;
  flex-wrap: nowrap;
  align-items: center;
  margin: 5px 5px 5px 0;
}
.toolbar ul li a img {
  height: 23px;
  margin-right: 4px;
}
.toolbar ul li:last-child {
  border-right: none;
}
.toolbar ul li::after {
  display: none;
}

@media only screen and (max-width: 48em) {
  .toolbar {
    margin-bottom: 30px;
  }
  .toolbar ul {
    list-style: none;
    padding: 0;
    margin: 0 !important;
    background-color: transparent;
    box-shadow: none;
  }
  .toolbar ul li {
    display: block;
    margin-right: 0;
    margin-left: 0 !important;
    margin-bottom: 15px;
    padding: 0 0 0 10px;
    position: relative;
    font-size: 1rem;
    background-color: #f2f2f2;
    box-shadow: 0 4px 10px 0 rgba(26, 20, 51, 0.15);
    border-radius: 11px;
    line-height: 1.5625em;
  }
  .toolbar ul li a {
    background-color: #f2f2f2;
    transition: 180ms ease-in-out;
    flex-wrap: nowrap;
    align-items: center;
    min-width: 95%;
    max-width: 95%;
  }
  .toolbar ul li a.first {
    border-right: none;
  }
  .toolbar ul li::after {
    display: none;
  }
}
.detail-header {
  display: block;
  position: relative;
  background-color: #f2f2f2;
}
.detail-header .photo {
  min-height: 40vh;
  width: 100%;
  margin-bottom: 1rem;
}
.detail-header .photo .img {
  display: block;
  min-height: 40vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 48em) {
  .detail-header {
    display: block;
    position: relative;
    background-color: #f2f2f2;
  }
  .detail-header .photo {
    min-height: 30vh;
    width: 100%;
    margin-bottom: 1rem;
  }
  .detail-header .photo .img {
    display: block;
    min-height: 30vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.flex-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  min-height: 400px;
  position: relative;
}
.flex-gallery .flex-gallery-main {
  display: block;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  order: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: center;
  border-radius: 11px;
}
.flex-gallery .flex-gallery-extra {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: auto;
  order: 0;
  margin-left: 20px;
  width: calc((100% - 40px) / 3 * 1);
}
.flex-gallery .flex-gallery-extra .flex-gallery-extra-img {
  display: block;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
  align-self: auto;
  order: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: center;
  border-radius: 11px;
  margin-bottom: 20px;
  position: relative;
}
.flex-gallery .flex-gallery-extra .flex-gallery-extra-img:last-child {
  margin-bottom: 0;
}
.flex-gallery .flex-gallery-extra .flex-gallery-extra-img.last-thumb::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: #000;
  opacity: 0.4;
  z-index: 1;
  border-radius: 11px;
}
.flex-gallery .flex-gallery-extra .flex-gallery-extra-img.last-thumb::after {
  content: attr(data-more-items);
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  line-height: 100%;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}

@media only screen and (min-width: 48em) and (max-width: 62.4375em) {
  .flex-gallery {
    min-height: 375px;
  }
  .flex-gallery .flex-gallery-extra {
    width: calc((100% - 40px) / 5 * 2);
  }
}
@media only screen and (max-width: 48em) {
  .flex-gallery {
    min-height: 250px;
  }
}
.column-image {
  background-size: 400px;
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: center;
  border-radius: 22px;
  margin-bottom: 20px;
  margin-left: 30px;
  min-height: 400px;
}

@media only screen and (max-width: 48em) {
  .column-image {
    margin-left: 0;
    background-size: 300px;
    min-height: 300px;
  }
}
.ms-options-wrap button {
  font-size: 16px;
  padding: 0.5em;
  border: 1px solid #e1e1e1;
  color: #000 !important;
  border-radius: 11px !important;
  background-color: #fff !important;
  background-image: url(/assets/images/arrowdown.svg) !important;
  background-size: 25px 25px !important;
  background-position: 98% 50% !important;
  background-repeat: no-repeat;
  padding: 7px 10px 10px 10px !important;
  outline: none;
  -webkit-appearance: none;
}
.ms-options-wrap button:hover {
  border-color: #999;
}
.ms-options-wrap button:after {
  display: none;
}
.ms-options-wrap button:focus {
  font-size: 16px;
}

.ms-options {
  border-radius: 11px;
}
.ms-options ul li {
  padding: 0;
}
.ms-options ul li::after {
  display: none;
}
.ms-options ul li input[type=checkbox] {
  position: absolute !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  white-space: nowrap;
  overflow: hidden !important;
  border: 0 !important;
}
.ms-options ul li input[type=checkbox]:checked ~ label::before {
  border: 1px solid #6751ca;
  background: #fff;
  border-radius: 0;
}
.ms-options ul li input[type=checkbox]:checked ~ label::after {
  transform: rotate(-45deg);
  left: 11px;
  top: 10px;
  height: 8px;
  width: 12px;
  border-color: transparent transparent #6751ca #6751ca;
  background: 0 0;
  border-width: 2px;
  border-radius: 0;
}
.ms-options ul li label {
  position: relative;
  display: inline-block;
  z-index: 0;
  font-size: 16px;
  line-height: 1.5em;
  padding: 4px 4px 4px 33px !important;
}
.ms-options ul li label:hover::before {
  border-color: #8d8d8d;
  transform: scale(1.2);
}
.ms-options ul li label::before {
  display: block;
  position: absolute;
  left: 8px;
  top: 8px;
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #d9d9d9;
  background: #fff;
  border-radius: 0;
  z-index: 0;
  cursor: pointer;
}
.ms-options ul li label::after {
  display: block;
  position: absolute;
  left: 8px;
  top: 8px;
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid transparent;
  background: 0 0;
  border-radius: 0;
  z-index: 1;
}

.button--block {
  display: block;
}

.form-newsletter-filters section {
  margin: 10px 0 15px 27px;
  display: none;
}

.row-white {
  padding: 40px 0 20px 0;
}

.row-gray {
  background: #f2f2f2;
  padding: 40px 0 20px 0;
}

.slick-carousel {
  background: #f2f2f2;
}
.slick-carousel .slick-carousel-container {
  padding: 0;
}
.slick-carousel .slick-carousel-container .slide {
  display: block;
  padding: 0 10px;
}
.slick-carousel .slick-carousel-container .slide img {
  border-radius: 6px;
  height: 300px;
  width: 300px;
}

.toggleheight {
  overflow: hidden;
}

.toggler {
  width: 100%;
  margin-top: -30px;
}
.toggler.down {
  margin-top: 0;
}
.toggler .grad {
  background: transparent linear-gradient(180deg, rgba(255, 255, 255, 0.1803921569) 0%, rgba(255, 255, 255, 0.9411764706) 42%, rgba(255, 255, 255, 0.9647058824) 66%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  transform: matrix(1, 0, 0, 1, 0, 0);
  height: 30px;
  width: 100%;
}
.toggler .grad.gray {
  background: linear-gradient(0deg, rgb(244, 244, 244) 0%, rgba(244, 244, 244, 0) 100%);
}
.toggler .clickable-row {
  background: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 0 0;
  cursor: pointer;
}
.toggler .clickable-row.gray {
  background: #f2f2f2;
}
.toggler .clickable-row .text {
  font-weight: bold;
}
.toggler .clickable-row .icon:before {
  font-size: 40px;
  line-height: 1;
  content: "+";
  color: #ff8916;
}
.toggler .clickable-row.open .icon:before {
  font-size: 40px;
  line-height: 1;
  content: "-";
  color: #ff8916;
}
.toggler .toggler-down-content {
  display: none;
}

.kenmerken {
  display: flex;
  flex-wrap: wrap;
}
.kenmerken dl {
  margin-bottom: 10px;
  flex: 0 1 50%;
}

.button.reset i.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
}
.button.reset i.icon:before {
  content: " ";
  position: absolute;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  left: -8px;
  top: 1px;
  background-image: url("/assets/images/reset icon.svg");
}
.button.reset:hover i.icon:before {
  background-image: url("/assets/images/reset icon white.svg");
}

@media only screen and (max-width: 48em) {
  .kenmerken dl {
    margin-bottom: 10px;
    flex: 0 0 100%;
  }
  .categories-widget .o-widget--categories .c-widget__category .c-widget__category-header .c-widget__category-title, .has-typography h4, .o-doctype__customerportalpage div[timeline-widget-master-container] .c-case__datacontainer h3, .o-doctype__newdashboard div[timeline-widget-master-container] .c-case__datacontainer h3, .o-widget__container .o-module.banner-wrapper.simple-banners .banner-content .title, .table-status tbody td .table-status-title, .table-status tbody th .table-status-title, .timeline.with-toggle article .item-content .title button, .title.like-h4, .u-has-typography h4, h4, main > .content .o-module.banner-wrapper.simple-banners .banner-content .title {
    font-size: 1rem;
  }
  .row-white, .row-gray {
    padding: 25px 0 5px 0;
  }
  .slick-carousel .slick-carousel-container {
    padding: 0;
  }
  .slick-carousel .slick-carousel-container .slide {
    padding: 0 5px;
  }
  .slick-carousel .slick-carousel-container .slide img {
    border-radius: 4px;
    height: 200px;
    width: 200px;
  }
  .slick-prev {
    left: 0;
  }
  .slick-dots {
    bottom: -35px;
  }
  .slick-dots li {
    margin: 0;
  }
  .slick-dots li button,
  .slick-dots li button:before {
    width: 6px;
    height: 6px;
  }
  span.reagerentijd {
    margin-left: 20px;
  }
  .toggler .clickable-row {
    background: #fff;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px 0 0 0;
    cursor: pointer;
  }
  .toggler .clickable-row .icon {
    margin-right: 5px;
  }
  .toggler .clickable-row .icon:before {
    font-size: 20px;
    font-weight: 700;
  }
  .toggler .clickable-row.open .icon:before {
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
  }
  .popup-with-form {
    padding: 0.5em 0.7em;
    font-size: 1em;
    width: 100%;
  }
  .footer {
    margin-top: 0 !important;
  }
}
.kenmerken-buttons {
  margin-top: 20px;
}
.kenmerken-buttons p {
  margin-bottom: 20px;
}
.kenmerken-buttons p:last-child {
  margin-bottom: 0;
}

span.reagerentijd {
  margin-top: 3px;
  background: #6751CA;
  border-radius: 3px;
  color: #fff;
  padding: 3px 10px 5px 10px;
  display: inline-block;
  margin-left: 40px;
}

#contact-estate-agent {
  box-shadow: 0 0 20px 0 rgba(26, 20, 51, 0.45);
  position: relative;
  background: #fff;
  padding: 2em 2em;
  width: auto;
  margin: 20px auto;
  max-width: 600px;
  border-radius: 12px;
}
#contact-estate-agent h4 {
  margin-bottom: 15px;
}
#contact-estate-agent .column-element {
  margin-bottom: 10px;
}
#contact-estate-agent .button-group.right-aligned {
  justify-content: flex-end;
}
#contact-estate-agent .mfp-close {
  top: 5px !important;
  right: 5px;
  margin-top: 0;
  color: #000;
  font-size: 3rem;
  opacity: 1;
}

.margin-0 {
  margin: 0;
}

.js-toggle-article .collapsible {
  display: none;
}
.js-toggle-article.expanded .collapsible {
  display: block;
}
.js-toggle-article p a.text {
  margin-top: 1rem;
}

.aanbod-tabs.show-mobile {
  display: inline-block;
  margin: 0;
  width: 100%;
}
.aanbod-tabs.show-mobile .aanbod-picker {
  background: #F3F3F3;
  border: 1px solid #AEAEAE;
  border-radius: 12px;
  background-image: url("/assets/images/arrow down.svg") !important;
  background-size: 23px 23px !important;
  background-position: 95% 15px !important;
  background-repeat: no-repeat;
  outline: none;
  -webkit-appearance: none;
  position: relative;
  margin-bottom: 20px;
  padding: 0;
}
.aanbod-tabs.show-mobile .aanbod-picker span.label {
  padding: 10px 15px;
  display: inline-block;
  line-height: 30px;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
}
.aanbod-tabs.show-mobile .aanbod-picker:hover {
  border-color: #999;
}
.aanbod-tabs.show-mobile .aanbod-picker.open {
  background-image: url("/assets/images/arrow up.svg") !important;
}
.aanbod-tabs.show-mobile .aanbod-picker .dropdown {
  border-top: 1px solid #e7e7e7;
  padding: 0 0 10px 0;
  display: none;
}
.aanbod-tabs.show-mobile .aanbod-picker .dropdown .tab {
  display: block;
  background: transparent;
  text-align: left;
  border: none;
  text-decoration: none;
  font-size: 16px;
  padding: 5px 15px;
  white-space: nowrap;
  color: #000;
  width: 100%;
}
.aanbod-tabs.show-mobile .aanbod-picker .dropdown .tab span.bullet {
  display: inline-block;
  border-radius: 20px;
  width: 22px;
  height: 22px;
  padding: 2px;
  border: 1px solid #999;
  vertical-align: text-bottom;
  margin-right: 10px;
}
.aanbod-tabs.show-mobile .aanbod-picker .dropdown .tab.active span.bullet span {
  border-radius: 20px;
  width: 15px;
  height: 15px;
  margin: 1px;
  padding: 0;
  background: #6751CA;
  vertical-align: top;
  display: inline-block;
}
.aanbod-tabs.show-mobile .aanbod-picker .dropdown .tab span.title {
  padding: 5px 0 0 0;
  display: inline-block;
}
