/* 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.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(#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(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.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;
		}
	}
/*
! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none !important;
}:root{
	--height-header: 60px;
	--height-footer: 80px;

	--color-bg-main: #005eb8;
	/* --color-bg-secondary: #00ffff; */
	--color-bg-secondary: #00d2d2;
	--color-bg-main-light: #ebf6ff;
	/* --color-bg-main: #af8718; */
	--color-ui-primary: white;
	--color-ui-disabled: #91b2cc;

	--color-text-primary: black;
}

body {
	overflow-x: hidden;
	overflow-y: hidden;

	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
}

header {
	display: flex;
	position: fixed;
	height: var(--height-header);
	width: 100%;
	top: 0;
	z-index: 100;

	/* Flexbox */
	justify-content: center;	
	align-items: center;

	/* Colors and Effects */
	background-color: var(--color-bg-main);
	filter: drop-shadow(0 -5px 10px black);
}

footer {
	display: flex;
	position: fixed;
	height: var(--height-footer);
	width: 100%;
	bottom: 0;
	z-index: 100;

	/* Colors and Effects */
	background-color: var(--color-bg-main);
	filter: drop-shadow(0 5px 10px black)
}

main #map {
	display: block;
	height: calc(100% - var(--height-header) - var(--height-footer));
	width: 100%;
	position: fixed;
	top: var(--height-header);
	bottom: var(--height-footer);
	z-index: 90;
}
#map.background {
	filter: grayscale(100%);
}

* {
	scrollbar-width: none; /* Chrome, Gecko */
	-ms-overflow-style: none; /* Edge, IE */
}
::-webkit-scrollbar {
	display: none; /* Webkit */
}footer nav {
	height: 100%;
	width: 100%;
}

footer nav {
	/* Flexbox */
	display: flex;
	justify-content: center;	
	align-items: center;	
}

footer nav button {
	width: 60px;
	height: 60px;
	/* border: 1px solid white; */
	padding: 0;
	margin: 0 5px;

	/* Flexbox */
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
}
footer nav button span {
	font-family: 'Roboto Condensed';
}

footer nav button img {
	width: 55%;
}
footer nav button svg {
	width: 55%;
}


/* GPS and Location buttons */

.nav-btn-icon-focus path {
	fill: var(--color-ui-disabled);
}
.nav-btn-icon-focus + span {
	color: var(--color-ui-disabled);
}

/* GPS pending */
.nav-btn-icon-gps.btn-gps-pending path {
	fill: #ffc800;
}
.nav-btn-icon-gps.btn-gps-pending + span {
	color: #ffc800;
	font-weight: 700;
}
.nav-btn-icon-gps.btn-gps-pending {
	filter: drop-shadow(2px 2px 2px #00000077);
}

/* GPS active */
.nav-btn-icon-gps.btn-active path {
	fill: var(--color-bg-secondary);
}
.nav-btn-icon-gps.btn-active + span {
	color: var(--color-bg-secondary);
	font-weight: 700;
}
.nav-btn-icon-gps.btn-active {
	filter: drop-shadow(2px 2px 2px #00000077);
}

/* Focus on user location */
.nav-btn-icon-focus.btn-active path {
	fill: white;
}
.nav-btn-icon-focus.btn-active + span{
	color: white;
}


/* #nav-btn-icon-list {
	width: 60%;
} */

footer button span {
	/* font-size: 0.6rem; */
	font-size: 0.9rem;
	color: var(--color-ui-primary);
	margin-top: 5px;
}

.btn-footer .secondary {
	width: 20px;
}

/* Position language indicator flag */
/* Need to position parent element as relative */
#footerNavBtnInfo {
	position: relative;
}
#nav-btn-icon-info-language-indicator {
	/* display: block; */
	position: absolute;
	width: 14px;
	height: 14px;
	top: 0px;
	right: 10px;
	border: 1px solid black;
}


/* UI-Typography */

header {
	font-family: 'Roboto';
}

footer {
	font-family: 'Roboto Condensed';
}

footer nav {
	letter-spacing: 0.025rem;
}


/* Close Button */

#cp.visible > #cp-btn-close {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 10px;
	bottom: 90px;
	width: 50px;
	height: 50px;
	background-color: var(--color-bg-main);
	border-radius: 3px;
	transition: ease-in 0.2s;
}
#cp-btn-close img {
	width: 100%;
	height: 100%;
	border-radius: 3px;
	transition: ease-in 0.2s;
}

/* Change Text Size Button */

#cp.visible > #btn-text-size {
	position: fixed;
	left: 10px;
	bottom: 90px;
	background-color: var(--color-bg-main);
	border-radius: 3px;
	transition: ease-in 0.2s;
}
#btn-text-size img {
	width: 50px;
	height: 50px;
	transition: ease-in 0.2s;
}

/* Language Selector Button */

#cp.visible > #btn-language-selector {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	left: 70px;
	bottom: 90px;
	width: 50px;
	height: 50px;
	background-color: var(--color-bg-main);
	border-radius: 3px;
	transition: ease-in 0.2s;
}
#btn-language-selector img {
	width: 35px;
	height: 35px;
	border: 1px solid white;
	transition: ease-in 0.2s;
}

/* Scroll-to-top Button */

#cp.visible > #btn-scroll-to-top {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 70px;
	bottom: 90px;
	width: 50px;
	height: 50px;
	background-color: var(--color-bg-main);
	border-radius: 3px;
	transition: ease-in 0.2s;
}
#btn-scroll-to-top img {
	width: 100%;
	height: 100%;
	transition: ease-in 0.2s;
}


/* Notification Pane */

#notification-pane {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	position: relative;
	z-index: 99;	
	top: var(--height-header);
	height: auto;
	width: auto;
	margin: auto;
	padding: 0.5rem;
	background-color: white;
	text-align: center;
}
#notification-pane {
	font-size: 1rem;
	font-weight: 600;
	filter: drop-shadow(0 -5px 10px black);
}
#notification-pane.hidden {
	display: none;
}
#notification-pane-message-instruction {
	font-size: 0.9rem;
	font-weight: 400;
	font-style: italic;
	margin-top: 0.5rem;
	margin-bottom: 0.2rem;
}

#formula-logo-white-on-map {
	display: flex;
	position: fixed;
	height: 50px;
	width: auto;
	left: 10px;
	bottom: 95px;
	z-index: 999;
	background-color: var(--color-bg-main);
}
#formula-logo-on-map {
	display: flex;
	position: fixed;
	height: 50px;
	width: auto;
	left: 10px;
	bottom: 90px;
	z-index: 98;
}

.fadeInOnLoad:not(.show) {
	opacity: 0;
}

.fadeInOnLoad.show {
	animation: fadeIn 1s;
	-webkit-animation: fadeIn 1s;
	-moz-animation: fadeIn 1s;
	-o-animation: fadeIn 1s;
	-ms-animation: fadeIn 1s;
}

@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
  }header {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	padding-left: 0.8rem;
	padding-right: 1rem;
}

header img {
	height: 60%;
	width: auto;
	margin-right: 1rem;
}

header hgroup {
	margin-top: 0.3rem;
	line-height: 1.3rem;
}

header hgroup h2 {
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.05rem;
	color: var(--color-ui-primary);
}

header hgroup p {
	font-size: 1rem;
	font-style: italic;
	color: var(--color-ui-primary);
}#list + #map {
	filter: grayscale(100%);
}

#list {
	display: block;
	height: calc(70% - 120px);
	width: 100%;
	position: fixed;
	/* top: calc(60% - 120px); */
	bottom: var(--height-footer);
	z-index: 98;
	/* position: absolute; */
	background-color: white;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	transition: 0.2;
	filter: drop-shadow(0 5px 10px black);
}

#list > div {
	/* margin: 1rem; */
	position: relative;
}

#list {
	overflow-y: auto;
}
#lp-list {
	overflow-y: scroll;
}

/* LIST PANE HEADER */
#lp-header {
	display: grid;
	grid-template-columns: 1fr 35px;
	align-items: center;
	/* top: 10px; */
	width: auto;
	margin: 0;
	margin-bottom: 10px;
	overflow-y: hidden;

	position: sticky;
	top: 0;
	background-color: white;
	padding: 1rem;
	padding-bottom: 0.5rem;
	/* filter: drop-shadow(0 -5px 10px black); */
	box-shadow: 0px 15px 18px 3px white;
}
#lp-header h2 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #005EB8;
}
#lp-btn-close img {
	width: 35px;
	height: 35px;
	border-radius: 3px;
}

/* LIST PANE LIST */
#lp-list-ul {
	overflow-y: scroll;
	margin: 0 1rem;
	margin-top: 0.2rem;
}

#lp-list-ul li {
	border: 1px solid #005EB8;
	border-radius: 4px;
	background-color: var(--color-bg-main-light);
	margin: 8px 0;
}

#lp-list-ul li:first-child {
	margin-bottom: 1rem;
}

#lp-list-ul li:last-child {
	margin-bottom: 1.5rem;
}

/* Hier besser über id ansprechen? */
#lp-list-ul li a {
	display: grid;
	grid-template-columns: 2rem auto;
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 1.3;
	margin: 7px 5px;
}

.list-item-number {
	color: var(--color-bg-main);
	font-weight: 600;
}

#lp-list-ul li a span {
	color: var(--color-bg-main);
	font-weight: 600;
}

.fadeListOnLoad:not(.show-list) {
	opacity: 0;
}

.fadeListOnLoad.show-list {
	animation: fadeInList 0.3s;
	-webkit-animation: fadeInList 0.3s;
	-moz-animation: fadeInList 0.3s;
	-o-animation: fadeInList 0.3s;
	-ms-animation: fadeInList 0.3s;
}

@keyframes fadeInList {
	0% { opacity: 0; }
	100% { opacity: 1; }
  }



/* CONTENT */

#cp {
	display: block;
	height: calc(100% - var(--height-header) - var(--height-footer));
	width: 100%;
	position: fixed;
	top: var(--height-header);
	left: 100%;
	z-index: 99;
	/* position: absolute; */
	background-color: white;
	transition: 0.2;
}

#cp.visible {
	left: 0;
	transition: 0.2s;
	overflow-y: scroll;
	overflow-x: hidden;
}

@media screen and (min-width: 640px) {
	#cp {
		width: 49vw;
		/* border-left: 2px solid var(--color-bg-main); */
	}
	#cp.visible {
		left: 51%;
	}

	#cp.visible > #btn-text-size {
		left: calc(51% + 10px);
	}
	#cp.visible > #btn-language-selector {
		left: calc(51% + 70px);
	}

	#list {
		width: 49vw;
		left: 0;
	}
}
@media screen and (min-width: 1024px) {
	#cp {
		width: 40vw;
	}
	#cp.visible {
		left: 60%;
	}

	#cp.visible > #btn-text-size {
		left: calc(60% + 10px);
	}
	#cp.visible > #btn-language-selector {
		left: calc(60% + 70px);
	}

	#list {
		/* width: clamp(40vw, 500px, 500px); */
		width: 40vw;
		height: 50%;
		left: 20px;
	}
}

#cp div {
	margin: 0.5rem;
}#content {
	height: calc(100% - var(--height-header) - var(--height-footer));
	/* overflow-y: auto; */
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	padding-bottom: 80px;
}
#content > h1 {
	font-family: 'Roboto', sans-serif;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--color-bg-main);
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	text-wrap: balance;
	text-wrap: pretty;
	hyphens: auto;
}
#content hgroup h1 {
	font-family: 'Roboto', sans-serif;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.8rem;
	color: var(--color-bg-main);
	margin-top: 1.5rem;
	margin-bottom: 0.6rem;
	text-wrap: balance;
	text-wrap: pretty;
	hyphens: auto;
}
#content hgroup p {
	font-family: 'Roboto', sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--color-bg-main);
	line-height: 1.3;
	/* margin-top: 0.5rem; */
	margin-bottom: 1rem;
	text-wrap: balance;
	text-wrap: pretty;
	hyphens: auto;
}
#content h2 {
	font-family: 'Roboto', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.8rem;
	color: var(--color-bg-main);
	margin-top: 1.2rem;
	margin-bottom: 0.5rem;
	text-wrap: balance;
	text-wrap: pretty;
	hyphens: auto;
}
#content > p {
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	text-wrap: balance;
	text-wrap: pretty;
	hyphens: auto;
}
#content > p {
	margin-bottom: 0.4rem;
}
#content a {
	text-decoration: underline 4px #00d2d26d;
	text-underline-offset: 0.25rem;
}
#content em {
	font-family: 'Roboto', sans-serif;
	font-style: italic;
}
#content figure {
	margin-top: 1rem;
	margin-bottom: 1rem;
}
#content figure img {
	width: 100%;
}
#content figcaption {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 90%;
	/* color: var(--color-bg-main); */
	margin-top: 0.4rem;
	line-height: 1.1rem;
	text-wrap: balance;
	text-wrap: pretty;
	hyphens: auto;
}
#content > p:last-child {
	padding-bottom: 80px;
}

/* Large text */
#content.large h1 {
	font-size: 1.8rem;
}
#content.large hgroup h1 {
	font-size: 1.8rem;
	line-height: 2.1rem;
}
#content.large hgroup p {
	font-size: 1.3rem;
	line-height: 1.3;
}
#content.large h2 {
	font-size: 1.5rem;
}
#content.large > p {
	font-size: 1.25rem;
	line-height: 1.4;
}
#content.large figure {
	margin-top: 1.3rem;
	margin-bottom: 1.3rem;
}
#content.large figcaption {
	font-size: 1.1rem;
	margin-top: 0.4rem;
	line-height: 1.45rem;
}
#content.large a {
	text-decoration: underline 4px #00d2d26d;
	text-underline-offset: 0.3rem;
}

/* Boxes */
details {
	font-family: 'Roboto', sans-serif;
	border: 2px solid var(--color-bg-main);
	border-radius: 5px;
	/* padding: 0.5rem 1rem; */
	margin-top: 1rem;
	margin-bottom: 1rem;
}
details summary {
	font-family: 'Roboto', sans-serif;
	background-color: var(--color-bg-main-light);
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	padding: 0.5rem;
}
details > summary {
	list-style: none;
}
details > summary::-webkit-details-marker {
	display: none;
}
details[open] > summary {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom: 2px solid var(--color-bg-main);
}
details summary h3 {
	font-family: 'Roboto', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--color-bg-main);
}
details summary span {
	font-family: 'Roboto', sans-serif;
	font-style: italic;
}
details[open] > summary span {
	font-family: 'Roboto', sans-serif;
	display: none;
}
details .content {
	padding: 0.5rem 0.5rem;
}
details p {
	font-family: 'Roboto', sans-serif;
}
details figcaption {
	font-family: 'Roboto', sans-serif;
}
#content.large .details-content {
	font-size: 1.25rem;
	line-height: 1.4;
}.gipspfad-icon a div span {
	color: var(--color-bg-main);
	font-size: 1rem;
	font-weight: 700;
	transition: linear 0.2s;
	/* margin-top: 2px; */
}

/* TODO: Der klickbare htmx-Link ist nach rechts-unten verschoben. Warum? */
.gipspfad-icon {
	margin-left: -15px;
	margin-top: -15px;
}

.gipspfad-icon a div {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 3px solid var(--color-bg-main);
	background-color: #ffffffCC;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	transition: linear 0.2s;
	z-index: 99 !important;
}

/* Make icons bigger at zoom level 17 */
.zoom-level-17 .gipspfad-icon {
	margin-left: -15px;
	margin-top: -15px;
}
.zoom-level-17 .gipspfad-icon a div {
	width: 45px;
	height: 45px;
	border: 4px solid var(--color-bg-main);
	transition: linear 0.2s;
	transform: translate(-7.5px, -7.5px);
}
.zoom-level-17 .gipspfad-icon a div span {
	font-size: 1.45rem;
	transition: linear 0.2s;
}
.zoom-level-17 .gipspfad-icon a {
	transform: translate(-7.5px, -7.5px);
}


/* .zoom-level-17 .gipspfad-icon.active a div { */
	/* border: 5px solid var(--color-bg-secondary); */
	/* filter: drop-shadow(0px 0px 10px var(--color-bg-secondary)); */
	/* width: 60px;
	height: 60px;
	transform: translate(-15px,-15px);
}
.zoom-level-17 .gipspfad-icon.active a {
	transform: translate(-15px,-15px);
	margin-left: 0;
	margin-right: 0;
} */


/* WARNINGS */
.warning-icon a div {
	display: flex;
	justify-content: center;
	align-items: center;
	/* border: 3px solid var(--color-bg-main); */
	/* background-color: #ffffffCC; */
	width: 30px;
	height: 30px;
	/* border-radius: 50%; */
}

/* Warning level 1 (highest priority) */
#map.warnings-visible .warning-icon.warning-level-1 a div {
	width: 40px;
	height: 40px;
	transform: translate(-5px, -5px);
}
#map.warnings-visible .warning-icon.warning-level-1 a div img {
	width: 40px;
	height: 40px;
}

/* Warning level 2 */
#map.warnings-visible .warning-icon.warning-level-2 a div {
	width: 40px;
	height: 40px;
	transform: translate(-5px, -5px);
}
#map.warnings-visible .warning-icon.warning-level-2 a div img {
	width: 40px;
	height: 40px;
}

/* Warning level 3 (lowest priority) */
#map.warnings-visible .warning-icon.warning-level-3 a div {
	width: 40px;
	height: 40px;
	transform: translate(-5px, -5px);
}
#map.warnings-visible .warning-icon.warning-level-3 a div img {
	width: 40px;
	height: 40px;
}

/* Show/hide warning icons based on zoom level and classes */
#map:not(.warnings-visible) .warning-icon a div {
	display: none;
}
#map:not(.warnings-visible.show-warnings-level-1) .warning-icon.warning-level-1 a div {
	display: none;
}
#map:not(.warnings-visible.show-warnings-level-2) .warning-icon.warning-level-2 a div {
	display: none;
}
#map:not(.warnings-visible.show-warnings-level-3) .warning-icon.warning-level-3 a div {
	display: none;
}


/* Icon of user position */
.leaflet-my-position-icon {
	width: 30px;
	height: 30px;
	border: 4px solid #ff0000;
	background-color: #ff000072;
	border-radius: 50%;
	filter: drop-shadow(0 0 4px #ff000072);
	z-index: 98 !important;
}

/* .zoom-level-15 .leaflet-my-position-icon {
	width: 40px;
	height: 40px;
	transform: translate(-30px, -30px)!important;
}

.zoom-level-16 .leaflet-my-position-icon {
	width: 30px;
	height: 30px;
} */

.leaflet-tile-pane {
	opacity: 60%;
}

.leaflet-container {
	font-family: 'Roboto', sans-serif !important;
}


/* Overriding the generated z-indexes from leaflet */
/* Prevent the my-position-icon to be displayed above the icons */
.leaflet-marker-icon.gipspfad-icon.leaflet-zoom-animated.leaflet-interactive {
    z-index: 2000 !important;
}

.leaflet-marker-icon.warning-icon.warning-level-1.leaflet-zoom-animated.leaflet-interactive {
	z-index: 1999 !important;
}

.leaflet-marker-icon.warning-icon.warning-level-2.leaflet-zoom-animated.leaflet-interactive {
	z-index: 1998 !important;
}

.leaflet-marker-icon.warning-icon.warning-level-3.leaflet-zoom-animated.leaflet-interactive {
	z-index: 1997 !important;
}#impressum div {
	margin: 0rem;
}

h3:not(summary > h3) {
	font-family: 'Roboto', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.5rem;
	color: var(--color-bg-main);
	margin-top: 1.2rem;
	margin-bottom: 0.5rem;
	text-wrap: balance;
	text-wrap: pretty;
	hyphens: auto;
}

h4 {
	font-family: 'Roboto', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.5rem;
	color: var(--color-bg-main);
	margin-top: 1.2rem;
	margin-bottom: 0.5rem;
	text-wrap: balance;
	text-wrap: pretty;
	hyphens: auto;
}

.address {
	line-height: 1rem !important;
}

ul li {
	list-style: circle;
}

#content.large h3 {
	font-size: 1.3rem;
	line-height: 1.7rem;
}#cookie-banner {
	background-color: white;
	position: relative;
	top: 100px;
	width: clamp(300px, 300px, 500px);
	margin: auto;
	z-index: 98;
	padding: 20px;
	display: flex;
	justify-content: center;
	/* border: 2px solid var(--color-bg-main); */
	border-radius: 5px;

}

#cb-header-heading {
	color: var(--color-bg-main);
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.4rem;
	margin-bottom: 0.5rem;
}

#cb-btn-confirm {
	border: 2px solid var(--color-bg-main);
	border-radius: 3px;
	background-color: var(--color-bg-main);
	padding: 0.5rem 1rem;
	margin-top: 0.5rem;
	color: white;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	letter-spacing: 0.05rem;
}

#cb-content {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
}

#map.blur {
	filter: blur(5px) grayscale(100%);
}

#cb-content > p {
	margin-bottom: 0.5rem;
}/* latin */
/* normal */
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	/* src: url(https://fonts.gstatic.com/s/roboto/v32/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2'); */
	src: url(https://gipspfad.de/fonts/Roboto-Regular.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	/* src: url(https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format('woff2'); */
	src: url(https://gipspfad.de/fonts/Roboto-Bold.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
/* italic */
@font-face {
	font-family: 'Roboto';
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	/* src: url(https://fonts.gstatic.com/s/roboto/v32/KFOkCnqEu92Fr1Mu51xIIzI.woff2) format('woff2'); */
	src: url(https://gipspfad.de/fonts/Roboto-Italic.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
/* normal */
@font-face {
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	/* src: url(https://fonts.gstatic.com/s/robotocondensed/v27/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.woff2) format('woff2'); */
	src: url(https://gipspfad.de/fonts/Roboto-Condensed.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}