/* 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;
		}
	}
.PresetDateRangePicker_panel {
  padding: 0 22px 11px
}
.PresetDateRangePicker_button {
  position: relative;
  height: 100%;
  text-align: center;
  background: 0 0;
  border: 2px solid #00a699;
  color: #00a699;
  padding: 4px 12px;
  margin-right: 8px;
  font: inherit;
  font-weight: 700;
  line-height: normal;
  overflow: visible;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer
}
.PresetDateRangePicker_button:active {
  outline: 0
}
.PresetDateRangePicker_button__selected {
  color: #fff;
  background: #00a699
}
.SingleDatePickerInput {
  display: inline-block;
  background-color: #fff
}
.SingleDatePickerInput__withBorder {
  border-radius: 2px;
  border: 1px solid #dbdbdb
}
.SingleDatePickerInput__rtl {
  direction: rtl
}
.SingleDatePickerInput__disabled {
  background-color: #f2f2f2
}
.SingleDatePickerInput__block {
  display: block
}
.SingleDatePickerInput__showClearDate {
  padding-right: 30px
}
.SingleDatePickerInput_clearDate {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}
.SingleDatePickerInput_clearDate__default:focus,
.SingleDatePickerInput_clearDate__default:hover {
  background: #dbdbdb;
  border-radius: 50%
}
.SingleDatePickerInput_clearDate__small {
  padding: 6px
}
.SingleDatePickerInput_clearDate__hide {
  visibility: hidden
}
.SingleDatePickerInput_clearDate_svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle
}
.SingleDatePickerInput_clearDate_svg__small {
  height: 9px
}
.SingleDatePickerInput_calendarIcon {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px
}
.SingleDatePickerInput_calendarIcon_svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle
}
.SingleDatePicker {
  position: relative;
  display: inline-block
}
.SingleDatePicker__block {
  display: block
}
.SingleDatePicker_picker {
  z-index: 1;
  background-color: #fff;
  position: absolute
}
.SingleDatePicker_picker__rtl {
  direction: rtl
}
.SingleDatePicker_picker__directionLeft {
  left: 0
}
.SingleDatePicker_picker__directionRight {
  right: 0
}
.SingleDatePicker_picker__portal {
  background-color: rgba(0,0,0,.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}
.SingleDatePicker_picker__fullScreenPortal {
  background-color: #fff
}
.SingleDatePicker_closeButton {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2
}
.SingleDatePicker_closeButton:focus,
.SingleDatePicker_closeButton:hover {
  color: darken(#cacccd,10%);
  text-decoration: none
}
.SingleDatePicker_closeButton_svg {
  height: 15px;
  width: 15px;
  fill: #cacccd
}
.DayPickerKeyboardShortcuts_buttonReset {
  background: 0 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  font-size: 14px
}
.DayPickerKeyboardShortcuts_buttonReset:active {
  outline: 0
}
.DayPickerKeyboardShortcuts_show {
  width: 33px;
  height: 26px;
  position: absolute;
  z-index: 2
}
.DayPickerKeyboardShortcuts_show::before {
  content: "";
  display: block;
  position: absolute
}
.DayPickerKeyboardShortcuts_show__bottomRight {
  bottom: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__bottomRight::before {
  border-top: 26px solid transparent;
  border-right: 33px solid #00a699;
  bottom: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__bottomRight:hover::before {
  border-right: 33px solid #008489
}
.DayPickerKeyboardShortcuts_show__topRight {
  top: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__topRight::before {
  border-bottom: 26px solid transparent;
  border-right: 33px solid #00a699;
  top: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__topRight:hover::before {
  border-right: 33px solid #008489
}
.DayPickerKeyboardShortcuts_show__topLeft {
  top: 0;
  left: 0
}
.DayPickerKeyboardShortcuts_show__topLeft::before {
  border-bottom: 26px solid transparent;
  border-left: 33px solid #00a699;
  top: 0;
  left: 0
}
.DayPickerKeyboardShortcuts_show__topLeft:hover::before {
  border-left: 33px solid #008489
}
.DayPickerKeyboardShortcuts_showSpan {
  color: #fff;
  position: absolute
}
.DayPickerKeyboardShortcuts_showSpan__bottomRight {
  bottom: 0;
  right: 5px
}
.DayPickerKeyboardShortcuts_showSpan__topRight {
  top: 1px;
  right: 5px
}
.DayPickerKeyboardShortcuts_showSpan__topLeft {
  top: 1px;
  left: 5px
}
.DayPickerKeyboardShortcuts_panel {
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 22px;
  margin: 33px;
  text-align: left
}
.DayPickerKeyboardShortcuts_title {
  font-size: 16px;
  font-weight: 700;
  margin: 0
}
.DayPickerKeyboardShortcuts_list {
  list-style: none;
  padding: 0;
  font-size: 14px
}
.DayPickerKeyboardShortcuts_close {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2
}
.DayPickerKeyboardShortcuts_close:active {
  outline: 0
}
.DayPickerKeyboardShortcuts_closeSvg {
  height: 15px;
  width: 15px;
  fill: #cacccd
}
.DayPickerKeyboardShortcuts_closeSvg:focus,
.DayPickerKeyboardShortcuts_closeSvg:hover {
  fill: #82888a
}
.CalendarDay {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 14px;
  text-align: center
}
.CalendarDay:active {
  outline: 0
}
.CalendarDay__defaultCursor {
  cursor: default
}
.CalendarDay__default {
  border: 1px solid #e4e7e7;
  color: #484848;
  background: #fff
}
.CalendarDay__default:hover {
  background: #e4e7e7;
  border: 1px solid #e4e7e7;
  color: inherit
}
.CalendarDay__hovered_offset {
  background: #f4f5f5;
  border: 1px double #e4e7e7;
  color: inherit
}
.CalendarDay__outside {
  border: 0;
  background: #fff;
  color: #484848
}
.CalendarDay__outside:hover {
  border: 0
}
.CalendarDay__blocked_minimum_nights {
  background: #fff;
  border: 1px solid #eceeee;
  color: #cacccd
}
.CalendarDay__blocked_minimum_nights:active,
.CalendarDay__blocked_minimum_nights:hover {
  background: #fff;
  color: #cacccd
}
.CalendarDay__highlighted_calendar {
  background: #ffe8bc;
  color: #484848
}
.CalendarDay__highlighted_calendar:active,
.CalendarDay__highlighted_calendar:hover {
  background: #ffce71;
  color: #484848
}
.CalendarDay__selected_span {
  background: #66e2da;
  border: 1px double #33dacd;
  color: #fff
}
.CalendarDay__selected_span:active,
.CalendarDay__selected_span:hover {
  background: #33dacd;
  border: 1px double #33dacd;
  color: #fff
}
.CalendarDay__selected,
.CalendarDay__selected:active,
.CalendarDay__selected:hover {
  background: #00a699;
  border: 1px double #00a699;
  color: #fff
}
.CalendarDay__hovered_span,
.CalendarDay__hovered_span:hover {
  background: #b2f1ec;
  border: 1px double #80e8e0;
  color: #007a87
}
.CalendarDay__hovered_span:active {
  background: #80e8e0;
  border: 1px double #80e8e0;
  color: #007a87
}
.CalendarDay__blocked_calendar,
.CalendarDay__blocked_calendar:active,
.CalendarDay__blocked_calendar:hover {
  background: #cacccd;
  border: 1px solid #cacccd;
  color: #82888a
}
.CalendarDay__blocked_out_of_range,
.CalendarDay__blocked_out_of_range:active,
.CalendarDay__blocked_out_of_range:hover {
  background: #fff;
  border: 1px solid #e4e7e7;
  color: #cacccd
}
.CalendarDay__hovered_start_first_possible_end {
  background: #eceeee;
  border: 1px double #eceeee
}
.CalendarDay__hovered_start_blocked_min_nights {
  background: #eceeee;
  border: 1px double #e4e7e7
}
.CalendarMonth {
  background: #fff;
  text-align: center;
  vertical-align: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.CalendarMonth_table {
  border-collapse: collapse;
  border-spacing: 0
}
.CalendarMonth_verticalSpacing {
  border-collapse: separate
}
.CalendarMonth_caption {
  color: #484848;
  font-size: 18px;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 37px;
  caption-side: initial
}
.CalendarMonth_caption__verticalScrollable {
  padding-top: 12px;
  padding-bottom: 7px
}
.CalendarMonthGrid {
  background: #fff;
  text-align: left;
  z-index: 0
}
.CalendarMonthGrid__animating {
  z-index: 1
}
.CalendarMonthGrid__horizontal {
  position: absolute;
  left: 9px
}
.CalendarMonthGrid__vertical,
.CalendarMonthGrid__vertical_scrollable {
  margin: 0 auto
}
.CalendarMonthGrid_month__horizontal {
  display: inline-block;
  vertical-align: top;
  min-height: 100%
}
.CalendarMonthGrid_month__hideForAnimation {
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none
}
.CalendarMonthGrid_month__hidden {
  visibility: hidden
}
.DayPickerNavigation {
  position: relative;
  z-index: 2
}
.DayPickerNavigation__horizontal {
  height: 0
}
.DayPickerNavigation__verticalScrollable_prevNav {
  z-index: 1
}
.DayPickerNavigation__verticalDefault {
  position: absolute;
  width: 100%;
  height: 52px;
  bottom: 0;
  left: 0
}
.DayPickerNavigation__verticalScrollableDefault {
  position: relative
}
.DayPickerNavigation__bottom {
  height: auto
}
.DayPickerNavigation__bottomDefault {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between
}
.DayPickerNavigation_button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 0;
  margin: 0
}
.DayPickerNavigation_button__default {
  border: 1px solid #e4e7e7;
  background-color: #fff;
  color: #757575
}
.DayPickerNavigation_button__default:focus,
.DayPickerNavigation_button__default:hover {
  border: 1px solid #c4c4c4
}
.DayPickerNavigation_button__default:active {
  background: #f2f2f2
}
.DayPickerNavigation_button__disabled {
  cursor: default;
  border: 1px solid #f2f2f2
}
.DayPickerNavigation_button__disabled:focus,
.DayPickerNavigation_button__disabled:hover {
  border: 1px solid #f2f2f2
}
.DayPickerNavigation_button__disabled:active {
  background: 0 0
}
.DayPickerNavigation_button__horizontalDefault {
  position: absolute;
  top: 18px;
  line-height: .78;
  border-radius: 3px;
  padding: 6px 9px
}
.DayPickerNavigation_bottomButton__horizontalDefault {
  position: static;
  margin: -10px 22px 30px
}
.DayPickerNavigation_leftButton__horizontalDefault {
  left: 22px
}
.DayPickerNavigation_rightButton__horizontalDefault {
  right: 22px
}
.DayPickerNavigation_button__verticalDefault {
  padding: 5px;
  background: #fff;
  box-shadow: 0 0 5px 2px rgba(0,0,0,.1);
  position: relative;
  display: inline-block;
  text-align: center;
  height: 100%;
  width: 50%
}
.DayPickerNavigation_nextButton__verticalDefault {
  border-left: 0
}
.DayPickerNavigation_nextButton__verticalScrollableDefault,
.DayPickerNavigation_prevButton__verticalScrollableDefault {
  width: 100%
}
.DayPickerNavigation_svg__horizontal {
  height: 19px;
  width: 19px;
  fill: #82888a;
  display: block
}
.DayPickerNavigation_svg__vertical {
  height: 42px;
  width: 42px;
  fill: #484848
}
.DayPickerNavigation_svg__disabled {
  fill: #f2f2f2
}
.DayPicker {
  background: #fff;
  position: relative;
  text-align: left
}
.DayPicker__horizontal {
  background: #fff
}
.DayPicker__verticalScrollable {
  height: 100%
}
.DayPicker__hidden {
  visibility: hidden
}
.DayPicker__withBorder {
  box-shadow: 0 2px 6px rgba(0,0,0,.05),0 0 0 1px rgba(0,0,0,.07);
  border-radius: 3px
}
.DayPicker_portal__horizontal {
  box-shadow: none;
  position: absolute;
  left: 50%;
  top: 50%
}
.DayPicker_portal__vertical {
  position: initial
}
.DayPicker_focusRegion {
  outline: 0
}
.DayPicker_calendarInfo__horizontal,
.DayPicker_wrapper__horizontal {
  display: inline-block;
  vertical-align: top
}
.DayPicker_weekHeaders {
  position: relative
}
.DayPicker_weekHeaders__horizontal {
  margin-left: 9px
}
.DayPicker_weekHeader {
  color: #757575;
  position: absolute;
  top: 62px;
  z-index: 2;
  text-align: left
}
.DayPicker_weekHeader__vertical {
  left: 50%
}
.DayPicker_weekHeader__verticalScrollable {
  top: 0;
  display: table-row;
  border-bottom: 1px solid #dbdbdb;
  background: #fff;
  margin-left: 0;
  left: 0;
  width: 100%;
  text-align: center
}
.DayPicker_weekHeader_ul {
  list-style: none;
  margin: 1px 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px
}
.DayPicker_weekHeader_li {
  display: inline-block;
  text-align: center
}
.DayPicker_transitionContainer {
  position: relative;
  overflow: hidden;
  border-radius: 3px
}
.DayPicker_transitionContainer__horizontal {
  -webkit-transition: height .2s ease-in-out;
  -moz-transition: height .2s ease-in-out;
  transition: height .2s ease-in-out
}
.DayPicker_transitionContainer__vertical {
  width: 100%
}
.DayPicker_transitionContainer__verticalScrollable {
  padding-top: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow-y: scroll
}
.DateInput {
  margin: 0;
  padding: 0;
  background: #fff;
  position: relative;
  display: inline-block;
  width: 130px;
  vertical-align: middle
}
.DateInput__small {
  width: 97px
}
.DateInput__block {
  width: 100%
}
.DateInput__disabled {
  background: #f2f2f2;
  color: #dbdbdb
}
.DateInput_input {
  font-weight: 200;
  font-size: 19px;
  line-height: 24px;
  color: #484848;
  background-color: #fff;
  width: 100%;
  padding: 11px 11px 9px;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid transparent;
  border-left: 0;
  border-radius: 0
}
.DateInput_input__small {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: .2px;
  padding: 7px 7px 5px
}
.DateInput_input__regular {
  font-weight: auto
}
.DateInput_input__readOnly {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.DateInput_input__focused {
  outline: 0;
  background: #fff;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid #008489;
  border-left: 0
}
.DateInput_input__disabled {
  background: #f2f2f2;
  font-style: italic
}
.DateInput_screenReaderMessage {
  border: 0;
  clip: rect(0,0,0,0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}
.DateInput_fang {
  position: absolute;
  width: 20px;
  height: 10px;
  left: 22px;
  z-index: 2
}
.DateInput_fangShape {
  fill: #fff
}
.DateInput_fangStroke {
  stroke: #dbdbdb;
  fill: transparent
}
.DateRangePickerInput {
  background-color: #fff;
  display: inline-block
}
.DateRangePickerInput__disabled {
  background: #f2f2f2
}
.DateRangePickerInput__withBorder {
  border-radius: 2px;
  border: 1px solid #dbdbdb
}
.DateRangePickerInput__rtl {
  direction: rtl
}
.DateRangePickerInput__block {
  display: block
}
.DateRangePickerInput__showClearDates {
  padding-right: 30px
}
.DateRangePickerInput_arrow {
  display: inline-block;
  vertical-align: middle;
  color: #484848
}
.DateRangePickerInput_arrow_svg {
  vertical-align: middle;
  fill: #484848;
  height: 24px;
  width: 24px
}
.DateRangePickerInput_clearDates {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}
.DateRangePickerInput_clearDates__small {
  padding: 6px
}
.DateRangePickerInput_clearDates_default:focus,
.DateRangePickerInput_clearDates_default:hover {
  background: #dbdbdb;
  border-radius: 50%
}
.DateRangePickerInput_clearDates__hide {
  visibility: hidden
}
.DateRangePickerInput_clearDates_svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle
}
.DateRangePickerInput_clearDates_svg__small {
  height: 9px
}
.DateRangePickerInput_calendarIcon {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px
}
.DateRangePickerInput_calendarIcon_svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle
}
.DateRangePicker {
  position: relative;
  display: inline-block
}
.DateRangePicker__block {
  display: block
}
.DateRangePicker_picker {
  z-index: 1;
  background-color: #fff;
  position: absolute
}
.DateRangePicker_picker__rtl {
  direction: rtl
}
.DateRangePicker_picker__directionLeft {
  left: 0
}
.DateRangePicker_picker__directionRight {
  right: 0
}
.DateRangePicker_picker__portal {
  background-color: rgba(0,0,0,.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}
.DateRangePicker_picker__fullScreenPortal {
  background-color: #fff
}
.DateRangePicker_closeButton {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2
}
.DateRangePicker_closeButton:focus,
.DateRangePicker_closeButton:hover {
  color: darken(#cacccd,10%);
  text-decoration: none
}
.DateRangePicker_closeButton_svg {
  height: 15px;
  width: 15px;
  fill: #cacccd
}@keyframes _pageLayoutCenter_rotate_12ea9_1 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes _pageLayoutCenter_shake_12ea9_1 {
  10%, 90% {
    transform: translate(-1px);
  }
  20%, 80% {
    transform: translate(2px);
  }
  30%, 50%, 70% {
    transform: translate(-4px);
  }
  40%, 60% {
    transform: translate(4px);
  }
}
@keyframes _pageLayoutCenter_fadeIn_12ea9_1 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
._pageLayoutCenter_layout_12ea9_28 {
  background: #f3f3f3;
  min-width: 1024px;
  position: absolute;
  inset: 0;
}

._pageLayoutCenter_layout_white_12ea9_35 {
  background: #fff;
}

._pageLayoutCenter_layout_shiftForHeader_12ea9_39 {
  top: var(--header-height, 56px);
}

._pageLayoutCenter_layoutWrapper_12ea9_43 {
  letter-spacing: 0.016em;
  font: 500 14px/20px Figtree, Helvetica, arial, sans-serif;
}

._pageLayoutCenter_layoutWrapper_12ea9_43 strong {
  font-weight: 600;
}

._pageLayoutCenter_layoutWrapper_12ea9_43 {
  box-sizing: border-box;
  overscroll-behavior-y: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-width: 1024px;
  padding: 16px 24px 64px;
  display: flex;
  position: absolute;
  inset: 0;
  overflow-y: auto;
}

._pageLayoutCenter_layoutInner_12ea9_66 {
  margin-top: auto;
  margin-bottom: auto;
}

._pageLayoutCenter_layout_fromTop_12ea9_71 ._pageLayoutCenter_layoutWrapper_12ea9_43 {
  justify-content: flex-start;
}

._pageLayoutCenter_layout_fromTop_12ea9_71 ._pageLayoutCenter_layoutInner_12ea9_66 {
  margin: 0;
}

._pageLayoutCenter_bottomRight_12ea9_79 {
  z-index: 5;
  position: absolute;
  bottom: 16px;
  right: 16px;
}

@keyframes _pageLayoutColumns_rotate_12ea9_1 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes _pageLayoutColumns_shake_12ea9_1 {
  10%, 90% {
    transform: translate(-1px);
  }
  20%, 80% {
    transform: translate(2px);
  }
  30%, 50%, 70% {
    transform: translate(-4px);
  }
  40%, 60% {
    transform: translate(4px);
  }
}
@keyframes _pageLayoutColumns_fadeIn_12ea9_1 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
._pageLayoutColumns_layout_12ea9_113 {
  letter-spacing: 0.016em;
  font: 500 14px/20px Figtree, Helvetica, arial, sans-serif;
}

._pageLayoutColumns_layout_12ea9_113 strong {
  font-weight: 600;
}

._pageLayoutColumns_layout_12ea9_113 {
  flex-direction: column;
  align-items: stretch;
  min-width: 1024px;
  display: flex;
  position: absolute;
  inset: 0;
}

._pageLayoutColumns_layout_shiftForHeader_12ea9_131 {
  top: var(--header-height, 56px);
}

._pageLayoutColumns_layout_inline_12ea9_135 {
  min-width: 0;
  position: relative;
}

._pageLayoutColumns_layout_2_12ea9_140 {
  background: #f3f3f3;
  min-width: 1024px;
  position: absolute;
  inset: 0;
}

._pageLayoutColumns_layout_white_12ea9_147 {
  background: #fff;
}

@keyframes _row_rotate_12ea9_1 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes _row_shake_12ea9_1 {
  10%, 90% {
    transform: translate(-1px);
  }
  20%, 80% {
    transform: translate(2px);
  }
  30%, 50%, 70% {
    transform: translate(-4px);
  }
  40%, 60% {
    transform: translate(4px);
  }
}
@keyframes _row_fadeIn_12ea9_1 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
._row_row_12ea9_178 {
  --gap:0;
  margin: 0 calc(var(--gap) * -1);
  margin-bottom: 16px;
  display: flex;
}

._row_row_12ea9_178:last-child {
  margin-bottom: 0;
}

._row_row_12ea9_178 > ._row_rowCell_12ea9_189 {
  padding-left: var(--gap);
  padding-right: var(--gap);
}

._row_row_12ea9_178 > ._row_rowSeparator_12ea9_194 {
  margin-left: var(--gap);
  margin-right: var(--gap);
}

._row_row_margin-no_12ea9_199 {
  margin-bottom: 0;
}

._row_row_margin-smaller_12ea9_203:not(:last-child) {
  margin-bottom: 4px;
}

._row_row_margin-small_12ea9_203:not(:last-child) {
  margin-bottom: 8px;
}

._row_row_margin-mediumSmall_12ea9_211:not(:last-child) {
  margin-bottom: 12px;
}

._row_row_margin-large_12ea9_215:not(:last-child) {
  margin-bottom: 24px;
}

._row_row_gaps-narrowest_12ea9_219 {
  --gap:2px;
}

._row_row_gaps-narrower_12ea9_223 {
  --gap:4px;
}

._row_row_gaps-narrow_12ea9_219 {
  --gap:6px;
}

._row_row_gaps-mediumNarrow_12ea9_231 {
  --gap:8px;
}

._row_row_gaps-medium_12ea9_231 {
  --gap:12px;
}

._row_row_gaps-mediumWide_12ea9_239 {
  --gap:16px;
}

._row_row_gaps-wide_12ea9_243 {
  --gap:24px;
}

._row_row_gaps-wider_12ea9_247 {
  --gap:36px;
}

._row_row_noSideGaps_12ea9_251 {
  margin-left: 0;
  margin-right: 0;
}

._row_row_align-center_12ea9_256 {
  align-items: center;
}

._row_row_align-baseline_12ea9_260 {
  align-items: baseline;
}

._row_row_align-start_12ea9_264 {
  align-items: flex-start;
}

._row_row_align-end_12ea9_268 {
  align-items: flex-end;
}

._row_row_align-stretch_12ea9_272 {
  align-items: stretch;
}

._row_row_align-stretch_12ea9_272 > ._row_rowCell_12ea9_189 > :only-child {
  box-sizing: border-box;
  min-height: 100%;
}

._row_row_justify-space-between_12ea9_281 {
  justify-content: space-between;
}

._row_row_justify-space-between_12ea9_281 > ._row_rowCell_12ea9_189 {
  flex-grow: 0;
  flex-basis: auto;
}

._row_row_justify-space-around_12ea9_290 {
  justify-content: space-around;
}

._row_row_justify-center_12ea9_294 {
  justify-content: center;
}

._row_row_justify-start_12ea9_298 {
  justify-content: flex-start;
}

._row_row_justify-end_12ea9_302 {
  justify-content: flex-end;
}

._row_row_wrap_12ea9_306 {
  flex-wrap: wrap;
  margin-bottom: 8px;
}

._row_row_wrap_12ea9_306:last-child {
  margin-bottom: -8px;
}

._row_row_wrap_12ea9_306 ._row_rowCell_12ea9_189 {
  margin-bottom: 8px;
}

._row_row_wrap_12ea9_306 ._row_rowCell_12ea9_189 ._row_row_12ea9_178:not(._row_row_wrap_12ea9_306) ._row_rowCell_12ea9_189 {
  margin-bottom: 0;
}

._row_row_wrap_12ea9_306._row_row_justifySpaceBetween_12ea9_323 ._row_rowCell_12ea9_189:last-child {
  margin-left: auto;
}

._row_rowCell_12ea9_189 {
  box-sizing: border-box;
  flex: 1;
  min-width: 0;
  padding: 0;
}

._row_rowCell_auto_12ea9_334 {
  flex: none;
  max-width: 100%;
}

._row_rowCell_textAlign-left_12ea9_339 {
  text-align: left;
}

._row_rowCell_textAlign-center_12ea9_343 {
  text-align: center;
}

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

._row_rowCell_full_12ea9_351 {
  flex: 1 1 0;
}

._row_rowCell_allowShrink_12ea9_355 {
  flex-shrink: 1;
}

._row_rowCell_showOnRowHover_12ea9_359 {
  visibility: hidden;
}

._row_row_12ea9_178:hover ._row_rowCell_showOnRowHover_12ea9_359 {
  visibility: visible;
}

._row_rowSeparator_12ea9_194 {
  border-left: 2px solid #e2e2e2;
  align-self: stretch;
}

._row_rowSeparator_light_12ea9_372 {
  border-left: 2px solid #f3f3f3;
}

._row_rowSeparator_sideMargin-8_12ea9_376 {
  margin-top: 8px;
  margin-bottom: 8px;
}

._row_rowSeparator_sideMargin-16_12ea9_381 {
  margin-top: 16px;
  margin-bottom: 16px;
}

._row_rowSeparator_sideMargin-24_12ea9_386 {
  margin-top: 24px;
  margin-bottom: 24px;
}

._column_column_12ea9_391 {
  box-sizing: border-box;
  flex-direction: column;
  flex: 1 1 0;
  align-items: stretch;
  height: 100%;
  display: flex;
  position: relative;
}

._column_column_scrollable_12ea9_401 {
  overscroll-behavior-y: none;
  overflow-y: auto;
}

._column_columnCell_12ea9_406 {
  position: relative;
}

._column_columnCell_center_12ea9_410 {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

._column_columnCell_scrolling_12ea9_416 {
  overscroll-behavior-y: none;
  flex-grow: 1;
  flex-shrink: 1;
  overflow-y: auto;
}

._column_columnCell_ctaPadding_12ea9_423:after {
  content: "";
  padding: 0 0 64px;
  display: block;
}

._column_columnCell_max_12ea9_429 {
  flex-grow: 1;
  flex-shrink: 1;
}

@keyframes _box_rotate_12ea9_1 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes _box_shake_12ea9_1 {
  10%, 90% {
    transform: translate(-1px);
  }
  20%, 80% {
    transform: translate(2px);
  }
  30%, 50%, 70% {
    transform: translate(-4px);
  }
  40%, 60% {
    transform: translate(4px);
  }
}
@keyframes _box_fadeIn_12ea9_1 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
._box_box_12ea9_461 {
  padding: 0 16px;
}

._box_box_12ea9_461:not(:last-child) {
  margin-bottom: 16px;
}

._box_box_12ea9_461 img {
  max-width: 100%;
}

._box_boxHeader_12ea9_473 {
  padding: 0 0 8px;
}

._box_boxHeader_12ea9_473:last-child {
  padding: 0;
}

._box_boxTitle_12ea9_481 {
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0.016em;
  font: 700 16px/22px Figtree, Helvetica, arial, sans-serif;
  overflow: hidden;
}

._box_boxTitle_12ea9_481 strong {
  font-weight: 800;
}

._box_box_button_12ea9_493 {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  padding-top: 4px;
  padding-bottom: 4px;
  transition: background-color 0.1s;
}

._box_box_button_12ea9_493 ._box_boxTitle_12ea9_481:after {
  content: "\e906";
  opacity: 0;
  vertical-align: middle;
  padding: 0 0 0 8px;
  font-family: df-icon, serif;
  font-size: 16px;
  line-height: 1;
  transition: opacity 0.1s;
  position: relative;
  top: -2px;
}

._box_box_button_12ea9_493:hover {
  background-color: #e2e2e2;
}

._box_box_button_12ea9_493:hover ._box_boxTitle_12ea9_481:after {
  opacity: 1;
}

._box_box_standalone_12ea9_522 {
  background: #fff;
  border-radius: 4px;
  margin-left: 0;
  margin-right: 0;
  padding: 8px 16px;
  position: relative;
}

._box_box_standalone_12ea9_522._box_box_button_12ea9_493:hover {
  background-color: #e2e2e2;
}

._box_box_hpadding-extra-large_12ea9_535 {
  padding-left: 48px;
  padding-right: 48px;
}

._box_box_hpadding-larger_12ea9_540 {
  padding-left: 32px;
  padding-right: 32px;
}

._box_box_hpadding-large_12ea9_540 {
  padding-left: 24px;
  padding-right: 24px;
}

._box_box_hpadding-mediumSmall_12ea9_550 {
  padding-left: 12px;
  padding-right: 12px;
}

._box_box_hpadding-narrow_12ea9_555 {
  padding-left: 8px;
  padding-right: 8px;
}

._box_box_hpadding-narrower_12ea9_560 {
  padding-left: 4px;
  padding-right: 4px;
}

._box_box_hpadding-no_12ea9_565 {
  padding-left: 0;
  padding-right: 0;
}

._box_box_vpadding-extra-large_12ea9_570 {
  padding-top: 48px;
  padding-bottom: 48px;
}

._box_box_vpadding-larger_12ea9_575 {
  padding-top: 32px;
  padding-bottom: 32px;
}

._box_box_vpadding-large_12ea9_575 {
  padding-top: 24px;
  padding-bottom: 24px;
}

._box_box_vpadding-medium_12ea9_585 {
  padding-top: 16px;
  padding-bottom: 16px;
}

._box_box_vpadding-mediumSmall_12ea9_590 {
  padding-top: 12px;
  padding-bottom: 12px;
}

._box_box_vpadding-narrow_12ea9_595 {
  padding-top: 8px;
  padding-bottom: 8px;
}

._box_box_vpadding-narrower_12ea9_600 {
  padding-top: 4px;
  padding-bottom: 4px;
}

._box_box_vpadding-no_12ea9_605 {
  padding-top: 0;
  padding-bottom: 0;
}

._box_box_bg-white_12ea9_610._box_box_button_12ea9_493:hover {
  background: #f3f3f3;
}

._box_box_bg-xarvio_12ea9_614, ._box_box_bg-xarvio-d1_12ea9_614, ._box_box_bg-blue_12ea9_614, ._box_box_bg-blue-d1_12ea9_614 {
  color: #fff;
}

._box_box_bg-blue-d1_12ea9_614._box_box_border_12ea9_618 {
  border: 2px solid #07a;
}

._box_box_bg-blue-d2_12ea9_622 {
  color: #fff;
}

._box_box_bg-blue-d2_12ea9_622._box_box_button_12ea9_493:hover {
  background: #07a;
}

._box_box_bg-blue-d2_12ea9_622._box_box_border_12ea9_618 {
  border: 2px solid #004e70;
}

._box_box_bg-blue-l1_12ea9_634._box_box_button_12ea9_493:hover {
  background: #009fe3;
}

._box_box_bg-blue-l2_12ea9_638._box_box_button_12ea9_493:hover {
  background: #80cff1;
}

._box_box_bg-green_12ea9_642, ._box_box_bg-green-d1_12ea9_642, ._box_box_bg-yellow_12ea9_642, ._box_box_bg-red_12ea9_642 {
  color: #fff;
}

._box_box_bg-black-a60_12ea9_646, ._box_box_bg-black-a60_12ea9_646._box_box_titleSecondary_12ea9_646 ._box_boxTitle_12ea9_481 {
  color: #f3f3f3;
}

._box_box_bg-black-a60_12ea9_646._box_box_button_12ea9_493:hover {
  background: #000;
}

._box_box_bg-black_12ea9_646, ._box_box_bg-black_12ea9_646._box_box_titleSecondary_12ea9_646 ._box_boxTitle_12ea9_481 {
  color: #f3f3f3;
}

._box_box_bg-black_12ea9_646._box_box_button_12ea9_493:hover {
  background: #07a;
}

._box_box_titleLarge_12ea9_662 ._box_boxTitle_12ea9_481 {
  letter-spacing: 0.016em;
  font: 700 20px/24px Figtree, Helvetica, arial, sans-serif;
}

._box_box_titleLarge_12ea9_662 ._box_boxTitle_12ea9_481 strong {
  font-weight: 800;
}

._box_box_titleLarge_12ea9_662 > ._box_boxHeader_12ea9_473 {
  padding: 0 0 16px;
}

._box_box_titleSmall_12ea9_675 ._box_boxTitle_12ea9_481 {
  letter-spacing: 0.016em;
  font: 700 14px/20px Figtree, Helvetica, arial, sans-serif;
}

._box_box_titleSmall_12ea9_675 ._box_boxTitle_12ea9_481 strong {
  font-weight: 800;
}

._box_box_titleSecondary_12ea9_646 ._box_boxTitle_12ea9_481 {
  letter-spacing: 0.016em;
  font: 700 14px/20px Figtree, Helvetica, arial, sans-serif;
}

._box_box_titleSecondary_12ea9_646 ._box_boxTitle_12ea9_481 strong {
  font-weight: 800;
}

._box_box_titleSecondary_12ea9_646 ._box_boxTitle_12ea9_481 {
  color: #646d70;
}

._box_box_border_12ea9_618 {
  border: 2px solid #e2e2e2;
}

._box_box_marign_12ea9_701 {
  margin-bottom: 16px;
}

._box_box_noMargin_12ea9_705, ._box_box_noMargin_12ea9_705:not(:last-child) {
  margin-bottom: 0;
}

._box_box_marignTop_12ea9_709 {
  margin-top: 16px;
}

@keyframes _separator_rotate_12ea9_1 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes _separator_shake_12ea9_1 {
  10%, 90% {
    transform: translate(-1px);
  }
  20%, 80% {
    transform: translate(2px);
  }
  30%, 50%, 70% {
    transform: translate(-4px);
  }
  40%, 60% {
    transform: translate(4px);
  }
}
@keyframes _separator_fadeIn_12ea9_1 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
._separator_separator_12ea9_740 {
  background: #e2e2e2;
  height: 1px;
}

._separator_separator_margin-smaller_12ea9_745 {
  margin-top: 4px;
  margin-bottom: 4px;
}

._separator_separator_margin-small_12ea9_745 {
  margin-top: 8px;
  margin-bottom: 8px;
}

._separator_separator_margin-medium_12ea9_755 {
  margin-top: 16px;
  margin-bottom: 16px;
}

._separator_separator_margin-large_12ea9_760 {
  margin-top: 24px;
  margin-bottom: 24px;
}

._separator_separator_sideMargin-small_12ea9_765 {
  margin-left: 8px;
  margin-right: 8px;
}

._separator_separator_sideMargin-medium_12ea9_770 {
  margin-left: 16px;
  margin-right: 16px;
}

._separator_separator_sideMargin-pull_12ea9_775 {
  margin-left: -16px;
  margin-right: -16px;
}

._separator_separator_transparent_12ea9_780 {
  background: 0 0;
}

._separator_separator_secondary_12ea9_784 {
  background: #646d70;
}

._separator_separator_light_12ea9_788 {
  background: #f3f3f3;
}

._separator_separator_lighter_12ea9_792 {
  background: #f9f9f9;
}

._separator_separator_black_12ea9_796 {
  background: #000;
}

._separator_separator_wide_12ea9_800 {
  height: 4px;
}

._separator_separator_medium_12ea9_804 {
  height: 2px;
}

@keyframes _factoid_rotate_12ea9_1 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes _factoid_shake_12ea9_1 {
  10%, 90% {
    transform: translate(-1px);
  }
  20%, 80% {
    transform: translate(2px);
  }
  30%, 50%, 70% {
    transform: translate(-4px);
  }
  40%, 60% {
    transform: translate(4px);
  }
}
@keyframes _factoid_fadeIn_12ea9_1 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
._factoid_factoids_12ea9_835 {
  flex-wrap: wrap;
  align-items: flex-end;
  margin: 0;
  display: flex;
}

._factoid_factoids_gaps-wider_12ea9_842 ._factoid_factoid_12ea9_835:not(:last-child) {
  margin-right: 48px;
}

._factoid_factoids_gaps-wide_12ea9_842 ._factoid_factoid_12ea9_835:not(:last-child) {
  margin-right: 36px;
}

._factoid_factoids_gaps-medium_12ea9_850 ._factoid_factoid_12ea9_835:not(:last-child) {
  margin-right: 24px;
}

._factoid_factoids_gaps-narrow_12ea9_854 ._factoid_factoid_12ea9_835:not(:last-child) {
  margin-right: 16px;
}

._factoid_factoids_gaps-narrower_12ea9_858 ._factoid_factoid_12ea9_835:not(:last-child) {
  margin-right: 8px;
}

._factoid_factoids_large_12ea9_862 ._factoid_factoidValue_12ea9_862, ._factoid_factoid_large_12ea9_862 ._factoid_factoidValue_12ea9_862 {
  font: 800 24px/32px Figtree, Helvetica, arial, sans-serif;
}

._factoid_factoids_large_12ea9_862 ._factoid_factoidValue_12ea9_862 strong, ._factoid_factoid_large_12ea9_862 ._factoid_factoidValue_12ea9_862 strong {
  font-weight: 800;
}

._factoid_factoids_large_12ea9_862 ._factoid_factoidValue_12ea9_862, ._factoid_factoid_large_12ea9_862 ._factoid_factoidValue_12ea9_862 {
  line-height: 1;
}

._factoid_factoids_small_12ea9_874, ._factoid_factoid_small_12ea9_874, ._factoid_factoids_small_12ea9_874 ._factoid_factoid_12ea9_835, ._factoid_factoid_small_12ea9_874 ._factoid_factoid_12ea9_835 {
  padding-top: 0;
}

._factoid_factoids_small_12ea9_874 ._factoid_factoidValue_12ea9_862, ._factoid_factoid_small_12ea9_874 ._factoid_factoidValue_12ea9_862 {
  letter-spacing: 0.016em;
  font: 700 12px/18px Figtree, Helvetica, arial, sans-serif;
}

._factoid_factoids_small_12ea9_874 ._factoid_factoidValue_12ea9_862 strong, ._factoid_factoid_small_12ea9_874 ._factoid_factoidValue_12ea9_862 strong {
  font-weight: 800;
}

._factoid_factoids_small_12ea9_874 ._factoid_factoidValue_12ea9_862, ._factoid_factoid_small_12ea9_874 ._factoid_factoidValue_12ea9_862 {
  line-height: 18px;
}

._factoid_factoids_small_12ea9_874 ._factoid_factoidLabel_12ea9_891, ._factoid_factoid_small_12ea9_874 ._factoid_factoidLabel_12ea9_891 {
  letter-spacing: 0.016em;
  font: 600 12px/18px Figtree, Helvetica, arial, sans-serif;
}

._factoid_factoids_small_12ea9_874 ._factoid_factoidLabel_12ea9_891 strong, ._factoid_factoid_small_12ea9_874 ._factoid_factoidLabel_12ea9_891 strong {
  font-weight: 700;
}

._factoid_factoids_small_12ea9_874 ._factoid_factoidLabel_12ea9_891, ._factoid_factoid_small_12ea9_874 ._factoid_factoidLabel_12ea9_891 {
  line-height: 18px;
}

._factoid_factoids_center_12ea9_904 {
  justify-content: center;
}

._factoid_factoids_center_12ea9_904 ._factoid_factoid_12ea9_835 {
  text-align: center;
}

._factoid_factoid_12ea9_835 {
  padding: 8px 0 0;
}

._factoid_factoidValue_12ea9_862 {
  letter-spacing: 0.016em;
  font: 700 16px/22px Figtree, Helvetica, arial, sans-serif;
}

._factoid_factoidValue_12ea9_862 strong {
  font-weight: 800;
}

._factoid_factoidLabel_12ea9_891 {
  letter-spacing: 0.016em;
  font: 600 12px/18px Figtree, Helvetica, arial, sans-serif;
}

._factoid_factoidLabel_12ea9_891 strong {
  font-weight: 700;
}

._factoid_factoidLabel_12ea9_891 {
  color: #646d70;
}

@keyframes _panels_rotate_12ea9_1 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes _panels_shake_12ea9_1 {
  10%, 90% {
    transform: translate(-1px);
  }
  20%, 80% {
    transform: translate(2px);
  }
  30%, 50%, 70% {
    transform: translate(-4px);
  }
  40%, 60% {
    transform: translate(4px);
  }
}
@keyframes _panels_fadeIn_12ea9_1 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
._panels_panels_12ea9_965 {
  flex-grow: 1;
  flex-shrink: 1;
  align-items: stretch;
  min-height: 1px;
  display: flex;
  position: relative;
}

._panels_panels_fullHeight_12ea9_974, ._panels_panels_fullHeightBelowHeader_12ea9_974 {
  z-index: 1;
  position: absolute;
  inset: 0;
}

._panels_panels_fullHeightBelowHeader_12ea9_974 {
  top: var(--header-height, 56px);
}

._panels_panels_limited_12ea9_984 {
  max-width: 1920px;
}

._panels_panels_limited_12ea9_984 ._panels_panel_12ea9_965:last-child {
  box-shadow: 1px 0 #e2e2e2;
}

._panels_panel_12ea9_965 {
  --panel-bg:#fff;
  background: var(--panel-bg);
  color: #000;
  min-width: 1px;
  position: relative;
}

._panels_panel_xs_12ea9_1000 {
  flex: 0 0 240px;
  width: 240px;
}

._panels_panel_s_12ea9_1005 {
  flex: 0 0 360px;
  width: 360px;
}

._panels_panel_sm_12ea9_1010 {
  flex: 0 0 432px;
  width: 432px;
}

._panels_panel_m_12ea9_1015 {
  flex: 0 0 504px;
  width: 504px;
}

._panels_panel_l_12ea9_1020 {
  flex: 0 1200px;
  max-width: 1200px;
}

._panels_panel_xl_12ea9_1025 {
  flex: 0 1920px;
  max-width: 1920px;
}

._panels_panel_full_12ea9_1030 {
  flex: 1 1 0;
}

._panels_panel_scrollable_12ea9_1034 {
  overscroll-behavior-y: none;
  overflow-y: auto;
}

._panels_panel_scrollableCta_12ea9_1039 {
  padding-bottom: 48px;
}

._panels_panel_active_12ea9_1043 {
  --panel-bg:#fff;
}

._panels_panel_blur_12ea9_1047 {
  --panel-bg:#f3f3f3;
}

._panels_panel_blur_12ea9_1047 + ._panels_panel_blur_12ea9_1047, ._panels_panel_active_12ea9_1043 + ._panels_panel_active_12ea9_1043, ._panels_panel_forceBorder_12ea9_1051 {
  box-shadow: inset 1px 0 #e2e2e2;
}

._panels_panel_forceBorder_12ea9_1051 {
  box-shadow: none;
  border-left: 1px solid #e2e2e2;
}

._panels_panel_collapsed_12ea9_1060 {
  cursor: pointer;
  background: #e2e2e2;
  flex: 0 0 40px;
  width: 40px;
  position: relative;
  overflow: hidden;
}

._panels_panel_collapsed_12ea9_1060:after {
  color: #009fe3;
  content: "\e935";
  text-align: center;
  width: 40px;
  margin: -12px 0 0;
  font-family: df-icon;
  font-size: 24px;
  line-height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
}

._panels_panel_collapsed_12ea9_1060:hover:after {
  color: #07a;
}

._panels_panel_collapsed_12ea9_1060 > * {
  visibility: hidden;
}

._panels_panel_forceOver_12ea9_1091 {
  --panel-bg:#fff;
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

._panels_panel_forceOver_12ea9_1091._panels_panel_blur_12ea9_1047 {
  --panel-bg:#f3f3f3;
}

@media screen and (width <= 1319px) {
  ._panels_panel_over_12ea9_1105 {
    --panel-bg:#fff;
    z-index: 2;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  ._panels_panel_over_12ea9_1105._panels_panel_blur_12ea9_1047 {
    --panel-bg:#f3f3f3;
  }
  ._panels_panel_over_12ea9_1105:last-child {
    box-shadow: none;
    border-left: 1px solid #e2e2e2;
    left: auto;
    right: 0;
  }
}
@media screen and (width <= 1600px) {
  ._panels_panel_overLarge_12ea9_1124 {
    --panel-bg:#fff;
    z-index: 2;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  ._panels_panel_overLarge_12ea9_1124._panels_panel_blur_12ea9_1047 {
    --panel-bg:#f3f3f3;
  }
  ._panels_panel_overLarge_12ea9_1124:last-child {
    box-shadow: none;
    border-left: 1px solid #e2e2e2;
    left: auto;
    right: 0;
  }
}
._panels_panelAction_12ea9_1142 {
  pointer-events: none;
  text-align: center;
  z-index: 9;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
  padding: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

._panels_panelAction_12ea9_1142 > * {
  pointer-events: auto;
}

._panels_panelHeader_12ea9_1158 {
  min-height: 40px;
  padding: 8px 16px;
  position: relative;
}

._panels_panelHeader_search_12ea9_1164 ._panels_panelHeader_searchInput_12ea9_1164 {
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.1s;
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
}

@keyframes _tableStatic_rotate_12ea9_1 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes _tableStatic_shake_12ea9_1 {
  10%, 90% {
    transform: translate(-1px);
  }
  20%, 80% {
    transform: translate(2px);
  }
  30%, 50%, 70% {
    transform: translate(-4px);
  }
  40%, 60% {
    transform: translate(4px);
  }
}
@keyframes _tableStatic_fadeIn_12ea9_1 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
._tableStatic_tbl_12ea9_1202 {
  border-collapse: collapse;
  width: 100%;
}

._tableStatic_tbl_12ea9_1202 thead th {
  letter-spacing: 0.008em;
  font: 700 12px/18px Figtree, Helvetica, arial, sans-serif;
}

._tableStatic_tbl_12ea9_1202 thead th strong {
  font-weight: 800;
}

._tableStatic_tbl_12ea9_1202 thead th {
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
  text-align: left;
  border-bottom: 1px solid #e2e2e2;
  padding: 4px 8px;
  overflow: hidden;
}

._tableStatic_tbl_12ea9_1202 tbody tr:not(:last-child) {
  border-bottom: 1px solid #e2e2e2;
}

._tableStatic_tbl_12ea9_1202 tfoot {
  border-top: 1px solid #e2e2e2;
}

._tableStatic_tbl_12ea9_1202 tbody th {
  text-align: left;
}

._tableStatic_tbl_12ea9_1202 tbody td, ._tableStatic_tbl_12ea9_1202 tfoot td {
  letter-spacing: 0.008em;
  font: 700 12px/18px Figtree, Helvetica, arial, sans-serif;
}

._tableStatic_tbl_12ea9_1202 tbody td strong, ._tableStatic_tbl_12ea9_1202 tfoot td strong {
  font-weight: 800;
}

._tableStatic_tbl_12ea9_1202 tbody td, ._tableStatic_tbl_12ea9_1202 tfoot td {
  box-sizing: border-box;
  padding: 8px;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_tr_fixedRow_12ea9_1252 td, ._tableStatic_tbl_12ea9_1202 ._tableStatic_tr_fixedRow_12ea9_1252 th {
  height: 48px;
  padding-top: 0;
  padding-bottom: 0;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_tr_fixedRowNarrow_12ea9_1258 td, ._tableStatic_tbl_12ea9_1202 ._tableStatic_tr_fixedRowNarrow_12ea9_1258 th {
  height: 36px;
  padding-top: 0;
  padding-bottom: 0;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_cell_60_12ea9_1264 {
  width: 60%;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_cell_50_12ea9_1268 {
  width: 50%;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_cell_40_12ea9_1272 {
  width: 40%;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_cell_30_12ea9_1276 {
  width: 30%;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_cell_25_12ea9_1280 {
  width: 25%;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_cell_20_12ea9_1284 {
  width: 20%;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_cell_15_12ea9_1288 {
  width: 15%;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_cell_10_12ea9_1292 {
  width: 10%;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_cell_square_12ea9_1296 {
  width: 48px;
}

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

._tableStatic_tbl_12ea9_1202 ._tableStatic_cell_center_12ea9_1304 {
  text-align: center;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_cell_big_12ea9_1308 {
  letter-spacing: 0.016em;
  font: 700 14px/20px Figtree, Helvetica, arial, sans-serif;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_cell_big_12ea9_1308 strong {
  font-weight: 800;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_cell_big_12ea9_1308 {
  height: 48px;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_cell_breakWord_12ea9_1321 {
  word-wrap: break-word;
}

._tableStatic_tbl_12ea9_1202 ._tableStatic_cell_multiline_12ea9_1325 {
  overflow-wrap: break-word;
  white-space: normal;
  text-overflow: unset;
  overflow: visible;
}

._tableStatic_tbl_fixed_12ea9_1332 {
  table-layout: fixed;
}

._tableStatic_tbl_widthAuto_12ea9_1336 {
  width: auto;
}

._tableStatic_tbl_fixedRows_12ea9_1340 tbody td, ._tableStatic_tbl_fixedRows_12ea9_1340 tfoot td {
  height: 48px;
  padding-top: 0;
  padding-bottom: 0;
}

._tableStatic_tbl_horGapsNarrow_12ea9_1346 thead th, ._tableStatic_tbl_horGapsNarrow_12ea9_1346 tbody td, ._tableStatic_tbl_horGapsNarrow_12ea9_1346 tfoot td {
  padding-left: 4px;
  padding-right: 4px;
}

table._tableStatic_tbl_vertGapsNarrow_12ea9_1351 thead th, table._tableStatic_tbl_vertGapsNarrow_12ea9_1351 tbody td, table._tableStatic_tbl_vertGapsNarrow_12ea9_1351 tfoot td {
  padding-top: 2px;
  padding-bottom: 2px;
}

._tableStatic_tbl_noSidePaddings_12ea9_1356 td:first-child, ._tableStatic_tbl_noSidePaddings_12ea9_1356 th:first-child {
  padding-left: 0;
}

._tableStatic_tbl_noSidePaddings_12ea9_1356 td:last-child, ._tableStatic_tbl_noSidePaddings_12ea9_1356 th:last-child {
  padding-right: 0;
}

._tableStatic_row_hover_12ea9_1364 {
  cursor: pointer;
  background: rgba(255, 255, 255, 0);
  transition: background-color 0.1s;
}

._tableStatic_row_hover_12ea9_1364:hover {
  background: #f3f3f3;
}

._tableStatic_showOnRowHover_12ea9_1374 {
  opacity: 0;
}

tr:hover ._tableStatic_showOnRowHover_12ea9_1374 {
  opacity: 1;
}

tr._tableStatic_row_bgGrey_12ea9_1382 {
  background: #f3f3f3;
}

tr._tableStatic_row_bgGrey_12ea9_1382 th, tr._tableStatic_row_bgGrey_12ea9_1382 td, ._tableStatic_tbl_noSeparators_12ea9_1386 tbody tr:not(:last-child), ._tableStatic_tbl_noSeparators_12ea9_1386 thead th, ._tableStatic_tbl_noSeparators_12ea9_1386 th, ._tableStatic_tbl_noSeparators_12ea9_1386 td {
  border-bottom: 0;
}

._tableStatic_tbl_noSeparators_12ea9_1386 thead th, ._tableStatic_tbl_noSeparators_12ea9_1386 tbody td, ._tableStatic_tbl_noSeparators_12ea9_1386 tfoot td {
  padding-top: 4px;
  padding-bottom: 4px;
}

@keyframes _sortingHeader_rotate_12ea9_1 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes _sortingHeader_shake_12ea9_1 {
  10%, 90% {
    transform: translate(-1px);
  }
  20%, 80% {
    transform: translate(2px);
  }
  30%, 50%, 70% {
    transform: translate(-4px);
  }
  40%, 60% {
    transform: translate(4px);
  }
}
@keyframes _sortingHeader_fadeIn_12ea9_1 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
._sortingHeader_sortingHeader_12ea9_1422 {
  cursor: pointer;
  min-height: 16px;
  padding-right: 20px;
  display: inline-block;
  position: relative;
}

._sortingHeader_sortingHeader_12ea9_1422:before, ._sortingHeader_sortingHeader_12ea9_1422:after {
  content: "";
  opacity: 0.4;
  border-bottom: 8px solid #bababa;
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-right: 5px solid rgba(0, 0, 0, 0);
  margin: -11px 0 0;
  position: absolute;
  top: 50%;
  right: 4px;
}

._sortingHeader_sortingHeader_12ea9_1422:after {
  border-top: 8px solid #bababa;
  border-bottom: 0;
  margin: 1px 0 0;
}

._sortingHeader_sortingHeader_12ea9_1422:hover:before, ._sortingHeader_sortingHeader_12ea9_1422:hover:after {
  opacity: 1;
}

._sortingHeader_sortingHeader_sorted-ASC_12ea9_1452:before {
  opacity: 1;
  border-bottom: 8px solid #009fe3;
}

._sortingHeader_sortingHeader_sorted-DESC_12ea9_1457:after {
  opacity: 1;
  border-top: 8px solid #009fe3;
}

._sortingHeader_sortingHeader_oneArrowRight_12ea9_1462:before, ._sortingHeader_sortingHeader_oneArrowRight_12ea9_1462:after, ._sortingHeader_sortingHeader_oneArrowLeft_12ea9_1462:before, ._sortingHeader_sortingHeader_oneArrowLeft_12ea9_1462:after {
  margin: -5px 0 0;
}

._sortingHeader_sortingHeader_oneArrowRight_12ea9_1462:after, ._sortingHeader_sortingHeader_oneArrowLeft_12ea9_1462:after, ._sortingHeader_sortingHeader_oneArrowRight_12ea9_1462._sortingHeader_sortingHeader_sorted-DESC_12ea9_1457:before, ._sortingHeader_sortingHeader_oneArrowLeft_12ea9_1462._sortingHeader_sortingHeader_sorted-DESC_12ea9_1457:before {
  display: none;
}

._sortingHeader_sortingHeader_oneArrowRight_12ea9_1462._sortingHeader_sortingHeader_sorted-DESC_12ea9_1457:after, ._sortingHeader_sortingHeader_oneArrowLeft_12ea9_1462._sortingHeader_sortingHeader_sorted-DESC_12ea9_1457:after {
  display: block;
}

._sortingHeader_sortingHeader_oneArrowLeft_12ea9_1462 {
  padding-left: 16px;
  padding-right: 0;
}

._sortingHeader_sortingHeader_oneArrowLeft_12ea9_1462:before, ._sortingHeader_sortingHeader_oneArrowLeft_12ea9_1462:after {
  left: 0;
  right: auto;
}

._sortingHeader_sortingHeader_greyBlack_12ea9_1484 {
  color: #bababa;
}

._sortingHeader_sortingHeader_greyBlack_12ea9_1484:hover, ._sortingHeader_sortingHeader_greyBlack_12ea9_1484._sortingHeader_sortingHeader_sorted-ASC_12ea9_1452, ._sortingHeader_sortingHeader_greyBlack_12ea9_1484._sortingHeader_sortingHeader_sorted-DESC_12ea9_1457 {
  color: #000;
}

._sortingHeader_sortingHeader_greyBlack_12ea9_1484:hover:before, ._sortingHeader_sortingHeader_greyBlack_12ea9_1484._sortingHeader_sortingHeader_sorted-ASC_12ea9_1452:before {
  border-bottom-color: #000;
}

._sortingHeader_sortingHeader_greyBlack_12ea9_1484:hover:after, ._sortingHeader_sortingHeader_greyBlack_12ea9_1484._sortingHeader_sortingHeader_sorted-DESC_12ea9_1457:after {
  border-top-color: #000;
}

/*$vite$:1*/