/* 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::-moz-selection {
	background: transparent;
}
.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 {
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	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;
	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(#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;
	transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-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:         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(layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(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(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;
	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;
	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;
	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;
		}
	}

#map-comp {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.fullscreen .map-comp-wrapper {
  position: absolute;
}
path.leaflet-clickable {
  cursor: grab;
}
path.leaflet-interactive {
  cursor: default;
}
.mapbox-maplogo {
  position: absolute;
  display: block;
  height: 20px;
  width: 65px;
  left: 10px;
  bottom: 10px;
  text-indent: -9999px;
  z-index: 99999;
  overflow: hidden;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIIAAAAoCAMAAAAFWtJHAAAAwFBMVEUAAAAAAAAAAABtbW0AAAAAAAAAAAAAAAAAAAAAAAClpaUAAADp6ekAAAD5+fna2toAAAAMDAzv7+/Nzc0AAAA2Njb8/Pz9/f3T09MAAAAAAAD7+/sAAAArKyuxsbH39/fs7OwbGxuIiIjz8/N8fHyenp7u7u74+PgAAAC8vLxWVlbx8fF1dXXl5eVcXFyUlJTQ0NDFxcVCQkLAwMC4uLj19fXo6OjW1tarq6ve3t77+/vi4uL6+vrKysrNzc3///8w7gSSAAAAP3RSTlMAOQNdPSYBPywKexLLGPCxNEHXnzFL+v2nGwf1IEiE6dBFad9jd9PuLo1V2mDDV3Cjl06SiuXIq4C3973ym6BQMVUPAAAEXElEQVR4Ae2WCVP6OBiH05L0l1IqrVbkKHJ54I0oHn+PfP9vtUle0z/YdhbH2XVnd58ZnRJIeHiPJOx//mH4vQSAN+8FjAhFxgHIaPvJeZ99hxwEElon5iAQbj85Y98g8ODwjEOMAvGFyeE3FEKgodTBqj0BJGN9DhyNd5Ta3ean9QEopfaA+LsKhnEKRExqg4FSP6Og7oEkAjBWnxSCgBX4xF+kcLoPcOBQrSv0e5kH7s1j37jECQieCTPiFGxL5VHw2zQWCeeJiPt6kjRQw0XSkIdVChf67xGa4alSnZlT6HEQ8CK9ANbhvXUF9xlDkBfTuHDWScgC9+z5FQpPI12TlwC6+sV7ixR8CUMKiwjm2GQeOQWHMGuHGdbnObJAwCEqFJpNU5H6uaPUaEIKiQfg+PHk1+u4OwW9PlWW2ctbA4BHCtp+cNK+H8Jos4gDmC5ar4Nx9waaG/2B13NgDqS7+vm2RgEtEws82P+kwIHhs/pgkQKcFIhfd7CogtGNjYMHTLpurD0ERbYFw4JaD3GlQuNAL/JEsSAF4HqlCnaHACk4WhOn4OgCkMD5hSpYNYDJTD8Y46n+jsE1kPhVCuR6QBXhFK7MUOu9O6b1SWF3b+/9ZVWMGOlu93E8UDaAhgc7bfH+0DHqKXCkHzoNDFfU+zxiVQrUC9QXTuHYtKpN59OA3IxCG4b7jh6ZFuVockaNTW09mkJzOaPU49a6mE9cAchZpQJNpUWcwgV9r6FJswsFKrITp2B5pMBMdnS0z2HZNy2+BNKxSZxZfglkrFYBJxQnpzA5sN/HheR2aFQoZBLAi149dQoyAYYjW0hHlHguBAdMcR0DuDZ5omevX6+AI8qcU7ikKT3GBHCnXwydgmCC0tRwCnGQ2Wp6Be71yNIWfQSkOl9vAI1SBCNWrwC01RROgX7BuT2HI4r7tFAw086p/NwZEdOEa7R1uAFuNmQPuKAEAjYNQ0CyeoUEWHYBnpQVQgpvc0Ph+gsKlAnKg1+vEHsw5LKciLKCAJobiWBzYFGbCKpHqkZZrxBFHEASyFI59vJPCskcwNVGOWZAOqsrR+pKbaNeAMT1CixMEtlnsqopNxUMzVJT3tY35aXZm6a6Y9QhwMN6BUJWbE1lhbMO1WehkO7poO0sK7em9MJGxp1XSbC1gtugzzSLQmGsX7VntJGSwsPZ2d2z3bIPKzdoOp3Wzqt8G4XyMVUoFIxLx1S7+piaHtCvR3FeRVsq0GFdp9C5TbGpcNqsPqyHKxcfd14h21KhuLKUFU4f3osrC7F6uV3WXFnadL7wyAPeKDXw2RoJCO5GY4DouYvb/gepVXheLoewzPseQG9N/vzilrMIjoStE3++zvle4eSurw7XEe76ynI4aq+v7lEyt1x5awiFlFLQbHKIpabnM3eJLym4Szzzc/du7SU+zOXv9UNpECH7IoH/gecURPlN9vdQpeD47yhIFNX0U0QgvID9nENm+yxk/xb+AGAjNfRZuk9qAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 65px 20px;
}
.mapbox-maplogo:hover {
  border: none;
}

/* normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}
body {
  margin: 0;
}
article,
aside,
footer,
header,
nav,
section {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
figcaption,
figure,
main {
/* 1 */
  display: block;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}
a:active,
a:hover {
  outline-width: 0;
}
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}
b,
strong {
  font-weight: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
dfn {
  font-style: italic;
}
mark {
  background-color: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
audio,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
img {
  border-style: none;
}
svg:not(:root) {
  overflow: hidden;
}
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
button,
input {
/* 1 */
  overflow: visible;
}
button,
select {
/* 1 */
  text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; /* 2 */
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
details,
menu {
  display: block;
}
summary {
  display: list-item;
}
canvas {
  display: inline-block;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
.story {
  width: 100%;
}
.bg-wrap {
  background: #f9f9f9;
  overflow: hidden;
}
.layout-small {
  max-width: 760px;
  margin: 20px auto;
  padding: 0 15px;
  position: relative;
}
.layout-large {
  max-width: 1080px;
  margin: 20px auto;
  padding: 0 15px;
  position: relative;
}
.layout-full {
  width: 100%;
  margin: 20px auto;
  padding: 0;
  position: relative;
}
.layout-flex {
  width: 100%;
  max-width: 1600px;
  margin: 20px auto;
  padding: 0 15px;
  position: relative;
}
.intro .layout-full {
  margin: 0 auto;
}
html.fullscreen,
html.fullscreen body {
  overflow: hidden;
  height: 100%;
}
html.fullscreen .intro {
  height: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
html.fullscreen .intro .topheader {
  flex-grow: 0;
}
html.fullscreen .intro .layout-full {
  flex-grow: 1;
  position: relative;
}
@media screen and (min-width: 375px) {
  .layout-small,
  .layout-large,
  .layout-flex {
    padding: 0 7%;
  }
}
@media screen and (min-width: 640px) {
  .layout-small,
  .layout-large,
  .layout-flex,
  .layout-full {
    margin: 30px auto;
  }
}
@media screen and (min-width: 760px) {
  .layout-small {
    padding: 0 60px;
  }
}
@media screen and (min-width: 768px) {
  .layout-small,
  .layout-large,
  .layout-flex,
  .layout-full {
    margin: 40px auto 30px;
  }
}
@media screen and (min-width: 960px) {
  .layout-small,
  .layout-large,
  .layout-flex {
    padding: 0 60px;
  }
  .layout-small,
  .layout-large,
  .layout-flex,
  .layout-full {
    margin: 50px auto 40px;
  }
  .intro .layout-small,
  .intro .layout-large,
  .intro .layout-flex {
    margin: 30px auto 30px;
  }
  .layout-flex {
    width: 70%;
    padding: 0;
  }
}
@media screen and (min-width: 1280px) {
  .layout-small,
  .layout-large,
  .layout-flex,
  .layout-full {
    margin: 60px auto 50px;
  }
}
@media screen and (min-width: 1480px) {
  .layout-small,
  .layout-large,
  .layout-flex,
  .layout-full {
    margin: 70px auto 60px;
  }
}
.intro {
  position: relative;
}
.headline {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
}
.headline .topline {
  font-size: 1.3rem;
  color: #777;
}
.headline .topline .date {
  margin-right: 0.5em;
}
.headline .topline .kicker {
  font-weight: 900;
}
.headline .title {
  margin: 0.4rem 0 0.8rem;
  font-size: 2.6rem;
  font-weight: 900;
}
.headline .subtitle {
  margin: 0.8rem 0;
  font-size: 1.8rem;
  font-weight: 300;
}
.headline .introtext {
  margin: 0.8rem 0;
  font-size: 1.4rem;
  font-family: Georgia, serif;
  font-weight: 400;
  line-height: 1.5;
  color: #5a5a5a;
}
.headline.layout-flex {
  max-width: 1600px;
}
.headline.layout-flex .title,
.headline.layout-flex .introtext {
  max-width: 1200px;
}
.intro-fullscreen .headline {
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 700;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.intro-fullscreen .headline .introtext {
  color: #222;
}
.intro-fullscreen .layout-full {
  z-index: 500;
  margin: 0 auto;
}
.intro-fullscreen.animate-headline .headline {
  transition: top 0.3s, left 0.3s, opacity 0.3s, transform 0.3s;
  margin-left: 0;
  margin-right: 0;
  transform: translateX(-50%);
  left: 50%;
  width: 100%;
}
.intro-fullscreen.animate-headline .topheader-headline {
  opacity: 0;
  transition: opacity 0.3s 0.2s;
}
.intro-fullscreen.is-animated-headline .topheader-headline {
  opacity: 1;
}
.intro-fullscreen.is-animated-headline .headline {
  top: 10px;
  left: 52px;
  transform: translateX(0);
  opacity: 0;
  width: auto;
}
.intro-fullscreen.is-animated-headline .headline >* {
  display: none;
}
.intro-fullscreen.is-animated-headline .headline .title {
  font-size: 1.4rem;
  display: block;
}
@media screen and (min-width: 375px) {
  .headline {
    padding: 0 7%;
  }
}
@media screen and (min-width: 640px) {
  .intro {
    margin-bottom: 40px;
  }
  .headline,
  .headline.layout-flex {
    margin-top: 15px;
  }
  .headline .title,
  .headline.layout-flex .title {
    font-size: 3.2rem;
    margin: 0.25em 0;
  }
  .headline .subtitle,
  .headline.layout-flex .subtitle {
    font-size: 2rem;
    margin: 0.4em 0;
  }
  .headline .introtext,
  .headline.layout-flex .introtext {
    font-size: 1.9rem;
    margin: 0.421em 0;
  }
  .intro-fullscreen .headline {
    top: 100px;
  }
  .intro-fullscreen.is-animated-headline .headline {
    top: 0;
    left: 227px;
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 768px) {
  .intro-fullscreen {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 960px) {
  .intro {
    margin-bottom: 60px;
  }
  .intro-fullscreen {
    margin-bottom: 80px;
  }
  .headline {
    margin-top: 20px;
    padding: 0 60px;
  }
  .headline .title {
    font-size: 3.8rem;
  }
  .headline.layout-flex {
    padding: 0;
    margin-top: 20px;
    width: 70%;
  }
}
@media screen and (min-width: 1280px) {
  .headline .introtext {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1600px) {
  .intro {
    margin-bottom: 80px;
  }
  .headline,
  .headline.layout-flex {
    margin-top: 50px;
    margin-bottom: 40px;
  }
  .headline .title,
  .headline.layout-flex .title {
    font-size: 4.8rem;
  }
  .headline .subtitle,
  .headline.layout-flex .subtitle {
    font-size: 2.4rem;
  }
  .headline .introtext,
  .headline.layout-flex .introtext {
    font-size: 2.3rem;
  }
}
.topheader {
  width: 100%;
  background: #fff;
  padding: 8px 8px 8px 13px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.topheader a,
.topheader a:hover {
  border: none;
  line-height: 1;
}
.topheader .topheader-logo {
  display: flex;
  align-items: center;
}
.topheader .topheader-logo a {
  padding: 3px 0;
}
.topheader .topheader-logo .logo {
  max-height: 27px;
  width: auto;
  display: block;
}
.topheader .topheader-logo .logo.big {
  max-width: 220px;
}
.topheader .topheader-logo .logo.small {
  max-width: 27px;
}
.topheader .topheader-headline {
  position: relative;
  top: 0.5em;
  margin-left: 22px;
}
.topheader .topheader-headline > * {
  display: inline-block;
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0.3em;
}
.topheader .topheader-headline .kicker {
  font-weight: 700;
}
.topheader .topheader-headline .title {
  font-weight: 700;
}
.topheader .topheader-headline .subtitle {
  color: #777;
}
.topheader .topheader-headline .kicker + .title {
  font-weight: 400;
  display: none;
}
.topheader .topheader-headline:before {
  position: absolute;
  content: '';
  height: 1em;
  width: 1px;
  background: #ccc;
  left: -12px;
  top: 0.35em;
}
.topheader .topheader-social {
  margin-left: auto;
  padding-left: 8px;
}
.topheader .topheader-social iframe {
  display: none;
}
.topheader .topheader-social .btn-social {
  padding: 0.4375em;
  display: inline-block;
  font-size: 1.6rem;
  cursor: pointer;
}
.topheader .topheader-social .btn-facebook {
  color: #4864bb;
}
.topheader .topheader-social .btn-facebook:hover {
  color: #5b74c2;
}
.topheader .topheader-social .btn-twitter {
  color: #5eaade;
}
.topheader .topheader-social .btn-twitter:hover {
  color: #73b5e2;
}
.header-transparent .topheader {
  z-index: 700;
  background: transparent;
}
@media screen and (min-width: 375px) {
  .topheader {
    padding-left: 7%;
  }
  .fullscreen .topheader,
  .intro-fullscreen .topheader {
    padding-left: 13px;
  }
}
@media screen and (min-width: 500px) {
  .topheader {
    padding-left: 13px;
  }
  .topheader .topheader-headline .kicker + .title {
    display: inline-block;
  }
}
@media screen and (min-width: 960px) {
  .topheader {
    padding-left: 15px;
  }
  .topheader .topheader-headline {
    top: 0.3em;
    margin-left: 27px;
  }
  .topheader .topheader-headline > * {
    font-size: 1.7rem;
  }
  .topheader .topheader-headline:before {
    top: 0.5em;
    left: -15px;
  }
  .topheader .topheader-social iframe {
    width: 115px;
    display: inline-block;
    position: relative;
    top: 6px;
    margin-right: 8px;
  }
}
.text-wrap {
  padding: 0 15px;
  max-width: 1080px;
  margin: 0 auto;
}
.text-wrap p {
  max-width: 640px;
  margin: 1.5em auto;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.7;
}
.text-wrap h2,
.text-wrap h3,
.text-wrap .text-headline {
  max-width: 640px;
  margin: 1em auto;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 1.3;
}
.text-wrap aside,
.text-wrap .text-sidebox {
  max-width: 640px;
  margin: 0.7em auto 1.5em;
  padding: 1.5em 0;
  font-size: 1.4rem;
  line-height: 1.6;
  border: 1px solid #ddd;
  border-width: 1px 0;
}
.text-wrap aside h2,
.text-wrap .text-sidebox h2,
.text-wrap aside h3,
.text-wrap .text-sidebox h3,
.text-wrap aside .sidebox-headline,
.text-wrap .text-sidebox .sidebox-headline {
  font-size: 1em;
  font-weight: 700;
  margin: 0 0 1em;
}
.text-wrap aside.media,
.text-wrap .text-sidebox.media {
  border: none;
  padding: 0;
  float: right;
  max-width: 140px;
  margin-left: 20px;
  margin-top: 0;
}
@media screen and (min-width: 375px) {
  .text-wrap {
    padding: 0 7%;
  }
}
@media screen and (min-width: 640px) {
  .text-wrap p {
    font-size: 1.9rem;
    line-height: 1.65;
  }
  .text-wrap h2,
  .text-wrap h3,
  .text-wrap .text-headline {
    margin: 1.5em auto;
    font-size: 3rem;
  }
  .text-wrap aside,
  .text-wrap .text-sidebox {
    font-size: 1.6rem;
  }
  .text-wrap aside.media,
  .text-wrap .text-sidebox.media {
    max-width: 240px;
    margin-left: 30px;
    margin-top: 0.4em;
  }
}
@media screen and (min-width: 960px) {
  .text-wrap {
    padding: 0 60px;
  }
  .text-wrap aside,
  .text-wrap .text-sidebox,
  .text-wrap .text-sidebox.media {
    max-width: 320px;
    float: right;
    margin-left: 30px;
  }
}
footer {
  margin-top: 20px;
  padding-bottom: 20px;
}
footer hr {
  margin: 25px auto;
  width: 100%;
  max-width: 200px;
  height: 1px;
  border: none;
  background-color: #ddd;
}
footer .footer-contactbox,
footer .footer-credits {
  margin: 0 auto;
  max-width: 680px;
  padding: 0 15px;
  font-size: 1.3rem;
  color: #777;
  text-align: center;
}
footer .footer-credits .footer-imprint .footer-imprint-title,
footer .footer-credits .footer-imprint .footer-imprint-link {
  display: block;
  margin-top: 0.5em;
}
@media screen and (min-width: 375px) {
  footer .footer-contactbox,
  footer .footer-credits {
    padding: 0 7%;
  }
}
@media screen and (min-width: 640px) {
  footer {
    margin-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  footer {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 960px) {
  footer {
    margin-top: 80px;
    padding-bottom: 80px;
  }
  footer .footer-contactbox,
  footer .footer-credits {
    font-size: 1.4rem;
    padding: 0 60px;
  }
}
input,
input[type=text],
input[type=date],
input[type=email],
input[type=file],
input[type=password],
input[type=search],
input[type=number],
input[type=datetime],
input[type=datetime-local],
input[type=url] {
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #222;
  padding: 0.643em 0.571em;
  line-height: 1;
  height: 34px;
  box-sizing: border-box;
  display: block;
  outline: none;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
input::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=file]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=datetime]::-webkit-input-placeholder,
input[type=datetime-local]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder {
  line-height: normal;
}
button,
.btn {
  display: block;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 1.4rem;
  border-radius: 4px;
  font-weight: 700;
  padding: 0.643em 1.5em;
  margin: 5px;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1;
  outline: none;
  border-bottom-color: #a3a3a3;
  box-shadow: 0 1px 1px rgba(0,0,0,0.15);
  cursor: pointer;
}
button:hover,
.btn:hover {
  background: #f9f9f9;
  cursor: pointer;
}
button:active,
.btn:active,
button.active,
.btn.active {
  background: #eee;
  box-shadow: 0 1px 1px rgba(0,0,0,0.15), 0 3px 7px rgba(0,0,0,0.15) inset;
}
button.ghost,
.btn.ghost {
  background: transparent;
  color: #222;
  border: 1px solid #222;
  box-shadow: none;
}
button.ghost:hover,
.btn.ghost:hover {
  color: #fff;
  background: #222;
}
button.ghost:active,
.btn.ghost:active,
button.ghost.active,
.btn.ghost.active {
  background: #3c3c3c;
  border-color: #3c3c3c;
}
button.ghost.white,
.btn.ghost.white {
  color: #fff;
  border-color: #fff;
}
button.ghost.white:hover,
.btn.ghost.white:hover {
  color: #222;
  background: #fff;
}
button.ghost.white:active,
.btn.ghost.white:active,
button.ghost.white.active,
.btn.ghost.white.active {
  background: #e6e6e6;
  border-color: #e6e6e6;
}
button.ghost.accent1,
.btn.ghost.accent1 {
  color: #d14f4f;
  background: transparent;
  border-color: #d14f4f;
}
button.ghost.accent1:hover,
.btn.ghost.accent1:hover {
  color: #fff;
  background: #d14f4f;
  border-color: #d14f4f;
}
button.ghost.accent1:active,
.btn.ghost.accent1:active,
button.ghost.accent1.active,
.btn.ghost.accent1.active {
  color: #fff;
  background: #bc3131;
  border-color: #bc3131;
}
button.ghost.accent2,
.btn.ghost.accent2 {
  color: #4c80bc;
  background: transparent;
  border-color: #4c80bc;
}
button.ghost.accent2:hover,
.btn.ghost.accent2:hover {
  color: #fff;
  background: #4c80bc;
  border-color: #4c80bc;
}
button.ghost.accent2:active,
.btn.ghost.accent2:active,
button.ghost.accent2.active,
.btn.ghost.accent2.active {
  color: #fff;
  background: #3a679b;
  border-color: #3a679b;
}
button.circle,
.btn.circle {
  width: 2.5em;
  height: 2.5em;
  padding: 0.75em;
  border-radius: 50%;
  line-height: 1;
}
button.flat,
.btn.flat {
  box-shadow: none;
  background: #d14f4f;
  border-color: #d14f4f;
  color: #fff;
}
button.flat:hover,
.btn.flat:hover {
  background: #cc3b3b;
  border-color: #cc3b3b;
}
button.flat:active,
.btn.flat:active,
button.flat.active,
.btn.flat.active {
  background: #bc3131;
  border-color: #bc3131;
}
button.flat.accent1,
.btn.flat.accent1 {
  background: #d14f4f;
  border-color: #d14f4f;
}
button.flat.accent1:hover,
.btn.flat.accent1:hover {
  background: #cc3b3b;
  border-color: #cc3b3b;
}
button.flat.accent1:active,
.btn.flat.accent1:active,
button.flat.accent1.active,
.btn.flat.accent1.active {
  background: #bc3131;
  border-color: #bc3131;
}
button.flat.accent2,
.btn.flat.accent2 {
  background: #4c80bc;
  border-color: #4c80bc;
}
button.flat.accent2:hover,
.btn.flat.accent2:hover {
  background: #4173ae;
  border-color: #4173ae;
}
button.flat.accent2:active,
.btn.flat.accent2:active,
button.flat.accent2.active,
.btn.flat.accent2.active {
  background: #3a679b;
  border-color: #3a679b;
}
button.accent1,
.btn.accent1 {
  background: #d14f4f;
  color: #fff;
  border-color: #bc3131;
  border-bottom-color: #a82c2c;
}
button.accent1:hover,
.btn.accent1:hover {
  background: #cc3b3b;
  border-bottom-color: #932727;
}
button.accent1:active,
.btn.accent1:active,
button.accent1.active,
.btn.accent1.active {
  background: #bc3131;
}
button.accent2,
.btn.accent2 {
  background: #4c80bc;
  color: #fff;
  border-color: #3a679b;
  border-bottom-color: #335b88;
}
button.accent2:hover,
.btn.accent2:hover {
  background: #4173ae;
  border-bottom-color: #2c4e76;
}
button.accent2:active,
.btn.accent2:active,
button.accent2.active,
.btn.accent2.active {
  background: #3a679b;
}
button.dark,
.btn.dark {
  background: #9a9a9a;
  border-color: #777;
  border-bottom-color: #5a5a5a;
  color: #fff;
}
button.dark:hover,
.btn.dark:hover {
  background: #8d8d8d;
}
button.dark:active,
.btn.dark:active,
button.dark.active,
.btn.dark.active {
  background: #818181;
}
button.close,
.btn.close {
  width: 40px;
  height: 40px;
  padding: 0;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 2rem;
  border-radius: 50%;
  border-width: 0 0 1px 0;
  background-color: #9a9a9a;
  color: #fff;
  border-color: #777;
}
button.close:hover,
.btn.close:hover {
  background-color: #a3a3a3;
  border-color: #9a9a9a;
}
.btn-group {
  display: flex;
}
.btn-group button,
.btn-group .btn {
  border-radius: 0;
  border-right-width: 0;
  margin: 0;
}
.btn-group button:first-child,
.btn-group .btn:first-child {
  border-radius: 4px 0 0 4px;
}
.btn-group button:last-child,
.btn-group .btn:last-child {
  border-right-width: 1px;
  border-radius: 0 4px 4px 0;
}
.btn-group.vertical {
  display: flex;
  flex-direction: column;
  width: 200px;
}
.btn-group.vertical button,
.btn-group.vertical .btn {
  border-right-width: 1px;
  border-bottom-width: 0;
}
.btn-group.vertical button:first-child,
.btn-group.vertical .btn:first-child {
  border-radius: 4px 4px 0 0;
}
.btn-group.vertical button:last-child,
.btn-group.vertical .btn:last-child {
  border-bottom-width: 1px;
  border-radius: 0 0 4px 4px;
}
.btn-group.dark button,
.btn-group.dark .btn {
  background: #9a9a9a;
  border-color: #777;
  border-bottom-color: #5a5a5a;
  color: #fff;
}
.btn-group.dark button:hover,
.btn-group.dark .btn:hover {
  background: #8d8d8d;
}
.btn-group.dark button:active,
.btn-group.dark .btn:active,
.btn-group.dark button.active,
.btn-group.dark .btn.active {
  background: #818181;
}
.input-group {
  display: flex;
  width: 290px;
}
.input-group input {
  border-right: none;
  border-radius: 4px 0 0 4px;
  flex-grow: 1;
}
.input-group button,
.input-group .btn {
  border-bottom-color: #ccc;
  border-radius: 0 4px 4px 0;
  box-shadow: none;
  margin: 0;
  white-space: nowrap;
  position: relative;
  vertical-align: middle;
}
.input-group .btn-group {
  display: flex;
}
.input-group .btn-group button:first-child,
.input-group .btn-group .btn:first-child {
  border-radius: 0;
}
.media img,
.media video {
  width: 100%;
  height: auto;
  display: block;
}
.media video {
  cursor: pointer;
}
.media h2,
.media h3,
.media .media-headline {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 0.625em;
}
.media-sub {
  margin-top: 0.667em;
  font-size: 1.2rem;
}
.media-credit {
  float: right;
  margin-left: 0.5em;
  color: #777;
}
.media.layout-large .media-headline {
  max-width: 640px;
}
.lazy {
  position: relative;
}
.lazyloader {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 100;
  font-size: 25px;
}
@media screen and (min-width: 640px) {
  .media h2,
  .media h3,
  .media .media-headline {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .media-sub {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 960px) {
  .media.layout-large h2,
  .media.layout-large h3,
  .media.layout-large .media-headline {
    max-width: none;
  }
}
body.dark {
  background: #111;
  color: #fff;
}
.dark .topheader {
  background: #111;
  color: #fff;
}
.dark .topheader .topheader-headline:before {
  background: #444;
}
.dark .introtext {
  color: #a3a3a3;
}
.dark .intro-fullscreen .introtext {
  color: #fff;
}
.dark footer hr {
  background: #333;
}
.dark .story aside,
.dark .story .sidebox {
  border-color: #333;
}
.gallery .topheader {
  background: #222;
}
.gallery .headline {
  margin-top: 10px;
}
.gallery .story .media,
.gallery .story .slider {
  margin-bottom: 30px;
}
.gallery footer.background {
  background: #eee;
  padding-top: 20px;
  color: #222;
}
@media screen and (min-width: 640px) {
  .gallery .headline {
    margin-top: 15px;
  }
}
@media screen and (min-width: 960px) {
  .gallery .headline {
    margin-top: 40px;
  }
  .gallery .headline .title {
    font-size: 4rem;
  }
  .gallery .story .media h2,
  .gallery .story .slider h2,
  .gallery .story .media h3,
  .gallery .story .slider h3,
  .gallery .story .media .media-headline,
  .gallery .story .slider .media-headline {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1600px) {
  .gallery .headline {
    margin-top: 70px;
    margin-bottom: 90px;
  }
  .gallery .headline .title {
    font-size: 4.8rem;
  }
  .gallery .story .media,
  .gallery .story .slider {
    margin-bottom: 100px;
  }
}
.teaser-wrapper {
  display: block;
  color: #fff;
  background-size: cover;
  background-position: 50% 0%;
  width: 100%;
  min-height: 300px;
  position: relative;
}
.teaser-wrapper:link,
.teaser-wrapper:hover,
.teaser-wrapper:visited,
.teaser-wrapper:active {
  border: none;
  color: #fff;
}
.teaser-wrapper .teaser-gradient {
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.3) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 50;
  pointer-events: none;
}
.teaser-wrapper .teaser-text {
  position: relative;
  z-index: 100;
  padding: 0 15px;
}
.teaser-wrapper .teaser-text .teaser-cta {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 1em 0;
}
.teaser-wrapper .teaser-text .teaser-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.25em;
}
.teaser-wrapper .teaser-text .btn-teaser {
  margin-top: 1.5em;
}
@media screen and (min-width: 375px) {
  .teaser-wrapper .teaser-text {
    padding: 0 7%;
  }
}
@media screen and (min-width: 640px) {
  .teaser-wrapper {
    min-height: 400px;
  }
  .teaser-wrapper .teaser-text .teaser-cta {
    margin: 1.5em 0 2em;
  }
  .teaser-wrapper .teaser-text .teaser-title {
    font-size: 3.2rem;
    max-width: 12em;
  }
  .teaser-wrapper .teaser-text .teaser-desc {
    font-size: 1.5rem;
    max-width: 25em;
  }
  .teaser-wrapper .teaser-text .btn-teaser {
    margin-top: 2.5em;
  }
}
@media screen and (min-width: 960px) {
  .teaser-wrapper {
    min-height: 500px;
  }
  .teaser-wrapper .teaser-text {
    padding: 0 60px;
  }
  .teaser-wrapper .teaser-text .teaser-cta {
    font-size: 2rem;
    margin: 2em 0 3em;
  }
  .teaser-wrapper .teaser-text .teaser-title {
    font-size: 4.2rem;
  }
  .teaser-wrapper .teaser-text .teaser-desc {
    font-size: 1.6rem;
  }
}
.iframe-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000000;
  background: rgba(245,245,245,0.4);
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
  transition: background 0.5s;
}
.iframe-overlay:hover {
  background: rgba(0,0,0,0.2);
}
.iframe-overlay:hover .embed-inner {
  opacity: 1;
}
.iframe-overlay .icon-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
}
.iframe-overlay .embed-inner {
  width: 100%;
  width: 160px;
  text-align: center;
  position: absolute;
  opacity: 0;
  top: 50%;
  left: 50%;
  margin-left: -80px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  border-radius: 50%;
  height: 160px;
  transition: background 0.3s, opacity 0.3s;
}
.iframe-overlay .embed-inner:hover {
  background: rgba(0,0,0,0.9);
}
.iframe-overlay .embed-inner .icon-interaktiv {
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -20px;
  font-size: 4rem;
}
.iframe-overlay .embed-title {
  font-size: 1.2rem;
  position: absolute;
  bottom: 40px;
  width: 80%;
  left: 10%;
}
.has-touch .iframe-overlay .embed-inner {
  opacity: 0.8;
}
html.is-embed-overlay body {
  overflow: hidden;
}
html.is-embed-overlay .iframe-overlay {
  display: block;
}
html.is-embed-overlay .info-btn {
  display: none;
}
.info-button {
  position: absolute;
  right: 1em;
  top: 3em;
  cursor: pointer;
  font-size: 2.5rem;
  color: #9a9a9a;
  z-index: 500;
}
.info-button.is-fixed {
  position: fixed;
  bottom: 1em;
  left: 1em;
  top: auto;
  right: auto;
}
.info-button:hover {
  color: #777;
}
.info-box {
  display: none;
  background: #fff;
  position: fixed;
  top: 3%;
  left: 4%;
  width: 92%;
  height: 94%;
  box-shadow: 0 3px 4px rgba(0,0,0,0.15);
  z-index: 1600;
  animation-timing-function: cubic-bezier(0.25, 0, 0.4, 1);
  animation-duration: 0.35s;
  animation-name: infoboxOn;
  animation-fill-mode: forwards;
}
.info-box .info-box-content {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 10px 15px;
}
.info-box .info-box-content p {
  font-family: Georgia, serif;
}
.info-box.is-active {
  display: block;
}
.info-box .close {
  top: -15px;
  right: -15px;
  z-index: 1700;
}
.info-box .info-title {
  margin-bottom: 0.25em;
  font-weight: 700;
  font-size: 1.8rem;
}
.info-box-is-active {
  overflow: hidden;
}
.overlay {
  display: none;
  width: 100%;
  position: fixed;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1500;
  cursor: pointer;
}
.overlay.is-active {
  display: block;
}
@media screen and (min-width: 768px) {
  .info-box {
    width: 600px;
    margin-left: -300px;
    left: 50%;
    top: 10%;
    height: 80%;
    max-height: 650px;
  }
  .info-box .info-box-content {
    padding: 20px 30px;
  }
}
@keyframes infoboxOn {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: none;
    color: #222;
  }
}
.search {
  width: 250px;
  position: relative;
}
.search .search-input-form {
  width: 100%;
}
.search .result-list {
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1000;
  width: 100%;
}
.search .result-list-item {
  padding: 7px 10px;
  background: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}
.search .result-list-item.active {
  background: #ddd;
}
#map .search {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
}
.resp-content {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  vertical-align: middle;
  overflow: hidden;
}
.resp-content >* {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
div,
summary,
ul,
li {
  box-sizing: border-box;
}
html {
  font-size: 10px;
  color: #222;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  background: #fff;
}
body,
html {
  -webkit-font-smoothing: antialiased;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}
a,
a:visited {
  color: #4c80bc;
  text-decoration: none;
}
a:hover {
  border-bottom: 1px solid #4c80bc;
}
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
.hidden {
  display: none !important;
  visibility: hidden;
}
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.spin {
  animation: spin 2s infinite linear;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.embed-teaser {
  display: none;
}
html.is-embed-mode {
  height: 100%;
}
html.is-embed-mode .story,
html.is-embed-mode footer,
html.is-embed-mode header,
html.is-embed-mode .teaser-wrapper {
  display: none;
}
html.is-embed-mode .headline {
  top: 0;
  margin-top: 0;
}
html.is-embed-mode .headline .title,
html.is-embed-mode .headline .introtext {
  display: none;
}
html.is-embed-mode .headline .map__cta {
  margin-top: 15px;
}
html.is-embed-mode body {
  height: 100%;
}
html.is-embed-mode .intro {
  display: flex;
  flex-direction: column;
  height: 100%;
}
html.is-embed-mode .intro .draw-app {
  height: 100%;
  flex-grow: 1;
}
html.is-embed-mode #map {
  width: 100%;
  height: 100%;
  position: absolute;
}
html.is-embed-mode .map__result-wrapper {
  bottom: 30px;
  opacity: 0.9;
}
html.is-embed-mode .mobileoverlay .startdraw {
  top: 0;
}
html.is-embed-mode .embed-teaser {
  background: rgba(76,128,188,0.9);
  display: block;
  z-index: 1000;
  font-weight: 500;
  text-align: center;
}
html.is-embed-mode .embed-teaser .icon {
  transform: rotate(180deg);
  margin-left: 0.5em;
}
html.is-embed-mode .embed-teaser:hover {
  background: #4c80bc;
}
html.is-embed-mode .embed-teaser:hover a:link,
html.is-embed-mode .embed-teaser:hover a:visited {
  color: #fff;
}
html.is-embed-mode .embed-teaser a:link,
html.is-embed-mode .embed-teaser a:visited {
  color: #fff;
  display: block;
  padding: 10px 15px;
  border-bottom: none;
}
html.is-embed-overlay .embed-teaser {
  background-color: rgba(76,128,188,0.2);
}
@media screen and (min-width: 375px) {
  html.is-embed-mode .headline .map__cta {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 640px) {
  html.is-embed-mode .swoopy__content-text {
    top: 0;
  }
}
@media screen and (min-width: 768px) {
  html.is-embed-mode .swoopy__content-img {
    position: absolute;
    height: auto;
    margin-bottom: 0;
    width: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  html.is-embed-mode .swoopy__content-img img {
    width: 300px;
  }
  html.is-embed-mode .swoopy__content-text {
    position: absolute;
    width: 13em;
    right: 100%;
    text-align: right;
    top: auto;
    left: auto;
    margin-right: 0.5em;
  }
  html.is-embed-mode .swoopy__content-cta {
    position: absolute;
    border-radius: 50%;
    width: 2em;
    height: 2em;
    font-size: 1.8rem;
    padding: 0.5em;
    left: 50%;
    top: auto;
    bottom: -0.75em;
    margin: 0 0 0 -1em;
  }
  html.is-embed-mode .swoopy__content-cta .label {
    display: none;
  }
  html.is-embed-mode .swoopy__content-cta .icon {
    font-size: 1em;
    margin-left: 0;
  }
  html.is-embed-mode .swoopy__content-cta:after {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  html.is-embed-mode .swoopy__content-img {
    position: relative;
    margin-bottom: 1em;
    width: 140px;
    height: 140px;
    top: -30px;
    left: -30px;
  }
  html.is-embed-mode .swoopy__content-img img {
    width: 525px;
  }
  html.is-embed-mode .swoopy__content-text {
    position: relative;
    width: 140px;
    right: 0;
    text-align: center;
    top: -30px;
    left: -30px;
  }
  html.is-embed-mode .swoopy__content-cta {
    border-radius: 0;
    width: 100px;
    height: auto;
    font-size: 1.4rem;
    border-radius: 4px;
    padding: 0.643em 1em;
    position: relative;
    left: -10px;
    top: -30px;
    bottom: 0;
    margin: 0.75em 0 0 0;
  }
  html.is-embed-mode .swoopy__content-cta .label {
    display: inline;
    position: relative;
  }
  html.is-embed-mode .swoopy__content-cta .icon {
    font-size: 1.6rem;
    margin-left: 0.5em;
  }
  html.is-embed-mode .swoopy__content-cta:after {
    display: none;
  }
}
.headline {
  text-align: center;
  margin: 0 auto 10px;
}
.headline .title {
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  max-width: 14em;
  margin-left: auto;
  margin-right: auto;
}
.headline .introtext {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  color: #5a5a5a;
  line-height: 1.4;
  margin: 0.5em auto 0.5em;
}
.map__cta {
  color: #d14f4f;
  font-weight: 700;
  font-size: 1.6rem;
  position: absolute;
  line-height: 1.3;
  top: 4%;
  width: 100%;
  text-align: center;
  z-index: 9999;
  max-width: 80%;
  left: 10%;
}
.map__cta .error-message {
  color: #d14f4f;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.3;
  display: inline-block;
  max-width: 23em;
  animation: fadeIn 0.5s;
}
.map__cta .error-message .icon {
  margin-right: 0.25em;
}
.intro-fullscreen.animate-headline .headline {
  margin-left: auto;
  margin-right: auto;
  transform: none;
  left: 0;
  right: 0;
}
@media screen and (min-width: 375px) {
  .headline {
    margin: 5px auto 10px;
  }
  .headline .title {
    font-size: 2.6rem;
  }
  .headline .introtext {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4rem;
    margin-bottom: 1.5em;
  }
}
@media screen and (min-width: 400px) {
  .headline {
    margin: 10px auto;
  }
  .headline .title {
    font-size: 3rem;
  }
  .headline .introtext {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 500px) {
  .map__cta {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 640px) {
  .step-1 .intro,
  .step-2 .intro {
    margin-bottom: 0;
  }
  .intro-fullscreen .headline {
    top: 0;
  }
  .headline .title {
    font-size: 3.4rem;
  }
  .headline .introtext {
    font-size: 1.8rem;
  }
  .map__cta .error-message {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .intro-fullscreen .headline {
    top: 20px;
  }
  .headline .title {
    font-size: 5rem;
  }
}
@media screen and (min-width: 960px) {
  .intro-fullscreen .headline {
    top: 0px;
  }
  .headline .introtext {
    max-width: 70%;
  }
}
@media screen and (min-width: 1024px) {
  .headline {
    margin-top: 0;
  }
  .headline .title {
    font-size: 4.2rem;
  }
  .headline .introtext {
    margin: 1em auto 1.5em;
  }
}
@media screen and (min-width: 1200px) {
  .map__cta .error-message {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1400px) {
  .headline .title {
    font-size: 5rem;
  }
  .headline .introtext {
    font-size: 1.8rem;
  }
  .map__cta {
    font-size: 2rem;
  }
  .map__cta .error-message {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1600px) {
  .headline {
    margin-top: 20px;
  }
  .headline .title {
    font-size: 6rem;
    margin: 0.5em auto;
  }
  .headline .introtext {
    font-size: 2.2rem;
    margin: 1.5em auto 2em;
  }
  .map__cta {
    font-size: 2.2rem;
  }
}
.map-comp-wrapper {
  height: 390px;
  position: relative;
}
.map-comp-wrapper .leaflet-top,
.map-comp-wrapper .leaflet-bottom {
  z-index: 500;
}
.map-comp-wrapper .mapbox-maplogo {
  z-index: 500;
  display: none;
}
.map-comp-wrapper .leaflet-control-attribution {
  display: none;
}
.step-3 #map .mapbox-maplogo,
.step-3 #map .leaflet-control-attribution {
  display: block;
}
.mapbox-maplogo {
  display: none;
}
#map-comp {
  background: #fff;
}
.step-3 #map-comp {
  background: #222;
}
.step-1 .map-comp-wrapper {
  cursor: url(cursor_pen.png), auto;
}
.step-1 .leaflet-interactive {
  pointer-events: none !important;
}
.map-comp-wrapper .mapbox-maplogo,
.map-comp-wrapper .leaflet-control-attribution {
  display: none;
}
.step-3 .leaflet-interactive {
  pointer-events: none !important;
}
.step-3 .map-comp-wrapper .mapbox-maplogo,
.step-3 .map-comp-wrapper .leaflet-control-attribution {
  display: inline-block;
}
.modechooser {
  position: absolute;
  left: 10px;
}
.modechooser .label-long {
  display: none;
}
.modechooser .icon {
  margin-left: -0.5em;
  margin-right: 0.25em;
  color: #d14f4f;
}
.tilechooser {
  position: absolute;
  right: 10px;
}
.map__loader {
  position: absolute;
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 1;
  z-index: 9999;
  left: 50%;
  margin-left: -20px;
  top: 50%;
  margin-top: -20px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 0 2px 2px rgba(0,0,0,0.12);
}
.pen-icon {
  opacity: 0;
}
.pen-icon img {
  width: 100%;
}
#map .leaflet-control-zoom {
  position: absolute;
  bottom: 1em;
  right: 1em;
  z-index: 900;
  width: 40px;
}
#map .leaflet-control-zoom button {
  padding: 0.634em 0;
}
#map .map__resultlabel {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  padding-left: 1em;
  top: -0.5em;
  line-height: 1;
  color: #5a5a5a;
}
#map .map__resultlabel:before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  background-color: #5a5a5a;
  border: 1px solid #fff;
  top: 0.5em;
  margin-top: -2px;
}
#map .map__resultlabel.left {
  text-align: right;
  left: -150px;
  padding-right: 0.75em;
  padding-left: 0;
}
#map .map__resultlabel.left:before {
  left: 100%;
  margin-left: -5px;
}
#map .map__resultlabel.label-0:before {
  display: none;
}
@media screen and (min-width: 375px) {
  .map-comp-wrapper {
    height: 450px;
  }
  .modechooser .label {
    display: none;
  }
  .modechooser .label-long {
    display: inline;
  }
}
@media screen and (min-width: 786px) {
  .map-comp-wrapper {
    height: 730px;
  }
}
.map__result-wrapper {
  position: absolute;
  bottom: 10px;
  z-index: 800;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.map__result-inner {
  display: flex;
  flex-flow: column;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  height: auto;
  animation: fadeIn 0.5s;
  background: rgba(255,255,255,0.9);
}
.map__score {
  border: 1px solid rgba(0,0,0,0.05);
  padding: 1em 20px;
  color: #222;
  border-radius: 2px 2px 0 0;
  line-height: 1.25;
  flex-grow: 1;
}
.map__score.bad {
  background: $bad;
}
.map__score.ok {
  background: $ok;
}
.map__score.good {
  background: $good;
}
.map__score-text {
  font-weight: 700;
  margin-bottom: 0.5em;
  width: 100%;
}
.map__score-comparison {
  margin-right: 0.25em;
}
.map__again {
  color: #4c80bc;
  cursor: pointer;
  white-space: nowrap;
}
.map__again:hover,
.map__again:active {
  color: #3a679b;
}
.map__sharer {
  display: flex;
  border-radius: 0 0 2px 2px;
  border: 1px solid #ddd;
  border-width: 0 1px 1px 1px;
  display: none;
}
.map__sharer-button {
  padding: 0.6em 0.5em 0.7em;
  cursor: pointer;
  width: 46%;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  background-color: #fff;
}
.map__sharer-button:first-child {
  border-right: 1px solid #ddd;
  width: 54%;
}
.map__sharer-button .icon {
  margin-right: 0.2em;
  color: #4864bb;
}
.map__sharer-button .icon-tw {
  margin-right: 0.3em;
  color: #5eaade;
}
.map__sharer-button:hover {
  background-color: #f9f9f9;
}
.map__sharer-button:active {
  box-shadow: 0 3px 7px rgba(0,0,0,0.1) inset;
}
.map__sharer a {
  color: #222;
}
.map__sharer a:hover {
  text-decoration: none;
  border-bottom: none;
}
.map__result-count {
  color: #777;
  font-size: 12px;
  text-align: right;
  width: 100%;
  max-width: 460px;
  padding-top: 5px;
}
@media screen and (min-width: 400px) {
  .map__result-wrapper {
    left: 7%;
    right: 7%;
  }
  .map__result-inner {
    font-size: 1.4rem;
  }
  .map__score {
    padding: 15px 20px;
  }
}
@media screen and (min-width: 500px) {
  .map__result-inner {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 640px) {
  .map__result-inner {
    max-width: 460px;
  }
}
@media screen and (min-width: 768px) {
  .map__result-inner {
    font-size: 1.5rem;
    height: auto;
  }
  .map__sharer-button {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 960px) {
  .map__result-inner {
    font-size: 1.6rem;
  }
  .map__sharer-button {
    font-size: 1.6rem;
  }
}
.mobileoverlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 900;
}
.mobileoverlay .startdraw {
  color: #fff;
  font-size: 1.3rem;
  background-color: rgba(209,79,79,0.8);
  box-shadow: none;
  border: 1px solid #d14f4f;
  top: 60px;
  position: relative;
}


/*# sourceMappingURL=bundle.css.map*/