/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);
	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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

:root{font-family:Arial,Helvetica,sans-serif;color:#243d33;background:#f5f2e9;font-synthesis:none;font-weight:400;--paper:#f5f2e9;--green:#203e32;--ink:#243d33;--muted:#647167;--border:#dbdfd2;--warm:#b37843}*{box-sizing:border-box}body{margin:0}button,input{font:inherit}button{cursor:pointer;color:inherit}button:disabled{cursor:default;opacity:.55}button,a{-webkit-tap-highlight-color:transparent}button:focus-visible,a:focus-visible{outline:3px solid #ad743d;outline-offset:4px}button{touch-action:manipulation}a{color:inherit;text-underline-offset:3px}p{line-height:1.65}h1,h2,h3,p{margin-top:0}h1,h2,h3{font-family:Georgia,'Times New Roman',serif;font-weight:400;letter-spacing:-.035em}h1{font-size:clamp(2.3rem,4vw,3.5rem);line-height:1.08;margin-bottom:18px}h2{font-size:1.9rem;line-height:1.15}h3{font-size:1.45rem;line-height:1.2}small{font-size:.8rem;line-height:1.5}svg{flex-shrink:0}button svg{pointer-events:none}.app-shell{max-width:1440px;margin:0 auto;padding:0 48px}.site-header{height:104px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid var(--border);gap:24px}.brand{display:flex;align-items:center;gap:12px;border:0;background:none;padding:0;text-align:left;font:2rem Georgia,serif;letter-spacing:-.04em}.brand-mark{width:43px;height:49px;background:var(--green);color:var(--paper);border-radius:22px 22px 7px 7px;display:grid;place-items:center}.brand-sub{display:block;font:9px Arial,sans-serif;letter-spacing:.22em;margin-top:6px}.desktop-nav{display:flex;gap:10px}.desktop-nav button{display:flex;gap:9px;align-items:center;border:0;background:none;padding:15px 22px;border-radius:30px;font-size:.9rem}.desktop-nav button[aria-current=page]{background:#e5e9dd;font-weight:600}.collection-counter{display:flex;align-items:center;gap:12px;border:1px solid var(--border);background:none;min-height:43px;padding:8px 15px;border-radius:30px;font-size:.9rem}.muted{color:var(--muted)}main{min-height:calc(100vh - 200px)}.page-heading{display:flex;justify-content:space-between;align-items:center;gap:36px;padding:42px 0 35px}.page-heading p{color:var(--muted);margin:0;font-size:1rem}.eyebrow{font:600 .66rem/1.5 Arial,sans-serif;letter-spacing:.17em;display:flex;align-items:center;gap:6px;margin-bottom:12px}.page-heading .eyebrow{color:#737d64}.mobile-break{display:none}.button{display:inline-flex;gap:10px;align-items:center;justify-content:center;min-height:49px;padding:14px 21px;border-radius:6px;border:1px solid transparent;font-size:.9rem;font-weight:600;text-decoration:none;line-height:1.3;transition:background .15s,transform .15s}.button:hover:not(:disabled){transform:translateY(-1px)}.primary{background:var(--green);color:#fffdf5}.primary:hover{background:#315443}.outlined{border-color:#9fae9d;background:transparent}.outlined:hover{background:#e7ebdf}.soft{background:#e5e9dd}.text-button{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:44px;background:none;border:0;padding:8px 0;font-size:.9rem}.explore-panel{display:grid;grid-template-columns:minmax(0,1.5fr) minmax(320px,1fr);border:1px solid #d8ded0;border-radius:12px;overflow:hidden;background:#fcfaf4}.map-panel{min-width:0;background:#e6eadc}.map-heading{height:53px;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:0 24px;border-bottom:1px solid #d8ded0;background:#edf0e5;position:relative;z-index:1}.map-heading>span:first-child{display:flex;align-items:center;gap:8px;font-size:.66rem;font-weight:bold;letter-spacing:.11em}.small-label{font-size:.79rem;color:var(--muted)}.map-wrap{height:450px;position:relative}.habitat-map{height:100%;background:#e4e9d9;font-family:Arial,sans-serif;z-index:0}.map-compass{position:absolute;top:22px;right:23px;color:#36584e;font-size:.85rem;line-height:1.8;text-align:center;pointer-events:none}.map-caption{position:absolute;left:17px;bottom:26px;max-width:65%;font-size:.65rem;color:#506451;background:#f5f2e9dd;padding:7px 9px;border-radius:3px;pointer-events:none}.map-lake-label{font:italic 1.35rem Georgia,serif;color:#527b7d;white-space:nowrap;transform:rotate(-25deg)}.map-city-label{font-size:.72rem;color:#78816b;font-weight:bold;letter-spacing:.24em}.habitat-marker{display:flex;align-items:center;justify-content:center;background:#f9f8ef;border:1px solid #7e9275;box-shadow:0 3px 10px #283f2820;border-radius:30px;font-size:.8rem;font-weight:600;color:#294936}.habitat-marker:hover{background:#203e32;color:white}.leaflet-control-attribution{font-size:9px!important;background:#f5f2e9c9!important}.leaflet-control-zoom{border:1px solid #93a38d!important;box-shadow:none!important}.leaflet-control-zoom a{background:#faf9f0!important;color:#284a35!important;width:38px!important;height:38px!important;line-height:38px!important}.habitat-panel{padding:26px 28px 14px;border-left:1px solid #d8ded0}.habitat-tabs{display:flex;gap:7px;margin-bottom:20px}.habitat-tabs button{flex:1;min-height:43px;padding:10px 9px;border:1px solid #dfe2d6;border-radius:30px;background:none;font-size:.8rem}.habitat-tabs button[aria-pressed=true]{color:#fff;background:var(--green);border-color:var(--green)}.habitat-description{position:relative;padding-left:52px;margin-bottom:15px}.round-icon{display:inline-grid;place-items:center;background:#e9eddf;width:44px;height:44px;border-radius:50%;color:#58724c}.habitat-description .round-icon{position:absolute;left:0;top:0}.habitat-description h2{font-size:1.45rem;letter-spacing:-.025em;margin-bottom:7px}.habitat-description p{font-size:.84rem;color:var(--muted);line-height:1.45;margin:0}.bird-row{display:flex;align-items:center;gap:13px;width:100%;padding:10px 0;background:none;border:0;border-bottom:1px solid #e8e9e0;text-align:left;min-height:65px}.bird-row>img{width:45px;height:45px;border-radius:50%;object-fit:cover}.bird-row>span{flex:1}.bird-row strong{display:block;font-weight:500;font-size:.89rem}.bird-row small{display:block;font-size:.7rem;color:var(--muted);margin-top:4px}.bird-row>svg{color:#85917c}.bird-row:hover strong{text-decoration:underline;text-underline-offset:3px}.habitat-note{font-size:.69rem;color:#6d7869;line-height:1.45;margin:14px 0 0}.meet-section{padding:38px 0 32px}.section-heading{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-bottom:22px}.section-heading h2{font-size:1.9rem;margin:0}.section-heading .eyebrow{font-size:.6rem;margin-bottom:8px}.bird-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.bird-tile{padding:0;border:1px solid #d9ded0;border-radius:8px;background:#fcfaf4;text-align:left;overflow:hidden;transition:box-shadow .2s,transform .2s}.bird-tile:hover{transform:translateY(-3px);box-shadow:0 8px 25px #2737210c}.tile-photo{height:210px;position:relative;overflow:hidden}.tile-photo img{width:100%;height:100%;object-fit:cover;transition:transform .4s}.bird-tile:hover .tile-photo img{transform:scale(1.03)}.specimen-number{position:absolute;top:13px;left:14px;width:31px;height:31px;display:grid;place-items:center;background:#f6f2e6e8;color:#4a5a46;border-radius:50%;font:italic .83rem Georgia,serif}.photo-badge{position:absolute;bottom:12px;left:12px;display:flex;align-items:center;gap:6px;background:#f6f2e6ed;padding:6px 9px;border-radius:4px;font-size:.65rem}.tile-body{padding:22px 22px 17px}.tile-body .eyebrow{font-size:.57rem;color:#7b876c;margin-bottom:8px}.tile-body h3{margin-bottom:21px}.tile-footer{display:flex;justify-content:space-between;align-items:center;border-top:1px solid #e0e4d7;padding-top:13px;font-size:.78rem;color:#59694d}.site-footer{display:flex;align-items:center;justify-content:space-between;gap:18px;min-height:90px;border-top:1px solid var(--border);color:#707d6d;font-size:.76rem}.site-footer>span,.site-footer button{display:flex;align-items:center;gap:9px}.site-footer button{border:0;background:none;min-height:44px;font-size:.76rem}.mobile-nav{display:none}.listening-home{display:grid;grid-template-columns:1.3fr 1fr;gap:24px;margin-bottom:50px}.lesson-intro,.practice-panel{padding:36px;border-radius:10px;border:1px solid var(--border);background:#fcfaf4}.lesson-intro>.round-icon{margin-bottom:20px}.lesson-intro h2{font-size:2.3rem}.lesson-intro>p,.practice-panel>p{color:var(--muted);max-width:480px}.lesson-intro>small{display:block;margin-top:13px;color:var(--muted)}.lesson-portraits{display:flex;gap:20px;margin:26px 0}.lesson-portraits>div{flex:1;max-width:130px}.lesson-portraits img{width:80px;height:80px;border-radius:50%;object-fit:cover}.lesson-portraits span{display:block;font-size:.75rem;line-height:1.4;margin-top:8px}.practice-panel{background:#e8eddf;display:flex;flex-direction:column;align-items:flex-start;justify-content:center}.practice-panel>svg{margin-bottom:24px}.practice-panel .button{margin-bottom:12px}.quiet-note{display:flex;align-items:flex-start;gap:10px;border-top:1px solid #ccd5c2;padding-top:20px;margin-top:28px;color:#5e6e55;font-size:.82rem;line-height:1.6}.session-shell{max-width:1000px;margin:24px auto 50px}.session-topline{display:flex;justify-content:space-between;align-items:center;margin-top:24px;font-size:.8rem}.session-topline .eyebrow{margin:0}.step-track{display:flex;gap:6px;margin:15px 0 26px}.step-track span{flex:1;height:4px;background:#dfe5d5;border-radius:2px}.step-track span.filled{background:#5c7958}.lesson-card{display:grid;grid-template-columns:1fr 1fr;background:#fcfaf4;border:1px solid var(--border);border-radius:12px;overflow:hidden}.lesson-image{position:relative;min-height:530px;background:#dfe4d2}.lesson-image>img{width:100%;height:100%;object-fit:cover;position:absolute}.lesson-image>.credit{position:absolute;bottom:0;background:#f8f5ecee;width:100%;padding:10px;font-size:.65rem}.lesson-copy{padding:35px}.lesson-copy h1{font-size:2.5rem}.scientific{font:italic 1rem Georgia,serif;color:#7a806f;margin-bottom:25px}.listening-cue{display:flex;align-items:flex-start;gap:14px;background:#eef1e7;padding:18px;border-left:2px solid #809775;border-radius:0 5px 5px 0;margin:22px 0}.listening-cue>svg{margin-top:4px;color:#69835a}.listening-cue p{margin:0;font-size:.93rem}.listening-cue .eyebrow{margin-bottom:6px;font-size:.61rem}.lesson-copy>.button,.recording-list .button{width:100%}.credit{display:block;color:#727969;font-size:.66rem;line-height:1.55;margin:8px 0;overflow-wrap:anywhere}.field-fact{display:flex;align-items:flex-start;gap:10px;font-size:.86rem;margin:24px 0;color:#69745e}.next-lesson{margin-top:4px}.lesson-copy>small{display:block;text-align:center;margin-top:10px;color:var(--muted)}.quiz-shell{max-width:680px}.quiz-card{padding:34px 44px;background:#fcfaf4;border:1px solid var(--border);border-radius:12px;text-align:center}.quiz-card>.eyebrow{justify-content:center}.quiz-card h1{font-size:2.6rem;margin-bottom:12px}.quiz-card>p{color:var(--muted);font-size:.94rem}.sound-disc{width:126px;height:126px;margin:24px auto;display:grid;place-items:center;background:#e9eedf;border-radius:50%;border:1px solid #d7dfcb;box-shadow:0 0 0 12px #f1f3ea;color:#57724c}.sound-disc.is-playing svg{animation:listening 1s ease-in-out infinite alternate}@keyframes listening{to{transform:scaleY(.6);opacity:.65}}.sound-status{font-size:.75rem;color:var(--muted);min-height:42px;padding:14px 0}.answer-options{display:grid;gap:10px;margin-top:6px}.answer-option{min-height:58px;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:15px 18px;border-radius:6px;border:1px solid #cbd4c2;background:#fffefa;text-align:left;font-size:.95rem}.answer-option:disabled{opacity:1}.answer-option:disabled:not(.correct):not(.incorrect){color:#73816f}.answer-option:hover:not(:disabled){background:#edf2e4;border-color:#698858}.option-circle{height:18px;width:18px;border:1px solid #a3b299;border-radius:50%}.answer-option.correct{background:#e5eddb;border-color:#6d895a;color:#294c25}.answer-option.incorrect{background:#f1e4d9;border-color:#b58b68}.hint-button{margin-top:13px;color:#748260;font-size:.82rem;text-decoration:underline;text-underline-offset:4px}.hint{background:#f1eade;padding:16px;border-radius:5px;font-size:.85rem;text-align:left}.hint small{display:block;margin-top:8px;color:var(--muted)}.answer-feedback{border-top:1px solid var(--border);margin-top:20px;padding-top:24px;text-align:left}.feedback-heading{display:flex;gap:15px;align-items:center}.feedback-heading img{width:64px;height:64px;border-radius:50%;object-fit:cover}.feedback-heading .eyebrow{font-size:.62rem;margin-bottom:5px}.feedback-heading h2{font-size:1.55rem;margin:0}.answer-feedback>p{margin-top:16px;font-size:.94rem}.answer-feedback>.button{width:100%;margin-top:13px}.result-card{text-align:center;max-width:740px;padding:30px}.result-seal{display:grid;place-items:center;width:90px;height:90px;margin:0 auto 24px;border:1px solid #93a17b;border-radius:50%;background:#e9eddf;box-shadow:0 0 0 7px #f5f2e9,0 0 0 8px #c7cdb8}.result-card>.eyebrow{justify-content:center}.result-card>p{color:var(--muted);max-width:530px;margin:0 auto 24px}.result-birds{display:flex;justify-content:center;flex-wrap:wrap;gap:22px;margin:35px 0}.result-birds>div{width:135px}.result-birds img{width:84px;height:84px;object-fit:cover;border-radius:50%;margin-bottom:12px}.result-birds strong{display:block;font-size:.83rem;font-weight:500;line-height:1.4}.result-birds small{display:block;color:#687e56;margin-top:5px}.return-note{font-size:.87rem}.result-card>.text-button{display:flex;margin:14px auto}.journal-summary{display:flex;align-items:center;gap:40px;background:#e9eddf;border:1px solid #d8dfcd;border-radius:10px;padding:27px 32px;margin-bottom:30px}.journal-summary>div{flex-shrink:0}.journal-summary strong{display:block;font:2.5rem Georgia,serif}.journal-summary strong small{font:1.3rem Georgia,serif;color:#88927b}.journal-summary span{font-size:.77rem;color:var(--muted);display:block;margin-top:6px}.journal-summary>p{border-left:1px solid #cbd5bf;padding-left:32px;color:#67775c;font-size:.84rem;margin:0;margin-left:auto;max-width:300px}.journal-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:30px}.journal-bird{display:flex;align-items:center;gap:20px;text-align:left;border:1px solid var(--border);border-radius:8px;background:#fcfaf4;overflow:hidden;padding:0;position:relative;min-height:177px}.journal-photo{width:150px;align-self:stretch;position:relative;flex-shrink:0}.journal-photo img{width:100%;height:100%;object-fit:cover;position:absolute}.undiscovered .journal-photo img{filter:grayscale(1);opacity:.7}.journal-bird-copy{padding:22px 24px 22px 0}.journal-bird-copy .eyebrow{font-size:.56rem;margin-bottom:6px}.journal-bird h2{font-size:1.5rem;margin-bottom:7px}.journal-bird .scientific{font-size:.8rem;margin-bottom:17px}.knowledge-marks{display:flex;flex-wrap:wrap;gap:8px}.knowledge-marks span{font-size:.66rem;display:flex;gap:5px;align-items:center;border:1px solid #e1e5d8;border-radius:4px;padding:6px 7px;color:#7b826e}.knowledge-marks .earned{background:#edf1e4;color:#4f6b3f;border-color:#cdd8bf}.journal-bird-copy>small{display:block;font-size:.67rem;color:var(--muted);margin-top:10px}.journal-arrow{position:absolute;right:10px;color:#91a084}.backup-panel{display:flex;justify-content:space-between;gap:25px;flex-wrap:wrap;border-top:1px solid var(--border);padding:30px 0 40px}.backup-panel>div:first-child{max-width:530px}.backup-panel h3{margin-bottom:8px}.backup-panel p{font-size:.85rem;color:var(--muted);margin:0}.backup-actions{display:flex;gap:10px;align-items:center}.bird-dialog{padding:0;border:1px solid #c6cebb;border-radius:14px;width:min(960px,95vw);max-height:90dvh;background:var(--paper);color:var(--ink);overscroll-behavior:contain}.bird-dialog::backdrop{background:#183427a8;backdrop-filter:blur(3px)}.close-dialog{position:absolute;right:15px;top:15px;border:1px solid #d5dccd;background:#fcfaf4;display:grid;place-items:center;width:44px;height:44px;border-radius:50%;z-index:5;box-shadow:0 2px 8px #0001}.bird-detail{display:grid;grid-template-columns:1fr 1.1fr}.detail-image{min-width:0;position:sticky;top:0;height:min(80dvh,750px);background:#e0e6d4}.detail-image>img{width:100%;height:100%;object-fit:cover}.detail-image-label{position:absolute;top:25px;left:20px;background:#f8f5eee8;padding:9px 11px;font-size:.59rem;letter-spacing:.12em}.detail-image>.credit{position:absolute;bottom:0;padding:12px;background:#f5f2e9ed;width:100%;margin:0}.detail-copy{padding:40px 30px}.detail-copy>h1{font-size:2.6rem;margin-top:12px}.detail-copy>.eyebrow{font-size:.6rem;padding-right:32px}.detail-copy .scientific{margin-bottom:20px}.recording-list{display:grid;gap:9px}.audio-button{border-color:#9cab90;background:transparent}.detail-fact{display:flex;gap:12px;border-top:1px solid var(--border);border-bottom:1px solid var(--border);margin:23px 0;padding:20px 0;color:#6c795c}.detail-fact>svg{margin-top:4px}.detail-fact p{font:italic 1.1rem/1.55 Georgia,serif;margin:0}.bird-facts>div{margin-bottom:18px}.bird-facts dt{font-size:.65rem;text-transform:uppercase;letter-spacing:.1em;font-weight:600;color:#788367;margin-bottom:6px}.bird-facts dd{margin:0;font-size:.88rem;line-height:1.6}.detail-source{font-size:.7rem;color:var(--muted)}.credits-content{padding:44px;overflow-wrap:anywhere}.credits-content>h1{padding-right:30px}.credits-content>h2{font-size:1.6rem;margin-top:30px}.credits-content p,.credits-content li{font-size:.9rem;line-height:1.65}.credit-entry{padding:15px 0;border-bottom:1px solid var(--border)}.credit-entry strong{font-size:.88rem}.credit-entry p{font-size:.78rem;color:var(--muted);margin:5px 0}.credit-entry .credit{font-size:.76rem}.credits-content li{margin-bottom:8px}.storage-warning,.notice,.error{font-size:.86rem;padding:12px 16px;background:#f1dfcf;border-radius:5px;line-height:1.55}.storage-warning{margin-top:20px}.error{color:#763c24;text-align:left}.photo-unavailable{min-height:100px;background:#e5e8db;display:grid;place-items:center;color:#75806c;font-size:.8rem}
@media(min-width:1440px){.map-wrap{height:480px}.tile-photo{height:230px}}
@media(max-width:1100px){.app-shell{padding:0 30px}.explore-panel{grid-template-columns:1.1fr 1fr}.map-heading .small-label{display:none}.habitat-panel{padding:24px 22px 16px}.journal-photo{width:115px}.journal-bird{gap:15px}.journal-bird h2{font-size:1.3rem}.journal-bird-copy .eyebrow{font-size:.5rem}.journal-summary{gap:25px}.journal-summary>p{max-width:240px}.tile-photo{height:180px}.page-heading{gap:20px}.page-heading .button{flex-shrink:0}.desktop-nav button{padding:14px 15px}}
@media(max-width:760px){.app-shell{padding:0 20px}.site-header{height:83px}.brand{font-size:1.8rem}.brand-mark{width:36px;height:43px}.brand-sub{font-size:8px}.desktop-nav{display:none}.collection-counter{font-size:.84rem;min-height:42px}.page-heading{display:block;padding:29px 0 26px}.page-heading h1{font-size:2.7rem;margin-bottom:13px}.page-heading p{font-size:.9rem;max-width:320px}.page-heading>.button{margin-top:22px;width:100%;justify-content:space-between}.page-heading .eyebrow{font-size:.59rem}.mobile-break{display:block}.explore-panel{display:block}.map-heading{height:46px;padding:0 16px}.map-heading>span:first-child{font-size:.59rem}.map-wrap{height:265px}.map-compass{top:12px;right:14px}.map-caption{font-size:.6rem;max-width:75%;bottom:21px;left:10px}.leaflet-control-zoom a{width:34px!important;height:34px!important;line-height:34px!important}.habitat-panel{padding:20px 18px 17px;border-left:0;border-top:1px solid #d8ded0}.habitat-panel>.eyebrow{font-size:.6rem}.habitat-tabs{margin-bottom:19px}.habitat-tabs button{min-height:45px}.habitat-description h2{font-size:1.5rem}.habitat-description p{font-size:.87rem}.bird-row{min-height:69px}.bird-row strong{font-size:.94rem}.bird-row small{font-size:.75rem}.habitat-note{font-size:.73rem;margin-top:15px}.meet-section{padding:29px 0}.section-heading{display:block}.section-heading h2{font-size:1.8rem}.section-heading>.small-label{display:block;margin-top:10px}.bird-grid{grid-template-columns:1fr 1fr;gap:13px}.tile-photo{height:155px}.tile-body{padding:15px 13px 12px}.tile-body .eyebrow{font-size:.51rem;letter-spacing:.09em;line-height:1.5;min-height:15px}.tile-body h3{font-size:1.25rem;min-height:45px;margin-bottom:13px}.tile-footer{font-size:.69rem;padding-top:10px;gap:5px}.tile-footer svg{width:14px}.specimen-number{width:26px;height:26px;top:10px;left:10px;font-size:.7rem}.photo-badge{font-size:.56rem;padding:4px 6px;left:7px;bottom:8px}.site-footer{display:block;padding:20px 0 95px;font-size:.65rem}.site-footer>span{margin-bottom:6px}.site-footer button{font-size:.72rem;padding-left:0}.mobile-nav{display:flex;position:fixed;bottom:0;left:0;right:0;z-index:1000;background:#fcfaf4f5;backdrop-filter:blur(15px);border-top:1px solid #d5ddcb;padding:6px 18px max(8px,env(safe-area-inset-bottom));justify-content:space-around;box-shadow:0 -3px 20px #243d3308}.mobile-nav button{display:flex;flex-direction:column;gap:5px;align-items:center;justify-content:center;min-width:80px;min-height:53px;background:none;border:0;font-size:.67rem;color:#7b8572}.mobile-nav button[aria-current=page]{color:#233f30;font-weight:bold}.mobile-nav button[aria-current=page] svg{background:#e4eadb;box-shadow:0 0 0 7px #e4eadb;border-radius:5px}.listening-home{display:block}.lesson-intro,.practice-panel{padding:25px;margin-bottom:18px}.lesson-intro h2{font-size:2rem}.lesson-portraits{gap:12px}.lesson-portraits img{width:68px;height:68px}.lesson-portraits span{font-size:.73rem}.practice-panel>svg{margin-bottom:15px}.session-shell{margin-top:12px}.session-topline{margin-top:15px}.lesson-card{display:block}.lesson-image{height:260px;min-height:0}.lesson-image img{position:static}.lesson-image>.credit{font-size:.59rem;margin:0;padding:7px 10px}.lesson-copy{padding:24px 22px}.lesson-copy h1{font-size:2.15rem}.listening-cue{padding:15px 13px;margin:19px 0;gap:10px}.listening-cue p{font-size:.93rem}.lesson-copy>.credit{font-size:.65rem}.quiz-card{padding:25px 20px}.quiz-card h1{font-size:2.25rem}.quiz-card>.eyebrow{font-size:.6rem}.quiz-card>p{font-size:.87rem}.sound-disc{width:100px;height:100px;margin:22px auto}.sound-disc svg{width:55px;height:55px}.quiz-card>.button{width:100%}.answer-option{font-size:.93rem;min-height:57px}.quiz-shell .step-track{margin-bottom:20px}.feedback-heading img{width:52px;height:52px}.feedback-heading h2{font-size:1.35rem}.feedback-heading .eyebrow{font-size:.54rem}.result-card{padding:25px 0}.result-card h1{font-size:2.55rem}.result-birds{gap:12px}.result-birds>div{width:90px}.result-birds img{width:65px;height:65px}.result-birds strong{font-size:.75rem}.result-birds small{font-size:.7rem}.journal-summary{padding:20px;gap:22px;flex-wrap:wrap;justify-content:space-between}.journal-summary strong{font-size:2.2rem}.journal-summary span{font-size:.63rem}.journal-summary>p{padding:16px 0 0;border-left:0;border-top:1px solid #cbd5bf;max-width:none;width:100%;font-size:.79rem}.journal-grid{grid-template-columns:1fr;gap:14px}.journal-bird{min-height:160px}.journal-photo{width:113px}.journal-bird h2{font-size:1.4rem}.journal-bird-copy{padding:20px 14px 20px 0}.journal-bird-copy .eyebrow{font-size:.52rem}.knowledge-marks{gap:5px}.knowledge-marks span{font-size:.62rem;padding:5px}.journal-arrow{display:none}.backup-panel{padding:25px 0}.backup-actions{flex-wrap:wrap}.backup-actions .button{font-size:.8rem;padding:12px 16px}.bird-dialog{width:100%;max-width:100%;max-height:95dvh;margin:auto 0 0;border-radius:18px 18px 0 0}.bird-detail{display:block}.detail-image{position:relative;height:270px}.detail-image>img{object-position:center 35%}.detail-image-label{top:20px;font-size:.55rem}.detail-copy{padding:28px 24px 35px}.detail-copy>h1{font-size:2.4rem}.detail-copy>.eyebrow{padding-right:0}.detail-source{font-size:.73rem}.detail-image>.credit{font-size:.62rem;padding:8px 12px}.credits-content{padding:32px 24px}.credits-content h1{font-size:2.1rem}.close-dialog{position:sticky;top:12px;float:right;margin:12px 12px -56px 0}.credits-content>.eyebrow{max-width:250px;padding-right:35px;font-size:.55rem}}
@media(max-width:370px){.app-shell{padding:0 14px}.page-heading h1{font-size:2.3rem}.tile-photo{height:130px}.tile-body h3{font-size:1.1rem}.habitat-tabs{gap:4px}.habitat-tabs button{font-size:.76rem}.journal-summary{gap:14px}.journal-photo{width:94px}.journal-bird h2{font-size:1.25rem}}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}}


/* Readable secondary text and outdoor-friendly touch targets. */
.eyebrow,.tile-body .eyebrow,.section-heading .eyebrow,.habitat-panel>.eyebrow,.page-heading .eyebrow,.lesson-copy>.eyebrow,.feedback-heading .eyebrow,.journal-bird-copy .eyebrow,.detail-copy>.eyebrow,.detail-image-label,.credits-content>.eyebrow{font-size:.75rem;letter-spacing:.1em}.brand-sub{font-size:.625rem}.tile-footer,.photo-badge,.specimen-number,.habitat-note,.credit,.detail-source,.journal-bird-copy>small,.knowledge-marks span,.journal-summary span,.map-caption{font-size:.75rem}.mobile-nav button{font-size:.8rem}.bird-facts dd,.listening-cue p{font-size:1rem}.bird-row small,.small-label{font-size:.8rem}.map-heading>span:first-child{font-size:.75rem}.tile-body h3{min-height:2.4em}.tile-body .eyebrow{min-height:2.5em}.close-dialog{min-height:44px}.habitat-marker{font-size:.875rem}.leaflet-control-zoom a{min-width:44px;min-height:44px;line-height:44px!important}@media(max-width:760px){.map-heading>span:first-child{font-size:.66rem}.journal-bird-copy .eyebrow{font-size:.65rem}.tile-body .eyebrow{font-size:.65rem}.tile-body{padding:15px 12px}.credit,.detail-image>.credit,.lesson-image>.credit{font-size:.75rem}.journal-photo{width:105px}.journal-bird{gap:12px}.knowledge-marks span{font-size:.7rem}.map-caption{max-width:70%;font-size:.65rem}}

@media(max-width:760px){.journal-summary{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px 10px}.journal-summary>div{min-width:0}.journal-summary>p{grid-column:1/-1}.journal-summary span{font-size:.75rem;line-height:1.4}}
