/* 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;
		}
	}
/*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-scale-z: 1;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-space-y-reverse: 0;
      --tw-space-x-reverse: 0;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-duration: initial;
      --tw-ease: initial;
      --tw-content: "";
    }
  }
}

@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --color-red-500: oklch(63.7% .237 25.331);
    --color-blue-50: oklch(97% .014 254.604);
    --color-blue-300: oklch(80.9% .105 251.813);
    --color-blue-500: oklch(62.3% .214 259.815);
    --color-blue-600: oklch(54.6% .245 262.881);
    --color-blue-900: oklch(37.9% .146 265.522);
    --color-gray-50: oklch(98.5% .002 247.839);
    --color-gray-200: oklch(92.8% .006 264.531);
    --color-gray-300: oklch(87.2% .01 258.338);
    --color-gray-400: oklch(70.7% .022 261.325);
    --color-gray-500: oklch(55.1% .027 264.364);
    --color-gray-600: oklch(44.6% .03 256.802);
    --color-gray-700: oklch(37.3% .034 259.733);
    --color-gray-800: oklch(27.8% .033 256.848);
    --color-gray-900: oklch(21% .034 264.665);
    --color-stone-300: oklch(86.9% .005 56.366);
    --color-black: #000;
    --color-white: #fff;
    --spacing: .25rem;
    --container-xs: 20rem;
    --container-xl: 36rem;
    --container-3xl: 48rem;
    --container-4xl: 56rem;
    --container-5xl: 64rem;
    --container-7xl: 80rem;
    --text-xs: .75rem;
    --text-xs--line-height: calc(1 / .75);
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --tracking-wide: .025em;
    --tracking-widest: .1em;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --radius-xs: var(--radius-xs);
    --radius-sm: var(--radius-sm);
    --radius-md: var(--radius-md);
    --radius-lg: var(--radius-lg);
    --radius-xl: var(--radius-xl);
    --radius-2xl: var(--radius-2xl);
    --radius-3xl: var(--radius-3xl);
    --radius-4xl: var(--radius-4xl);
    --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --color-deloitte-green-dot: #86bc24;
    --color-error-text: #f2522a;
    --color-field-focus-background: #fff;
    --color-field-focus-border: #393939;
    --color-field-focus-foreground: #868686;
    --color-field-default-border: #868686;
    --color-field-default-foreground: #868686;
    --color-field-default-background: #fff;
    --color-field-active-background: #fff;
    --color-field-active-foreground: #393939;
    --color-field-active-border: #4c4c4c;
    --color-field-label: #393939;
    --color-field-disabled-background: #f0f0f0;
    --color-field-disabled-foreground: #868686;
    --color-field-disabled-border: #c3c3c3;
    --color-progress-background: #fff;
    --color-progress-progression: #366eb0;
    --color-progress-foreground: #000;
    --color-progress-border: #c3c3c3;
    --color-accordion-closed-default-background: #658f99;
    --color-accordion-closed-default-foreground: #fff;
    --color-accordion-open-default-background: #fff;
    --color-accordion-open-default-foreground: #658f99;
    --color-body-background-background-default: #fff;
    --color-body-background-background-contrast: #f0f0f0;
    --color-body-foreground-description-default: #4c4c4c;
    --color-body-foreground-primary-default: #093870;
    --color-body-foreground-title-default: #393939;
    --color-body-foreground-link: #0d50a0;
    --color-body-foreground-secondary: #658f99;
    --color-body-foreground-default: #000;
    --color-body-foreground-description-contrast: #868686;
    --color-body-foreground-default-inverse: #fff;
    --color-body-border-default: #c3c3c3;
    --color-icon-error: #862d31;
    --color-icon-success: #129069;
    --color-button-primary-default-background: #0d50a0;
    --color-button-primary-default-foreground: #fff;
    --color-button-primary-default-border: #093870;
    --color-button-primary-hover-background: #366eb0;
    --color-button-primary-hover-foreground: #fff;
    --color-button-primary-hover-border: #0d50a0;
    --color-button-primary-active-background: #093870;
    --color-button-primary-active-foreground: #fff;
    --color-button-primary-active-border: #093870;
    --color-button-primary-focus-background: #093870;
    --color-button-primary-focus-foreground: #fff;
    --color-button-primary-focus-border: #093870;
    --color-button-primary-ring-offset: #0d50a0;
    --color-button-primary-ring: #fff;
    --color-button-primary-disabled-background: #739ac8;
    --color-button-primary-disabled-foreground: #9cb7d8;
    --color-button-primary-disabled-border: #739ac8;
    --color-button-error-default-foreground: #000;
    --color-button-error-default-border: #ca6065;
    --color-button-error-default-background: #e5b1b3;
    --color-button-error-hover-foreground: #000;
    --color-button-error-hover-border: #862d31;
    --color-button-error-hover-background: #ca6065;
    --color-button-error-active-foreground: #fff;
    --color-button-error-active-border: #75272b;
    --color-button-error-active-background: #75272b;
    --color-button-error-ring-offset: #862d31;
    --color-button-error-focus-foreground: #fff;
    --color-button-error-focus-border: #75272b;
    --color-button-error-focus-background: #75272b;
    --color-button-error-disabled-background: #e5b1b3;
    --color-button-error-disabled-foreground: #ca6065;
    --color-button-error-disabled-border: #e5b1b3;
    --color-button-error-ring: #fff;
    --color-button-secondary-default-foreground: #0d50a0;
    --color-button-secondary-default-border: #093870;
    --color-button-secondary-default-background: #fff;
    --color-button-secondary-hover-foreground: #366eb0;
    --color-button-secondary-hover-border: #0d50a0;
    --color-button-secondary-hover-background: #fff;
    --color-button-secondary-active-foreground: #093870;
    --color-button-secondary-active-border: #093870;
    --color-button-secondary-active-background: #fff;
    --color-button-secondary-focus-foreground: #093870;
    --color-button-secondary-focus-border: #093870;
    --color-button-secondary-focus-background: #fff;
    --color-button-secondary-disabled-background: #fff;
    --color-button-secondary-disabled-foreground: #c3c3c3;
    --color-button-secondary-disabled-border: #c3c3c3;
    --color-button-secondary-ring: #c3c3c3;
    --color-button-secondary-ring-offset: #0d50a0;
    --color-button-tertiary-default-background: #fff0;
    --color-button-tertiary-default-foreground: #366eb0;
    --color-button-tertiary-default-border: #fff0;
    --color-button-tertiary-hover-background: #fff0;
    --color-button-tertiary-hover-foreground: #0d50a0;
    --color-button-tertiary-hover-border: #fff0;
    --color-button-tertiary-active-background: #fff0;
    --color-button-tertiary-active-foreground: #0d50a0;
    --color-button-tertiary-active-border: #fff0;
    --color-button-tertiary-focus-background: #fff0;
    --color-button-tertiary-focus-foreground: #0d50a0;
    --color-button-tertiary-focus-border: #093870;
    --color-button-tertiary-disabled-background: #fff0;
    --color-button-tertiary-disabled-foreground: #c3c3c3;
    --color-button-tertiary-disabled-border: #fff0;
    --color-button-success-default-background: #a1ebd4;
    --color-button-success-default-foreground: #000;
    --color-button-success-default-border: #41d6a8;
    --color-button-success-hover-background: #41d6a8;
    --color-button-success-hover-border: #129069;
    --color-button-success-active-background: #107e5c;
    --color-button-success-active-foreground: #fff;
    --color-button-success-active-border: #107e5c;
    --color-button-success-focus-background: #107e5c;
    --color-button-success-focus-foreground: #fff;
    --color-button-success-focus-border: #107e5c;
    --color-button-success-disabled-background: #a1ebd4;
    --color-button-success-disabled-foreground: #41d6a8;
    --color-button-success-disabled-border: #a1ebd4;
    --color-button-success-ring: #fff;
    --color-button-success-ring-offset: #129069;
    --color-button-warning-ring: #fff;
    --color-button-warning-ring-offset: #a27d12;
    --color-button-warning-default-background: #f6e0a1;
    --color-button-warning-default-foreground: #000;
    --color-button-warning-default-border: #ecc040;
    --color-button-warning-hover-background: #ecc040;
    --color-button-warning-hover-foreground: #000;
    --color-button-warning-hover-border: #8e6d0f;
    --color-button-warning-active-background: #8e6d0f;
    --color-button-warning-active-foreground: #fff;
    --color-button-warning-active-border: #8e6d0f;
    --color-button-warning-focus-background: #8e6d0f;
    --color-button-warning-focus-foreground: #fff;
    --color-button-warning-focus-border: #8e6d0f;
    --color-button-warning-disabled-background: #f6e0a1;
    --color-button-warning-disabled-foreground: #ecc040;
    --color-button-warning-disabled-border: #f6e0a1;
    --color-toast-primary-info-background: #90ccdb;
    --color-toast-primary-info-foreground: #000;
    --color-toast-primary-info-border: #658f99;
    --color-toast-primary-success-background: #129069;
    --color-toast-primary-success-foreground: #000;
    --color-toast-primary-success-border: #107e5c;
    --color-toast-primary-error-background: #862d31;
    --color-toast-primary-error-foreground: #fff;
    --color-toast-primary-error-border: #75272b;
    --color-toast-primary-warning-background: #ecc040;
    --color-toast-primary-warning-foreground: #000;
    --color-toast-primary-warning-border: #8e6d0f;
    --color-toast-secondary-error-foreground: #000;
    --color-toast-secondary-error-border: #e5b1b3;
    --color-toast-secondary-warning-foreground: #000;
    --color-toast-secondary-warning-border: #f6e0a1;
    --color-toast-secondary-success-foreground: #000;
    --color-toast-secondary-success-border: #a1ebd4;
    --color-toast-secondary-info-foreground: #000;
    --color-toast-secondary-info-border: #bfe1ea;
    --color-selection-default-foreground: #393939;
    --color-selection-mark-active: #0d50a0;
    --color-selection-focus-foreground: #6d6d6d;
    --color-selection-disabled-foreground: #c3c3c3;
    --color-selection-active-border: #0d50a0;
    --color-badge-neutral-default-background: #aaa;
    --color-badge-neutral-default-foreground: #000;
    --color-badge-primary-default-background: #0d50a0;
    --color-badge-primary-default-foreground: #fff;
    --color-badge-success-default-background: #a1ebd4;
    --color-badge-success-default-foreground: #000;
    --color-badge-error-default-background: #e5b1b3;
    --color-badge-error-default-foreground: #000;
    --color-badge-warning-default-background: #f6e0a1;
    --color-badge-warning-default-foreground: #000;
    --color-badge-secondary-default-background: #a3d5e1;
    --color-badge-secondary-default-foreground: #000;
    --color-divider-primary: #0d50a0;
    --color-dialog-footer-background: #f0f0f0;
    --color-dialog-footer-title: #000;
    --color-list-foreground-primary: #0d50a0;
    --color-list-foreground-secondary: #4c4c4c;
    --color-footer-background: #4c4c4c;
    --color-footer-foreground: #f0f0f0;
    --spacing-padding-4xs: var(--spacing-padding-4xs);
    --spacing-padding-3xs: var(--spacing-padding-3xs);
    --spacing-padding-2xs: var(--spacing-padding-2xs);
    --spacing-padding-xs: var(--spacing-padding-xs);
    --spacing-padding-sm: var(--spacing-padding-sm);
    --spacing-padding-md: var(--spacing-padding-md);
    --spacing-padding-lg: var(--spacing-padding-lg);
    --spacing-padding-xl: var(--spacing-padding-xl);
    --spacing-padding-2xl: var(--spacing-padding-2xl);
    --spacing-padding-3xl: var(--spacing-padding-3xl);
    --spacing-padding-4xl: var(--spacing-padding-4xl);
    --spacing-padding-5xl: var(--spacing-padding-5xl);
    --spacing-padding-6xl: var(--spacing-padding-6xl);
    --spacing-padding-7xl: var(--spacing-padding-7xl);
    --spacing-padding-8xl: var(--spacing-padding-8xl);
    --spacing-padding-9xl: var(--spacing-padding-9xl);
    --radius-full: var(--radius-full);
    --radius-5xl: var(--radius-5xl);
    --radius-none: var(--radius-none);
    --radius-6xl: var(--radius-6xl);
    --radius-2xs: var(--radius-2xs);
    --viewport-width: var(--viewport-width);
    --viewport-height: var(--viewport-height);
    --spacing-card-width-sm: var(--spacing-card-width-sm);
    --spacing-card-width-md: var(--spacing-card-width-md);
    --spacing-card-width-lg: var(--spacing-card-width-lg);
    --spacing-modal-width-sm: var(--spacing-modal-width-sm);
    --spacing-modal-width-md: var(--spacing-modal-width-md);
    --spacing-modal-width-lg: var(--spacing-modal-width-lg);
    --spacing-modal-height-max: var(--spacing-modal-height-max);
    --spacing-input-max-width: var(--spacing-input-max-width);
    --spacing-input-width: var(--spacing-input-width);
    --spacing-icon-xs: var(--spacing-icon-xs);
    --spacing-icon-sm: var(--spacing-icon-sm);
    --spacing-icon-md: var(--spacing-icon-md);
    --spacing-icon-lg: var(--spacing-icon-lg);
    --spacing-icon-xl: var(--spacing-icon-xl);
    --spacing-icon-2xl: var(--spacing-icon-2xl);
    --spacing-icon-3xl: var(--spacing-icon-3xl);
    --spacing-icon-4xl: var(--spacing-icon-4xl);
    --spacing-icon-5xl: var(--spacing-icon-5xl);
    --grid-container: var(--grid-container);
    --grid-margin: var(--grid-margin);
    --grid-gutter: var(--grid-gutter);
    --grid-count: var(--grid-count);
    --border-size-1: var(--border-size-1);
    --border-size-2: var(--border-size-2);
    --border-size-4: var(--border-size-4);
    --border-size-none: var(--border-size-none);
    --text-h1-bold-size: var(--text-h1-bold-size);
    --font-weight-h1-bold-weight: var(--font-weight-h1-bold-weight);
    --leading-h1-bold-line-height: var(--leading-h1-bold-line-height);
    --tracking-h1-bold-letter-spacing: var(--tracking-h1-bold-letter-spacing);
    --text-h1-medium-size: var(--text-h1-medium-size);
    --font-weight-h1-medium-weight: var(--font-weight-h1-medium-weight);
    --leading-h1-medium-line-height: var(--leading-h1-medium-line-height);
    --tracking-h1-medium-letter-spacing: var(--tracking-h1-medium-letter-spacing);
    --text-h1-regular-size: var(--text-h1-regular-size);
    --font-weight-h1-regular-weight: var(--font-weight-h1-regular-weight);
    --leading-h1-regular-line-height: var(--leading-h1-regular-line-height);
    --tracking-h1-regular-letter-spacing: var(--tracking-h1-regular-letter-spacing);
    --text-h2-bold-size: var(--text-h2-bold-size);
    --font-weight-h2-bold-weight: var(--font-weight-h2-bold-weight);
    --leading-h2-bold-line-height: var(--leading-h2-bold-line-height);
    --tracking-h2-bold-letter-spacing: var(--tracking-h2-bold-letter-spacing);
    --text-h2-medium-size: var(--text-h2-medium-size);
    --font-weight-h2-medium-weight: var(--font-weight-h2-medium-weight);
    --leading-h2-medium-line-height: var(--leading-h2-medium-line-height);
    --tracking-h2-medium-letter-spacing: var(--tracking-h2-medium-letter-spacing);
    --text-h2-regular-size: var(--text-h2-regular-size);
    --font-weight-h2-regular-weight: var(--font-weight-h2-regular-weight);
    --leading-h2-regular-line-height: var(--leading-h2-regular-line-height);
    --tracking-h2-regular-letter-spacing: var(--tracking-h2-regular-letter-spacing);
    --text-h3-bold-size: var(--text-h3-bold-size);
    --font-weight-h3-bold-weight: var(--font-weight-h3-bold-weight);
    --leading-h3-bold-line-height: var(--leading-h3-bold-line-height);
    --tracking-h3-bold-letter-spacing: var(--tracking-h3-bold-letter-spacing);
    --text-h3-medium-size: var(--text-h3-medium-size);
    --font-weight-h3-medium-weight: var(--font-weight-h3-medium-weight);
    --leading-h3-medium-line-height: var(--leading-h3-medium-line-height);
    --tracking-h3-medium-letter-spacing: var(--tracking-h3-medium-letter-spacing);
    --text-h3-regular-size: var(--text-h3-regular-size);
    --font-weight-h3-regular-weight: var(--font-weight-h3-regular-weight);
    --leading-h3-regular-line-height: var(--leading-h3-regular-line-height);
    --tracking-h3-regular-letter-spacing: var(--tracking-h3-regular-letter-spacing);
    --text-h4-bold-size: var(--text-h4-bold-size);
    --font-weight-h4-bold-weight: var(--font-weight-h4-bold-weight);
    --leading-h4-bold-line-height: var(--leading-h4-bold-line-height);
    --tracking-h4-bold-letter-spacing: var(--tracking-h4-bold-letter-spacing);
    --text-h4-medium-size: var(--text-h4-medium-size);
    --font-weight-h4-medium-weight: var(--font-weight-h4-medium-weight);
    --leading-h4-medium-line-height: var(--leading-h4-medium-line-height);
    --tracking-h4-medium-letter-spacing: var(--tracking-h4-medium-letter-spacing);
    --text-h4-regular-size: var(--text-h4-regular-size);
    --font-weight-h4-regular-weight: var(--font-weight-h4-regular-weight);
    --leading-h4-regular-line-height: var(--leading-h4-regular-line-height);
    --tracking-h4-regular-letter-spacing: var(--tracking-h4-regular-letter-spacing);
    --text-h5-bold-size: var(--text-h5-bold-size);
    --font-weight-h5-bold-weight: var(--font-weight-h5-bold-weight);
    --leading-h5-bold-line-height: var(--leading-h5-bold-line-height);
    --tracking-h5-bold-letter-spacing: var(--tracking-h5-bold-letter-spacing);
    --text-h5-medium-size: var(--text-h5-medium-size);
    --font-weight-h5-medium-weight: var(--font-weight-h5-medium-weight);
    --leading-h5-medium-line-height: var(--leading-h5-medium-line-height);
    --tracking-h5-medium-letter-spacing: var(--tracking-h5-medium-letter-spacing);
    --text-h5-regular-size: var(--text-h5-regular-size);
    --font-weight-h5-regular-weight: var(--font-weight-h5-regular-weight);
    --leading-h5-regular-line-height: var(--leading-h5-regular-line-height);
    --tracking-h5-regular-letter-spacing: var(--tracking-h5-regular-letter-spacing);
    --text-h6-bold-size: var(--text-h6-bold-size);
    --font-weight-h6-bold-weight: var(--font-weight-h6-bold-weight);
    --leading-h6-bold-line-height: var(--leading-h6-bold-line-height);
    --tracking-h6-bold-letter-spacing: var(--tracking-h6-bold-letter-spacing);
    --text-h6-medium-size: var(--text-h6-medium-size);
    --font-weight-h6-medium-weight: var(--font-weight-h6-medium-weight);
    --leading-h6-medium-line-height: var(--leading-h6-medium-line-height);
    --tracking-h6-medium-letter-spacing: var(--tracking-h6-medium-letter-spacing);
    --text-h6-regular-size: var(--text-h6-regular-size);
    --font-weight-h6-regular-weight: var(--font-weight-h6-regular-weight);
    --leading-h6-regular-line-height: var(--leading-h6-regular-line-height);
    --tracking-h6-regular-letter-spacing: var(--tracking-h6-regular-letter-spacing);
    --text-p-bold-size: var(--text-p-bold-size);
    --font-weight-p-bold-weight: var(--font-weight-p-bold-weight);
    --leading-p-bold-line-height: var(--leading-p-bold-line-height);
    --tracking-p-bold-letter-spacing: var(--tracking-p-bold-letter-spacing);
    --text-p-medium-size: var(--text-p-medium-size);
    --font-weight-p-medium-weight: var(--font-weight-p-medium-weight);
    --leading-p-medium-line-height: var(--leading-p-medium-line-height);
    --tracking-p-medium-letter-spacing: var(--tracking-p-medium-letter-spacing);
    --text-p-regular-size: var(--text-p-regular-size);
    --font-weight-p-regular-weight: var(--font-weight-p-regular-weight);
    --leading-p-regular-line-height: var(--leading-p-regular-line-height);
    --tracking-p-regular-letter-spacing: var(--tracking-p-regular-letter-spacing);
    --text-subheading-bold-size: var(--text-subheading-bold-size);
    --font-weight-subheading-bold-weight: var(--font-weight-subheading-bold-weight);
    --leading-subheading-bold-line-height: var(--leading-subheading-bold-line-height);
    --tracking-subheading-bold-letter-spacing: var(--tracking-subheading-bold-letter-spacing);
    --text-subheading-medium-size: var(--text-subheading-medium-size);
    --font-weight-subheading-medium-weight: var(--font-weight-subheading-medium-weight);
    --leading-subheading-medium-line-height: var(--leading-subheading-medium-line-height);
    --tracking-subheading-medium-letter-spacing: var(--tracking-subheading-medium-letter-spacing);
    --text-subheading-regular-size: var(--text-subheading-regular-size);
    --font-weight-subheading-regular-weight: var(--font-weight-subheading-regular-weight);
    --leading-subheading-regular-line-height: var(--leading-subheading-regular-line-height);
    --tracking-subheading-regular-letter-spacing: var(--tracking-subheading-regular-letter-spacing);
    --text-caption-bold-size: var(--text-caption-bold-size);
    --font-weight-caption-bold-weight: var(--font-weight-caption-bold-weight);
    --leading-caption-bold-line-height: var(--leading-caption-bold-line-height);
    --tracking-caption-bold-letter-spacing: var(--tracking-caption-bold-letter-spacing);
    --text-caption-medium-size: var(--text-caption-medium-size);
    --font-weight-caption-medium-weight: var(--font-weight-caption-medium-weight);
    --leading-caption-medium-line-height: var(--leading-caption-medium-line-height);
    --tracking-caption-medium-letter-spacing: var(--tracking-caption-medium-letter-spacing);
    --text-caption-regular-size: var(--text-caption-regular-size);
    --font-weight-caption-regular-weight: var(--font-weight-caption-regular-weight);
    --leading-caption-regular-line-height: var(--leading-caption-regular-line-height);
    --tracking-caption-regular-letter-spacing: var(--tracking-caption-regular-letter-spacing);
    --text-note-bold-size: var(--text-note-bold-size);
    --font-weight-note-bold-weight: var(--font-weight-note-bold-weight);
    --leading-note-bold-line-height: var(--leading-note-bold-line-height);
    --tracking-note-bold-letter-spacing: var(--tracking-note-bold-letter-spacing);
    --text-note-medium-size: var(--text-note-medium-size);
    --font-weight-note-medium-weight: var(--font-weight-note-medium-weight);
    --leading-note-medium-line-height: var(--leading-note-medium-line-height);
    --tracking-note-medium-letter-spacing: var(--tracking-note-medium-letter-spacing);
    --text-note-regular-size: var(--text-note-regular-size);
    --font-weight-note-regular-weight: var(--font-weight-note-regular-weight);
    --leading-note-regular-line-height: var(--leading-note-regular-line-height);
    --tracking-note-regular-letter-spacing: var(--tracking-note-regular-letter-spacing);
    --text-tiny-bold-size: var(--text-tiny-bold-size);
    --font-weight-tiny-bold-weight: var(--font-weight-tiny-bold-weight);
    --leading-tiny-bold-line-height: var(--leading-tiny-bold-line-height);
    --tracking-tiny-bold-letter-spacing: var(--tracking-tiny-bold-letter-spacing);
    --text-tiny-medium-size: var(--text-tiny-medium-size);
    --font-weight-tiny-medium-weight: var(--font-weight-tiny-medium-weight);
    --leading-tiny-medium-line-height: var(--leading-tiny-medium-line-height);
    --tracking-tiny-medium-letter-spacing: var(--tracking-tiny-medium-letter-spacing);
    --text-tiny-regular-size: var(--text-tiny-regular-size);
    --font-weight-tiny-regular-weight: var(--font-weight-tiny-regular-weight);
    --leading-tiny-regular-line-height: var(--leading-tiny-regular-line-height);
    --tracking-tiny-regular-letter-spacing: var(--tracking-tiny-regular-letter-spacing);
    --text-button-xs-size: var(--text-button-xs-size);
    --leading-button-xs-line-height: var(--leading-button-xs-line-height);
    --tracking-button-xs-letter-spacing: var(--tracking-button-xs-letter-spacing);
    --text-button-sm-size: var(--text-button-sm-size);
    --leading-button-sm-line-height: var(--leading-button-sm-line-height);
    --tracking-button-sm-letter-spacing: var(--tracking-button-sm-letter-spacing);
    --text-button-md-size: var(--text-button-md-size);
    --leading-button-md-line-height: var(--leading-button-md-line-height);
    --tracking-button-md-letter-spacing: var(--tracking-button-md-letter-spacing);
    --text-button-lg-size: var(--text-button-lg-size);
    --leading-button-lg-line-height: var(--leading-button-lg-line-height);
    --tracking-button-lg-letter-spacing: var(--tracking-button-lg-letter-spacing);
    --font-weight-button-weight: var(--font-weight-button-weight);
    --effects-outer-elevation-1-x: var(--effects-outer-elevation-1-x);
    --effects-outer-elevation-1-y: var(--effects-outer-elevation-1-y);
    --effects-outer-elevation-1-blur: var(--effects-outer-elevation-1-blur);
    --effects-outer-elevation-1-spread: var(--effects-outer-elevation-1-spread);
    --effects-outer-elevation-2-x: var(--effects-outer-elevation-2-x);
    --effects-outer-elevation-2-y: var(--effects-outer-elevation-2-y);
    --effects-outer-elevation-2-blur: var(--effects-outer-elevation-2-blur);
    --effects-outer-elevation-2-spread: var(--effects-outer-elevation-2-spread);
    --effects-outer-elevation-3-x: var(--effects-outer-elevation-3-x);
    --effects-outer-elevation-3-y: var(--effects-outer-elevation-3-y);
    --effects-outer-elevation-3-blur: var(--effects-outer-elevation-3-blur);
    --effects-outer-elevation-3-spread: var(--effects-outer-elevation-3-spread);
    --effects-outer-elevation-4-x: var(--effects-outer-elevation-4-x);
    --effects-outer-elevation-4-y: var(--effects-outer-elevation-4-y);
    --effects-outer-elevation-4-blur: var(--effects-outer-elevation-4-blur);
    --effects-outer-elevation-4-spread: var(--effects-outer-elevation-4-spread);
    --effects-outer-elevation-5-x: var(--effects-outer-elevation-5-x);
    --effects-outer-elevation-5-y: var(--effects-outer-elevation-5-y);
    --effects-outer-elevation-5-blur: var(--effects-outer-elevation-5-blur);
    --effects-outer-elevation-5-spread: var(--effects-outer-elevation-5-spread);
    --effects-inner-elevation-1-x: var(--effects-inner-elevation-1-x);
    --effects-inner-elevation-1-y: var(--effects-inner-elevation-1-y);
    --effects-inner-elevation-1-blur: var(--effects-inner-elevation-1-blur);
    --effects-inner-elevation-1-spread: var(--effects-inner-elevation-1-spread);
    --effects-inner-elevation-2-x: var(--effects-inner-elevation-2-x);
    --effects-inner-elevation-2-y: var(--effects-inner-elevation-2-y);
    --effects-inner-elevation-2-blur: var(--effects-inner-elevation-2-blur);
    --effects-inner-elevation-2-spread: var(--effects-inner-elevation-2-spread);
    --effects-inner-elevation-3-x: var(--effects-inner-elevation-3-x);
    --effects-inner-elevation-3-y: var(--effects-inner-elevation-3-y);
    --effects-inner-elevation-3-blur: var(--effects-inner-elevation-3-blur);
    --effects-inner-elevation-3-spread: var(--effects-inner-elevation-3-spread);
    --effects-inner-elevation-4-x: var(--effects-inner-elevation-4-x);
    --effects-inner-elevation-4-y: var(--effects-inner-elevation-4-y);
    --effects-inner-elevation-4-blur: var(--effects-inner-elevation-4-blur);
    --effects-inner-elevation-4-spread: var(--effects-inner-elevation-4-spread);
    --effects-inner-elevation-5-x: var(--effects-inner-elevation-5-x);
    --effects-inner-elevation-5-y: var(--effects-inner-elevation-5-y);
    --effects-inner-elevation-5-blur: var(--effects-inner-elevation-5-blur);
    --effects-inner-elevation-5-spread: var(--effects-inner-elevation-5-spread);
    --brand-font-primary: var(--brand-font-primary);
    --brand-logo: var(--brand-logo);
    --brand-font-secondary: var(--brand-font-secondary);
    --brand-font-tertiary: var(--brand-font-tertiary);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

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

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

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

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

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

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

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

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

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

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

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

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

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

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

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

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

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components {
  .screen-layout {
    width: 95%;
    max-width: var(--container-5xl);
    margin-inline: auto;
  }
}

@layer utilities {
  .pointer-events-auto {
    pointer-events: auto;
  }

  .pointer-events-none {
    pointer-events: none;
  }

  .collapse {
    visibility: collapse;
  }

  .visible {
    visibility: visible;
  }

  .absolute {
    position: absolute;
  }

  .fixed {
    position: fixed;
  }

  .relative {
    position: relative;
  }

  .static {
    position: static;
  }

  .sticky {
    position: sticky;
  }

  .inset-0 {
    inset: calc(var(--spacing) * 0);
  }

  .-top-8 {
    top: calc(var(--spacing) * -8);
  }

  .top-0 {
    top: calc(var(--spacing) * 0);
  }

  .top-\[0\] {
    top: 0;
  }

  .top-\[30\%\] {
    top: 30%;
  }

  .top-\[36\%\] {
    top: 36%;
  }

  .top-\[65\%\] {
    top: 65%;
  }

  .top-full {
    top: 100%;
  }

  .right-0 {
    right: calc(var(--spacing) * 0);
  }

  .right-2 {
    right: calc(var(--spacing) * 2);
  }

  .right-\[1\%\] {
    right: 1%;
  }

  .right-\[2\%\] {
    right: 2%;
  }

  .-bottom-1 {
    bottom: calc(var(--spacing) * -1);
  }

  .bottom-0 {
    bottom: calc(var(--spacing) * 0);
  }

  .bottom-\[5\%\] {
    bottom: 5%;
  }

  .bottom-\[20px\] {
    bottom: 20px;
  }

  .left-0 {
    left: calc(var(--spacing) * 0);
  }

  .left-\[2\%\] {
    left: 2%;
  }

  .left-\[82\%\] {
    left: 82%;
  }

  .isolate {
    isolation: isolate;
  }

  .z-2 {
    z-index: 2;
  }

  .z-10 {
    z-index: 10;
  }

  .z-20 {
    z-index: 20;
  }

  .z-50 {
    z-index: 50;
  }

  .z-1000, .z-\[1000\] {
    z-index: 1000;
  }

  .container {
    width: 100%;
  }

  @media (min-width: 40rem) {
    .container {
      max-width: 40rem;
    }
  }

  @media (min-width: 48rem) {
    .container {
      max-width: 48rem;
    }
  }

  @media (min-width: 64rem) {
    .container {
      max-width: 64rem;
    }
  }

  @media (min-width: 80rem) {
    .container {
      max-width: 80rem;
    }
  }

  @media (min-width: 96rem) {
    .container {
      max-width: 96rem;
    }
  }

  .m-0 {
    margin: calc(var(--spacing) * 0);
  }

  .m-auto {
    margin: auto;
  }

  .m-padding-xs {
    margin: var(--spacing-padding-xs);
  }

  .mx-auto {
    margin-inline: auto;
  }

  .my-padding-4xl {
    margin-block: var(--spacing-padding-4xl);
  }

  .my-padding-xs {
    margin-block: var(--spacing-padding-xs);
  }

  .mt-1 {
    margin-top: calc(var(--spacing) * 1);
  }

  .mt-1\.5 {
    margin-top: calc(var(--spacing) * 1.5);
  }

  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }

  .mt-3 {
    margin-top: calc(var(--spacing) * 3);
  }

  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }

  .mt-8 {
    margin-top: calc(var(--spacing) * 8);
  }

  .mt-10 {
    margin-top: calc(var(--spacing) * 10);
  }

  .mt-\[5\%\] {
    margin-top: 5%;
  }

  .mt-padding-4xl {
    margin-top: var(--spacing-padding-4xl);
  }

  .mt-padding-md {
    margin-top: var(--spacing-padding-md);
  }

  .mt-padding-sm {
    margin-top: var(--spacing-padding-sm);
  }

  .mt-padding-xs {
    margin-top: var(--spacing-padding-xs);
  }

  .mr-1 {
    margin-right: calc(var(--spacing) * 1);
  }

  .mr-2 {
    margin-right: calc(var(--spacing) * 2);
  }

  .mr-6 {
    margin-right: calc(var(--spacing) * 6);
  }

  .mb-1 {
    margin-bottom: calc(var(--spacing) * 1);
  }

  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }

  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }

  .mb-5 {
    margin-bottom: calc(var(--spacing) * 5);
  }

  .mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
  }

  .mb-8 {
    margin-bottom: calc(var(--spacing) * 8);
  }

  .mb-10 {
    margin-bottom: calc(var(--spacing) * 10);
  }

  .mb-12 {
    margin-bottom: calc(var(--spacing) * 12);
  }

  .mb-24 {
    margin-bottom: calc(var(--spacing) * 24);
  }

  .mb-padding-md {
    margin-bottom: var(--spacing-padding-md);
  }

  .ml-1\.5 {
    margin-left: calc(var(--spacing) * 1.5);
  }

  .ml-2 {
    margin-left: calc(var(--spacing) * 2);
  }

  .block {
    display: block;
  }

  .contents {
    display: contents;
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .inline {
    display: inline;
  }

  .inline-block {
    display: inline-block;
  }

  .inline-flex {
    display: inline-flex;
  }

  .table {
    display: table;
  }

  .size-0\.5 {
    width: calc(var(--spacing) * .5);
    height: calc(var(--spacing) * .5);
  }

  .size-4 {
    width: calc(var(--spacing) * 4);
    height: calc(var(--spacing) * 4);
  }

  .size-5 {
    width: calc(var(--spacing) * 5);
    height: calc(var(--spacing) * 5);
  }

  .size-6 {
    width: calc(var(--spacing) * 6);
    height: calc(var(--spacing) * 6);
  }

  .size-7 {
    width: calc(var(--spacing) * 7);
    height: calc(var(--spacing) * 7);
  }

  .size-10 {
    width: calc(var(--spacing) * 10);
    height: calc(var(--spacing) * 10);
  }

  .size-full {
    width: 100%;
    height: 100%;
  }

  .h-0 {
    height: calc(var(--spacing) * 0);
  }

  .h-2 {
    height: calc(var(--spacing) * 2);
  }

  .h-3 {
    height: calc(var(--spacing) * 3);
  }

  .h-4 {
    height: calc(var(--spacing) * 4);
  }

  .h-6 {
    height: calc(var(--spacing) * 6);
  }

  .h-10 {
    height: calc(var(--spacing) * 10);
  }

  .h-12 {
    height: calc(var(--spacing) * 12);
  }

  .h-15 {
    height: calc(var(--spacing) * 15);
  }

  .h-24 {
    height: calc(var(--spacing) * 24);
  }

  .h-40 {
    height: calc(var(--spacing) * 40);
  }

  .h-\[0\.75rem\] {
    height: .75rem;
  }

  .h-\[1\.25rem\] {
    height: 1.25rem;
  }

  .h-\[1rem\] {
    height: 1rem;
  }

  .h-\[4rem\] {
    height: 4rem;
  }

  .h-\[60\%\] {
    height: 60%;
  }

  .h-\[85\%\] {
    height: 85%;
  }

  .h-\[85vh\] {
    height: 85vh;
  }

  .h-\[90\%\] {
    height: 90%;
  }

  .h-\[100\%\] {
    height: 100%;
  }

  .h-\[400px\] {
    height: 400px;
  }

  .h-auto {
    height: auto;
  }

  .h-fit {
    height: fit-content;
  }

  .h-full {
    height: 100%;
  }

  .h-icon-2xl {
    height: var(--spacing-icon-2xl);
  }

  .h-icon-xl {
    height: var(--spacing-icon-xl);
  }

  .h-max {
    height: max-content;
  }

  .h-padding-xl {
    height: var(--spacing-padding-xl);
  }

  .max-h-3 {
    max-height: calc(var(--spacing) * 3);
  }

  .max-h-44 {
    max-height: calc(var(--spacing) * 44);
  }

  .max-h-\[55dvh\] {
    max-height: 55dvh;
  }

  .min-h-\[1\.5rem\] {
    min-height: 1.5rem;
  }

  .min-h-screen {
    min-height: 100vh;
  }

  .w-0 {
    width: calc(var(--spacing) * 0);
  }

  .w-1\/2 {
    width: 50%;
  }

  .w-3 {
    width: calc(var(--spacing) * 3);
  }

  .w-3\/4 {
    width: 75%;
  }

  .w-6 {
    width: calc(var(--spacing) * 6);
  }

  .w-9\/10 {
    width: 90%;
  }

  .w-10 {
    width: calc(var(--spacing) * 10);
  }

  .w-12 {
    width: calc(var(--spacing) * 12);
  }

  .w-18 {
    width: calc(var(--spacing) * 18);
  }

  .w-24 {
    width: calc(var(--spacing) * 24);
  }

  .w-36 {
    width: calc(var(--spacing) * 36);
  }

  .w-60 {
    width: calc(var(--spacing) * 60);
  }

  .w-\[95\%\] {
    width: 95%;
  }

  .w-\[100\%\] {
    width: 100%;
  }

  .w-\[400px\] {
    width: 400px;
  }

  .w-auto {
    width: auto;
  }

  .w-fit {
    width: fit-content;
  }

  .w-full {
    width: 100%;
  }

  .w-icon-2xl {
    width: var(--spacing-icon-2xl);
  }

  .w-icon-md {
    width: var(--spacing-icon-md);
  }

  .w-icon-xl {
    width: var(--spacing-icon-xl);
  }

  .w-max {
    width: max-content;
  }

  .max-w-3 {
    max-width: calc(var(--spacing) * 3);
  }

  .max-w-3xl {
    max-width: var(--container-3xl);
  }

  .max-w-4xl {
    max-width: var(--container-4xl);
  }

  .max-w-7xl {
    max-width: var(--container-7xl);
  }

  .max-w-52 {
    max-width: calc(var(--spacing) * 52);
  }

  .max-w-\[400px\] {
    max-width: 400px;
  }

  .max-w-xl {
    max-width: var(--container-xl);
  }

  .max-w-xs {
    max-width: var(--container-xs);
  }

  .min-w-40 {
    min-width: calc(var(--spacing) * 40);
  }

  .min-w-\[1\.5rem\] {
    min-width: 1.5rem;
  }

  .min-w-\[10rem\] {
    min-width: 10rem;
  }

  .flex-1 {
    flex: 1;
  }

  .flex-1\/2 {
    flex: 50%;
  }

  .flex-1\/5 {
    flex: 20%;
  }

  .shrink-0 {
    flex-shrink: 0;
  }

  .grow {
    flex-grow: 1;
  }

  .table-fixed {
    table-layout: fixed;
  }

  .-translate-y-2 {
    --tw-translate-y: calc(var(--spacing) * -2);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .translate-y-0 {
    --tw-translate-y: calc(var(--spacing) * 0);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .scale-95 {
    --tw-scale-x: 95%;
    --tw-scale-y: 95%;
    --tw-scale-z: 95%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .scale-100 {
    --tw-scale-x: 100%;
    --tw-scale-y: 100%;
    --tw-scale-z: 100%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .transform {
    transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  }

  .animate-pulse {
    animation: var(--animate-pulse);
  }

  .cursor-default {
    cursor: default;
  }

  .cursor-not-allowed {
    cursor: not-allowed;
  }

  .cursor-pointer {
    cursor: pointer;
  }

  .resize {
    resize: both;
  }

  .appearance-none {
    appearance: none;
  }

  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-cols-\[32\%_32\%_32\%\] {
    grid-template-columns: 32% 32% 32%;
  }

  .grid-cols-\[49\%_49\%\] {
    grid-template-columns: 49% 49%;
  }

  .grid-cols-\[50\%_50\%\] {
    grid-template-columns: 50% 50%;
  }

  .grid-rows-\[auto_1fr\] {
    grid-template-rows: auto 1fr;
  }

  .grid-rows-\[auto_1fr_auto\] {
    grid-template-rows: auto 1fr auto;
  }

  .flex-col {
    flex-direction: column;
  }

  .flex-row {
    flex-direction: row;
  }

  .flex-wrap {
    flex-wrap: wrap;
  }

  .content-start {
    align-content: flex-start;
  }

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

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

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

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

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

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

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

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

  .justify-items-start {
    justify-items: start;
  }

  .gap-1 {
    gap: calc(var(--spacing) * 1);
  }

  .gap-1\.5 {
    gap: calc(var(--spacing) * 1.5);
  }

  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }

  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }

  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }

  .gap-6 {
    gap: calc(var(--spacing) * 6);
  }

  .gap-padding-2xs {
    gap: var(--spacing-padding-2xs);
  }

  .gap-padding-3xs {
    gap: var(--spacing-padding-3xs);
  }

  .gap-padding-4xl {
    gap: var(--spacing-padding-4xl);
  }

  .gap-padding-4xs {
    gap: var(--spacing-padding-4xs);
  }

  .gap-padding-lg {
    gap: var(--spacing-padding-lg);
  }

  .gap-padding-md {
    gap: var(--spacing-padding-md);
  }

  .gap-padding-sm {
    gap: var(--spacing-padding-sm);
  }

  .gap-padding-xl {
    gap: var(--spacing-padding-xl);
  }

  .gap-padding-xs {
    gap: var(--spacing-padding-xs);
  }

  :where(.space-y-1 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-2\.5 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 2.5) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 2.5) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-3 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-4 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-5 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 5) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 5) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-6 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-padding-lg > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(var(--spacing-padding-lg) * var(--tw-space-y-reverse));
    margin-block-end: calc(var(--spacing-padding-lg) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-padding-md > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(var(--spacing-padding-md) * var(--tw-space-y-reverse));
    margin-block-end: calc(var(--spacing-padding-md) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-padding-sm > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(var(--spacing-padding-sm) * var(--tw-space-y-reverse));
    margin-block-end: calc(var(--spacing-padding-sm) * calc(1 - var(--tw-space-y-reverse)));
  }

  .gap-x-0\.5 {
    column-gap: calc(var(--spacing) * .5);
  }

  .gap-x-2 {
    column-gap: calc(var(--spacing) * 2);
  }

  .gap-x-3 {
    column-gap: calc(var(--spacing) * 3);
  }

  .gap-x-4 {
    column-gap: calc(var(--spacing) * 4);
  }

  .gap-x-\[28px\] {
    column-gap: 28px;
  }

  .gap-x-padding-2xs {
    column-gap: var(--spacing-padding-2xs);
  }

  .gap-x-padding-3xs {
    column-gap: var(--spacing-padding-3xs);
  }

  .gap-x-padding-4xs {
    column-gap: var(--spacing-padding-4xs);
  }

  .gap-x-padding-5xl {
    column-gap: var(--spacing-padding-5xl);
  }

  .gap-x-padding-md {
    column-gap: var(--spacing-padding-md);
  }

  .gap-x-padding-sm {
    column-gap: var(--spacing-padding-sm);
  }

  .gap-x-padding-xs {
    column-gap: var(--spacing-padding-xs);
  }

  :where(.space-x-4 > :not(:last-child)) {
    --tw-space-x-reverse: 0;
    margin-inline-start: calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse));
    margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)));
  }

  .gap-y-2\.5 {
    row-gap: calc(var(--spacing) * 2.5);
  }

  .gap-y-padding-2xs {
    row-gap: var(--spacing-padding-2xs);
  }

  .gap-y-padding-3xl {
    row-gap: var(--spacing-padding-3xl);
  }

  .gap-y-padding-3xs {
    row-gap: var(--spacing-padding-3xs);
  }

  .gap-y-padding-4xl {
    row-gap: var(--spacing-padding-4xl);
  }

  .gap-y-padding-4xs {
    row-gap: var(--spacing-padding-4xs);
  }

  .gap-y-padding-5xl {
    row-gap: var(--spacing-padding-5xl);
  }

  .gap-y-padding-md {
    row-gap: var(--spacing-padding-md);
  }

  .gap-y-padding-sm {
    row-gap: var(--spacing-padding-sm);
  }

  .gap-y-padding-xl {
    row-gap: var(--spacing-padding-xl);
  }

  .gap-y-padding-xs {
    row-gap: var(--spacing-padding-xs);
  }

  .self-end {
    align-self: flex-end;
  }

  .self-stretch {
    align-self: stretch;
  }

  .overflow-auto {
    overflow: auto;
  }

  .overflow-hidden {
    overflow: hidden;
  }

  .overflow-x-auto {
    overflow-x: auto;
  }

  .overflow-x-hidden {
    overflow-x: hidden;
  }

  .overflow-y-auto {
    overflow-y: auto;
  }

  .overflow-y-scroll {
    overflow-y: scroll;
  }

  .rounded {
    border-radius: .25rem;
  }

  .rounded-2xs {
    border-radius: var(--radius-2xs);
  }

  .rounded-3xl {
    border-radius: var(--radius-3xl);
  }

  .rounded-full {
    border-radius: 3.40282e38px;
    border-radius: var(--radius-full);
  }

  .rounded-lg {
    border-radius: var(--radius-lg);
  }

  .rounded-md {
    border-radius: var(--radius-md);
  }

  .rounded-none {
    border-radius: 0;
    border-radius: var(--radius-none);
  }

  .rounded-sm {
    border-radius: var(--radius-sm);
  }

  .rounded-xl {
    border-radius: var(--radius-xl);
  }

  .rounded-xs {
    border-radius: var(--radius-xs);
  }

  .rounded-t-lg {
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
  }

  .rounded-t-sm {
    border-top-left-radius: var(--radius-sm);
    border-top-right-radius: var(--radius-sm);
  }

  .rounded-tl-sm {
    border-top-left-radius: var(--radius-sm);
  }

  .rounded-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: var(--radius-none);
    border-bottom-left-radius: var(--radius-none);
  }

  .rounded-b-sm {
    border-bottom-right-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
  }

  .border, .border-1 {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-2 {
    border-style: var(--tw-border-style);
    border-width: 2px;
  }

  .border-r-8 {
    border-right-style: var(--tw-border-style);
    border-right-width: 8px;
  }

  .border-b, .border-b-1 {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }

  .border-b-8 {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 8px;
  }

  .border-l-0 {
    border-left-style: var(--tw-border-style);
    border-left-width: 0;
  }

  .border-l-4 {
    border-left-style: var(--tw-border-style);
    border-left-width: 4px;
  }

  .border-l-8 {
    border-left-style: var(--tw-border-style);
    border-left-width: 8px;
  }

  .border-none {
    --tw-border-style: none;
    border-style: none;
  }

  .border-accordion-open-default-foreground {
    border-color: var(--color-accordion-open-default-foreground);
  }

  .border-black {
    border-color: var(--color-black);
  }

  .border-body-background-background-contrast {
    border-color: var(--color-body-background-background-contrast);
  }

  .border-body-border-default {
    border-color: var(--color-body-border-default);
  }

  .border-body-foreground-description-default {
    border-color: var(--color-body-foreground-description-default);
  }

  .border-button-error-default-border {
    border-color: var(--color-button-error-default-border);
  }

  .border-button-primary-active-border {
    border-color: var(--color-button-primary-active-border);
  }

  .border-button-primary-default-border {
    border-color: var(--color-button-primary-default-border);
  }

  .border-button-secondary-default-border {
    border-color: var(--color-button-secondary-default-border);
  }

  .border-button-success-default-border {
    border-color: var(--color-button-success-default-border);
  }

  .border-button-tertiary-default-border {
    border-color: var(--color-button-tertiary-default-border);
  }

  .border-button-warning-default-border {
    border-color: var(--color-button-warning-default-border);
  }

  .border-divider-primary {
    border-color: var(--color-divider-primary);
  }

  .border-field-active-border {
    border-color: var(--color-field-active-border);
  }

  .border-field-default-border {
    border-color: var(--color-field-default-border);
  }

  .border-field-disabled-border {
    border-color: var(--color-field-disabled-border);
  }

  .border-gray-200 {
    border-color: var(--color-gray-200);
  }

  .border-gray-300 {
    border-color: var(--color-gray-300);
  }

  .border-progress-border {
    border-color: var(--color-progress-border);
  }

  .border-toast-primary-error-border {
    border-color: var(--color-toast-primary-error-border);
  }

  .border-toast-primary-info-border {
    border-color: var(--color-toast-primary-info-border);
  }

  .border-toast-primary-success-border {
    border-color: var(--color-toast-primary-success-border);
  }

  .border-toast-primary-warning-border {
    border-color: var(--color-toast-primary-warning-border);
  }

  .border-toast-secondary-error-border {
    border-color: var(--color-toast-secondary-error-border);
  }

  .border-toast-secondary-info-border {
    border-color: var(--color-toast-secondary-info-border);
  }

  .border-toast-secondary-success-border {
    border-color: var(--color-toast-secondary-success-border);
  }

  .border-toast-secondary-warning-border {
    border-color: var(--color-toast-secondary-warning-border);
  }

  .border-r-transparent {
    border-right-color: #0000;
  }

  .border-b-black {
    border-bottom-color: var(--color-black);
  }

  .border-b-body-foreground-description-contrast {
    border-bottom-color: var(--color-body-foreground-description-contrast);
  }

  .border-b-body-foreground-description-default {
    border-bottom-color: var(--color-body-foreground-description-default);
  }

  .border-l-transparent {
    border-left-color: #0000;
  }

  .bg-accordion-closed-default-background {
    background-color: var(--color-accordion-closed-default-background);
  }

  .bg-accordion-open-default-background {
    background-color: var(--color-accordion-open-default-background);
  }

  .bg-badge-error-default-background {
    background-color: var(--color-badge-error-default-background);
  }

  .bg-badge-neutral-default-background {
    background-color: var(--color-badge-neutral-default-background);
  }

  .bg-badge-primary-default-background {
    background-color: var(--color-badge-primary-default-background);
  }

  .bg-badge-secondary-default-background {
    background-color: var(--color-badge-secondary-default-background);
  }

  .bg-badge-success-default-background {
    background-color: var(--color-badge-success-default-background);
  }

  .bg-badge-warning-default-background {
    background-color: var(--color-badge-warning-default-background);
  }

  .bg-black {
    background-color: var(--color-black);
  }

  .bg-body-background-background-contrast {
    background-color: var(--color-body-background-background-contrast);
  }

  .bg-body-background-background-default {
    background-color: var(--color-body-background-background-default);
  }

  .bg-body-foreground-default-inverse {
    background-color: var(--color-body-foreground-default-inverse);
  }

  .bg-button-error-default-background {
    background-color: var(--color-button-error-default-background);
  }

  .bg-button-primary-active-background {
    background-color: var(--color-button-primary-active-background);
  }

  .bg-button-primary-default-background {
    background-color: var(--color-button-primary-default-background);
  }

  .bg-button-secondary-default-background {
    background-color: var(--color-button-secondary-default-background);
  }

  .bg-button-success-default-background {
    background-color: var(--color-button-success-default-background);
  }

  .bg-button-tertiary-default-background {
    background-color: var(--color-button-tertiary-default-background);
  }

  .bg-button-warning-default-background {
    background-color: var(--color-button-warning-default-background);
  }

  .bg-deloitte-green-dot {
    background-color: var(--color-deloitte-green-dot);
  }

  .bg-dialog-footer-background {
    background-color: var(--color-dialog-footer-background);
  }

  .bg-field-active-background {
    background-color: var(--color-field-active-background);
  }

  .bg-field-default-background {
    background-color: var(--color-field-default-background);
  }

  .bg-field-disabled-background {
    background-color: var(--color-field-disabled-background);
  }

  .bg-footer-background {
    background-color: var(--color-footer-background);
  }

  .bg-gray-50 {
    background-color: var(--color-gray-50);
  }

  .bg-gray-300 {
    background-color: var(--color-gray-300);
  }

  .bg-gray-900 {
    background-color: var(--color-gray-900);
  }

  .bg-progress-background {
    background-color: var(--color-progress-background);
  }

  .bg-progress-progression {
    background-color: var(--color-progress-progression);
  }

  .bg-toast-primary-error-background {
    background-color: var(--color-toast-primary-error-background);
  }

  .bg-toast-primary-info-background {
    background-color: var(--color-toast-primary-info-background);
  }

  .bg-toast-primary-success-background {
    background-color: var(--color-toast-primary-success-background);
  }

  .bg-toast-primary-warning-background {
    background-color: var(--color-toast-primary-warning-background);
  }

  .bg-transparent {
    background-color: #0000;
  }

  .bg-white {
    background-color: var(--color-white);
  }

  .object-contain {
    object-fit: contain;
  }

  .p-1 {
    padding: calc(var(--spacing) * 1);
  }

  .p-2 {
    padding: calc(var(--spacing) * 2);
  }

  .p-4 {
    padding: calc(var(--spacing) * 4);
  }

  .p-6 {
    padding: calc(var(--spacing) * 6);
  }

  .p-12 {
    padding: calc(var(--spacing) * 12);
  }

  .p-padding-2xs {
    padding: var(--spacing-padding-2xs);
  }

  .p-padding-3xl {
    padding: var(--spacing-padding-3xl);
  }

  .p-padding-4xl {
    padding: var(--spacing-padding-4xl);
  }

  .p-padding-lg {
    padding: var(--spacing-padding-lg);
  }

  .p-padding-md {
    padding: var(--spacing-padding-md);
  }

  .p-padding-sm {
    padding: var(--spacing-padding-sm);
  }

  .p-padding-xl {
    padding: var(--spacing-padding-xl);
  }

  .p-padding-xs {
    padding: var(--spacing-padding-xs);
  }

  .px-2 {
    padding-inline: calc(var(--spacing) * 2);
  }

  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }

  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }

  .px-padding-2xs {
    padding-inline: var(--spacing-padding-2xs);
  }

  .px-padding-3xl {
    padding-inline: var(--spacing-padding-3xl);
  }

  .px-padding-3xs {
    padding-inline: var(--spacing-padding-3xs);
  }

  .px-padding-lg {
    padding-inline: var(--spacing-padding-lg);
  }

  .px-padding-md {
    padding-inline: var(--spacing-padding-md);
  }

  .px-padding-sm {
    padding-inline: var(--spacing-padding-sm);
  }

  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }

  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }

  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }

  .py-6 {
    padding-block: calc(var(--spacing) * 6);
  }

  .py-8 {
    padding-block: calc(var(--spacing) * 8);
  }

  .py-padding-2xs {
    padding-block: var(--spacing-padding-2xs);
  }

  .py-padding-3xs {
    padding-block: var(--spacing-padding-3xs);
  }

  .py-padding-4xl {
    padding-block: var(--spacing-padding-4xl);
  }

  .py-padding-md {
    padding-block: var(--spacing-padding-md);
  }

  .py-padding-xl {
    padding-block: var(--spacing-padding-xl);
  }

  .py-padding-xs {
    padding-block: var(--spacing-padding-xs);
  }

  .pt-16 {
    padding-top: calc(var(--spacing) * 16);
  }

  .pt-32 {
    padding-top: calc(var(--spacing) * 32);
  }

  .pt-padding-2xs {
    padding-top: var(--spacing-padding-2xs);
  }

  .pt-padding-3xl {
    padding-top: var(--spacing-padding-3xl);
  }

  .pt-padding-4xl {
    padding-top: var(--spacing-padding-4xl);
  }

  .pt-padding-5xl {
    padding-top: var(--spacing-padding-5xl);
  }

  .pt-padding-md {
    padding-top: var(--spacing-padding-md);
  }

  .pt-padding-sm {
    padding-top: var(--spacing-padding-sm);
  }

  .pt-padding-xs {
    padding-top: var(--spacing-padding-xs);
  }

  .pr-2 {
    padding-right: calc(var(--spacing) * 2);
  }

  .pr-padding-lg {
    padding-right: var(--spacing-padding-lg);
  }

  .pb-padding-3xl {
    padding-bottom: var(--spacing-padding-3xl);
  }

  .pb-padding-4xs {
    padding-bottom: var(--spacing-padding-4xs);
  }

  .pb-padding-md {
    padding-bottom: var(--spacing-padding-md);
  }

  .pb-padding-sm {
    padding-bottom: var(--spacing-padding-sm);
  }

  .pb-padding-xs {
    padding-bottom: var(--spacing-padding-xs);
  }

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

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

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

  .align-middle {
    vertical-align: middle;
  }

  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }

  .text-base {
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
  }

  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }

  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }

  .text-xl {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }

  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }

  .text-caption-bold-size {
    font-size: var(--text-caption-bold-size);
  }

  .text-caption-medium-size {
    font-size: var(--text-caption-medium-size);
  }

  .text-caption-regular-size {
    font-size: var(--text-caption-regular-size);
  }

  .text-h1-bold-size {
    font-size: var(--text-h1-bold-size);
  }

  .text-h1-medium-size {
    font-size: var(--text-h1-medium-size);
  }

  .text-h1-regular-size {
    font-size: var(--text-h1-regular-size);
  }

  .text-h2-bold-size {
    font-size: var(--text-h2-bold-size);
  }

  .text-h2-medium-size {
    font-size: var(--text-h2-medium-size);
  }

  .text-h2-regular-size {
    font-size: var(--text-h2-regular-size);
  }

  .text-h3-bold-size {
    font-size: var(--text-h3-bold-size);
  }

  .text-h3-medium-size {
    font-size: var(--text-h3-medium-size);
  }

  .text-h3-regular-size {
    font-size: var(--text-h3-regular-size);
  }

  .text-h4-bold-size {
    font-size: var(--text-h4-bold-size);
  }

  .text-h4-medium-size {
    font-size: var(--text-h4-medium-size);
  }

  .text-h4-regular-size {
    font-size: var(--text-h4-regular-size);
  }

  .text-h5-bold-size {
    font-size: var(--text-h5-bold-size);
  }

  .text-h5-medium-size {
    font-size: var(--text-h5-medium-size);
  }

  .text-h5-regular-size {
    font-size: var(--text-h5-regular-size);
  }

  .text-h6-bold-size {
    font-size: var(--text-h6-bold-size);
  }

  .text-h6-medium-size {
    font-size: var(--text-h6-medium-size);
  }

  .text-h6-regular-size {
    font-size: var(--text-h6-regular-size);
  }

  .text-note-bold-size {
    font-size: var(--text-note-bold-size);
  }

  .text-note-medium-size {
    font-size: var(--text-note-medium-size);
  }

  .text-note-regular-size {
    font-size: var(--text-note-regular-size);
  }

  .text-p-bold-size {
    font-size: var(--text-p-bold-size);
  }

  .text-p-medium-size {
    font-size: var(--text-p-medium-size);
  }

  .text-p-regular-size {
    font-size: var(--text-p-regular-size);
  }

  .text-subheading-bold-size {
    font-size: var(--text-subheading-bold-size);
  }

  .text-subheading-medium-size {
    font-size: var(--text-subheading-medium-size);
  }

  .text-subheading-regular-size {
    font-size: var(--text-subheading-regular-size);
  }

  .text-tiny-bold-size {
    font-size: var(--text-tiny-bold-size);
  }

  .text-tiny-medium-size {
    font-size: var(--text-tiny-medium-size);
  }

  .text-tiny-regular-size {
    font-size: var(--text-tiny-regular-size);
  }

  .leading-caption-bold-line-height {
    --tw-leading: var(--leading-caption-bold-line-height);
    line-height: var(--leading-caption-bold-line-height);
  }

  .leading-caption-medium-line-height {
    --tw-leading: var(--leading-caption-medium-line-height);
    line-height: var(--leading-caption-medium-line-height);
  }

  .leading-caption-regular-line-height {
    --tw-leading: var(--leading-caption-regular-line-height);
    line-height: var(--leading-caption-regular-line-height);
  }

  .leading-h1-bold-line-height {
    --tw-leading: var(--leading-h1-bold-line-height);
    line-height: var(--leading-h1-bold-line-height);
  }

  .leading-h1-medium-line-height {
    --tw-leading: var(--leading-h1-medium-line-height);
    line-height: var(--leading-h1-medium-line-height);
  }

  .leading-h1-regular-line-height {
    --tw-leading: var(--leading-h1-regular-line-height);
    line-height: var(--leading-h1-regular-line-height);
  }

  .leading-h2-bold-line-height {
    --tw-leading: var(--leading-h2-bold-line-height);
    line-height: var(--leading-h2-bold-line-height);
  }

  .leading-h2-medium-line-height {
    --tw-leading: var(--leading-h2-medium-line-height);
    line-height: var(--leading-h2-medium-line-height);
  }

  .leading-h2-regular-line-height {
    --tw-leading: var(--leading-h2-regular-line-height);
    line-height: var(--leading-h2-regular-line-height);
  }

  .leading-h3-bold-line-height {
    --tw-leading: var(--leading-h3-bold-line-height);
    line-height: var(--leading-h3-bold-line-height);
  }

  .leading-h3-medium-line-height {
    --tw-leading: var(--leading-h3-medium-line-height);
    line-height: var(--leading-h3-medium-line-height);
  }

  .leading-h3-regular-line-height {
    --tw-leading: var(--leading-h3-regular-line-height);
    line-height: var(--leading-h3-regular-line-height);
  }

  .leading-h4-bold-line-height {
    --tw-leading: var(--leading-h4-bold-line-height);
    line-height: var(--leading-h4-bold-line-height);
  }

  .leading-h4-medium-line-height {
    --tw-leading: var(--leading-h4-medium-line-height);
    line-height: var(--leading-h4-medium-line-height);
  }

  .leading-h4-regular-line-height {
    --tw-leading: var(--leading-h4-regular-line-height);
    line-height: var(--leading-h4-regular-line-height);
  }

  .leading-h5-bold-line-height {
    --tw-leading: var(--leading-h5-bold-line-height);
    line-height: var(--leading-h5-bold-line-height);
  }

  .leading-h5-medium-line-height {
    --tw-leading: var(--leading-h5-medium-line-height);
    line-height: var(--leading-h5-medium-line-height);
  }

  .leading-h5-regular-line-height {
    --tw-leading: var(--leading-h5-regular-line-height);
    line-height: var(--leading-h5-regular-line-height);
  }

  .leading-h6-bold-line-height {
    --tw-leading: var(--leading-h6-bold-line-height);
    line-height: var(--leading-h6-bold-line-height);
  }

  .leading-h6-medium-line-height {
    --tw-leading: var(--leading-h6-medium-line-height);
    line-height: var(--leading-h6-medium-line-height);
  }

  .leading-h6-regular-line-height {
    --tw-leading: var(--leading-h6-regular-line-height);
    line-height: var(--leading-h6-regular-line-height);
  }

  .leading-normal {
    --tw-leading: var(--leading-normal);
    line-height: var(--leading-normal);
  }

  .leading-note-bold-line-height {
    --tw-leading: var(--leading-note-bold-line-height);
    line-height: var(--leading-note-bold-line-height);
  }

  .leading-note-medium-line-height {
    --tw-leading: var(--leading-note-medium-line-height);
    line-height: var(--leading-note-medium-line-height);
  }

  .leading-note-regular-line-height {
    --tw-leading: var(--leading-note-regular-line-height);
    line-height: var(--leading-note-regular-line-height);
  }

  .leading-p-bold-line-height {
    --tw-leading: var(--leading-p-bold-line-height);
    line-height: var(--leading-p-bold-line-height);
  }

  .leading-p-medium-line-height {
    --tw-leading: var(--leading-p-medium-line-height);
    line-height: var(--leading-p-medium-line-height);
  }

  .leading-p-regular-line-height {
    --tw-leading: var(--leading-p-regular-line-height);
    line-height: var(--leading-p-regular-line-height);
  }

  .leading-relaxed {
    --tw-leading: var(--leading-relaxed);
    line-height: var(--leading-relaxed);
  }

  .leading-subheading-bold-line-height {
    --tw-leading: var(--leading-subheading-bold-line-height);
    line-height: var(--leading-subheading-bold-line-height);
  }

  .leading-subheading-medium-line-height {
    --tw-leading: var(--leading-subheading-medium-line-height);
    line-height: var(--leading-subheading-medium-line-height);
  }

  .leading-subheading-regular-line-height {
    --tw-leading: var(--leading-subheading-regular-line-height);
    line-height: var(--leading-subheading-regular-line-height);
  }

  .leading-tiny-bold-line-height {
    --tw-leading: var(--leading-tiny-bold-line-height);
    line-height: var(--leading-tiny-bold-line-height);
  }

  .leading-tiny-medium-line-height {
    --tw-leading: var(--leading-tiny-medium-line-height);
    line-height: var(--leading-tiny-medium-line-height);
  }

  .leading-tiny-regular-line-height {
    --tw-leading: var(--leading-tiny-regular-line-height);
    line-height: var(--leading-tiny-regular-line-height);
  }

  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }

  .font-caption-bold-weight {
    --tw-font-weight: var(--font-weight-caption-bold-weight);
    font-weight: var(--font-weight-caption-bold-weight);
  }

  .font-caption-medium-weight {
    --tw-font-weight: var(--font-weight-caption-medium-weight);
    font-weight: var(--font-weight-caption-medium-weight);
  }

  .font-caption-regular-weight {
    --tw-font-weight: var(--font-weight-caption-regular-weight);
    font-weight: var(--font-weight-caption-regular-weight);
  }

  .font-h1-bold-weight {
    --tw-font-weight: var(--font-weight-h1-bold-weight);
    font-weight: var(--font-weight-h1-bold-weight);
  }

  .font-h1-medium-weight {
    --tw-font-weight: var(--font-weight-h1-medium-weight);
    font-weight: var(--font-weight-h1-medium-weight);
  }

  .font-h1-regular-weight {
    --tw-font-weight: var(--font-weight-h1-regular-weight);
    font-weight: var(--font-weight-h1-regular-weight);
  }

  .font-h2-bold-weight {
    --tw-font-weight: var(--font-weight-h2-bold-weight);
    font-weight: var(--font-weight-h2-bold-weight);
  }

  .font-h2-medium-weight {
    --tw-font-weight: var(--font-weight-h2-medium-weight);
    font-weight: var(--font-weight-h2-medium-weight);
  }

  .font-h2-regular-weight {
    --tw-font-weight: var(--font-weight-h2-regular-weight);
    font-weight: var(--font-weight-h2-regular-weight);
  }

  .font-h3-bold-weight {
    --tw-font-weight: var(--font-weight-h3-bold-weight);
    font-weight: var(--font-weight-h3-bold-weight);
  }

  .font-h3-medium-weight {
    --tw-font-weight: var(--font-weight-h3-medium-weight);
    font-weight: var(--font-weight-h3-medium-weight);
  }

  .font-h3-regular-weight {
    --tw-font-weight: var(--font-weight-h3-regular-weight);
    font-weight: var(--font-weight-h3-regular-weight);
  }

  .font-h4-bold-weight {
    --tw-font-weight: var(--font-weight-h4-bold-weight);
    font-weight: var(--font-weight-h4-bold-weight);
  }

  .font-h4-medium-weight {
    --tw-font-weight: var(--font-weight-h4-medium-weight);
    font-weight: var(--font-weight-h4-medium-weight);
  }

  .font-h4-regular-weight {
    --tw-font-weight: var(--font-weight-h4-regular-weight);
    font-weight: var(--font-weight-h4-regular-weight);
  }

  .font-h5-bold-weight {
    --tw-font-weight: var(--font-weight-h5-bold-weight);
    font-weight: var(--font-weight-h5-bold-weight);
  }

  .font-h5-medium-weight {
    --tw-font-weight: var(--font-weight-h5-medium-weight);
    font-weight: var(--font-weight-h5-medium-weight);
  }

  .font-h5-regular-weight {
    --tw-font-weight: var(--font-weight-h5-regular-weight);
    font-weight: var(--font-weight-h5-regular-weight);
  }

  .font-h6-bold-weight {
    --tw-font-weight: var(--font-weight-h6-bold-weight);
    font-weight: var(--font-weight-h6-bold-weight);
  }

  .font-h6-medium-weight {
    --tw-font-weight: var(--font-weight-h6-medium-weight);
    font-weight: var(--font-weight-h6-medium-weight);
  }

  .font-h6-regular-weight {
    --tw-font-weight: var(--font-weight-h6-regular-weight);
    font-weight: var(--font-weight-h6-regular-weight);
  }

  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .font-note-bold-weight {
    --tw-font-weight: var(--font-weight-note-bold-weight);
    font-weight: var(--font-weight-note-bold-weight);
  }

  .font-note-medium-weight {
    --tw-font-weight: var(--font-weight-note-medium-weight);
    font-weight: var(--font-weight-note-medium-weight);
  }

  .font-note-regular-weight {
    --tw-font-weight: var(--font-weight-note-regular-weight);
    font-weight: var(--font-weight-note-regular-weight);
  }

  .font-p-bold-weight {
    --tw-font-weight: var(--font-weight-p-bold-weight);
    font-weight: var(--font-weight-p-bold-weight);
  }

  .font-p-medium-weight {
    --tw-font-weight: var(--font-weight-p-medium-weight);
    font-weight: var(--font-weight-p-medium-weight);
  }

  .font-p-regular-weight {
    --tw-font-weight: var(--font-weight-p-regular-weight);
    font-weight: var(--font-weight-p-regular-weight);
  }

  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }

  .font-subheading-bold-weight {
    --tw-font-weight: var(--font-weight-subheading-bold-weight);
    font-weight: var(--font-weight-subheading-bold-weight);
  }

  .font-subheading-medium-weight {
    --tw-font-weight: var(--font-weight-subheading-medium-weight);
    font-weight: var(--font-weight-subheading-medium-weight);
  }

  .font-subheading-regular-weight {
    --tw-font-weight: var(--font-weight-subheading-regular-weight);
    font-weight: var(--font-weight-subheading-regular-weight);
  }

  .font-tiny-bold-weight {
    --tw-font-weight: var(--font-weight-tiny-bold-weight);
    font-weight: var(--font-weight-tiny-bold-weight);
  }

  .font-tiny-medium-weight {
    --tw-font-weight: var(--font-weight-tiny-medium-weight);
    font-weight: var(--font-weight-tiny-medium-weight);
  }

  .font-tiny-regular-weight {
    --tw-font-weight: var(--font-weight-tiny-regular-weight);
    font-weight: var(--font-weight-tiny-regular-weight);
  }

  .tracking-caption-bold-letter-spacing {
    --tw-tracking: var(--tracking-caption-bold-letter-spacing);
    letter-spacing: var(--tracking-caption-bold-letter-spacing);
  }

  .tracking-caption-medium-letter-spacing {
    --tw-tracking: var(--tracking-caption-medium-letter-spacing);
    letter-spacing: var(--tracking-caption-medium-letter-spacing);
  }

  .tracking-caption-regular-letter-spacing {
    --tw-tracking: var(--tracking-caption-regular-letter-spacing);
    letter-spacing: var(--tracking-caption-regular-letter-spacing);
  }

  .tracking-h1-bold-letter-spacing {
    --tw-tracking: var(--tracking-h1-bold-letter-spacing);
    letter-spacing: var(--tracking-h1-bold-letter-spacing);
  }

  .tracking-h1-medium-letter-spacing {
    --tw-tracking: var(--tracking-h1-medium-letter-spacing);
    letter-spacing: var(--tracking-h1-medium-letter-spacing);
  }

  .tracking-h1-regular-letter-spacing {
    --tw-tracking: var(--tracking-h1-regular-letter-spacing);
    letter-spacing: var(--tracking-h1-regular-letter-spacing);
  }

  .tracking-h2-bold-letter-spacing {
    --tw-tracking: var(--tracking-h2-bold-letter-spacing);
    letter-spacing: var(--tracking-h2-bold-letter-spacing);
  }

  .tracking-h2-medium-letter-spacing {
    --tw-tracking: var(--tracking-h2-medium-letter-spacing);
    letter-spacing: var(--tracking-h2-medium-letter-spacing);
  }

  .tracking-h2-regular-letter-spacing {
    --tw-tracking: var(--tracking-h2-regular-letter-spacing);
    letter-spacing: var(--tracking-h2-regular-letter-spacing);
  }

  .tracking-h3-bold-letter-spacing {
    --tw-tracking: var(--tracking-h3-bold-letter-spacing);
    letter-spacing: var(--tracking-h3-bold-letter-spacing);
  }

  .tracking-h3-medium-letter-spacing {
    --tw-tracking: var(--tracking-h3-medium-letter-spacing);
    letter-spacing: var(--tracking-h3-medium-letter-spacing);
  }

  .tracking-h3-regular-letter-spacing {
    --tw-tracking: var(--tracking-h3-regular-letter-spacing);
    letter-spacing: var(--tracking-h3-regular-letter-spacing);
  }

  .tracking-h4-bold-letter-spacing {
    --tw-tracking: var(--tracking-h4-bold-letter-spacing);
    letter-spacing: var(--tracking-h4-bold-letter-spacing);
  }

  .tracking-h4-medium-letter-spacing {
    --tw-tracking: var(--tracking-h4-medium-letter-spacing);
    letter-spacing: var(--tracking-h4-medium-letter-spacing);
  }

  .tracking-h4-regular-letter-spacing {
    --tw-tracking: var(--tracking-h4-regular-letter-spacing);
    letter-spacing: var(--tracking-h4-regular-letter-spacing);
  }

  .tracking-h5-bold-letter-spacing {
    --tw-tracking: var(--tracking-h5-bold-letter-spacing);
    letter-spacing: var(--tracking-h5-bold-letter-spacing);
  }

  .tracking-h5-medium-letter-spacing {
    --tw-tracking: var(--tracking-h5-medium-letter-spacing);
    letter-spacing: var(--tracking-h5-medium-letter-spacing);
  }

  .tracking-h5-regular-letter-spacing {
    --tw-tracking: var(--tracking-h5-regular-letter-spacing);
    letter-spacing: var(--tracking-h5-regular-letter-spacing);
  }

  .tracking-h6-bold-letter-spacing {
    --tw-tracking: var(--tracking-h6-bold-letter-spacing);
    letter-spacing: var(--tracking-h6-bold-letter-spacing);
  }

  .tracking-h6-medium-letter-spacing {
    --tw-tracking: var(--tracking-h6-medium-letter-spacing);
    letter-spacing: var(--tracking-h6-medium-letter-spacing);
  }

  .tracking-h6-regular-letter-spacing {
    --tw-tracking: var(--tracking-h6-regular-letter-spacing);
    letter-spacing: var(--tracking-h6-regular-letter-spacing);
  }

  .tracking-note-bold-letter-spacing {
    --tw-tracking: var(--tracking-note-bold-letter-spacing);
    letter-spacing: var(--tracking-note-bold-letter-spacing);
  }

  .tracking-note-medium-letter-spacing {
    --tw-tracking: var(--tracking-note-medium-letter-spacing);
    letter-spacing: var(--tracking-note-medium-letter-spacing);
  }

  .tracking-note-regular-letter-spacing {
    --tw-tracking: var(--tracking-note-regular-letter-spacing);
    letter-spacing: var(--tracking-note-regular-letter-spacing);
  }

  .tracking-p-bold-letter-spacing {
    --tw-tracking: var(--tracking-p-bold-letter-spacing);
    letter-spacing: var(--tracking-p-bold-letter-spacing);
  }

  .tracking-p-medium-letter-spacing {
    --tw-tracking: var(--tracking-p-medium-letter-spacing);
    letter-spacing: var(--tracking-p-medium-letter-spacing);
  }

  .tracking-p-regular-letter-spacing {
    --tw-tracking: var(--tracking-p-regular-letter-spacing);
    letter-spacing: var(--tracking-p-regular-letter-spacing);
  }

  .tracking-subheading-bold-letter-spacing {
    --tw-tracking: var(--tracking-subheading-bold-letter-spacing);
    letter-spacing: var(--tracking-subheading-bold-letter-spacing);
  }

  .tracking-subheading-medium-letter-spacing {
    --tw-tracking: var(--tracking-subheading-medium-letter-spacing);
    letter-spacing: var(--tracking-subheading-medium-letter-spacing);
  }

  .tracking-subheading-regular-letter-spacing {
    --tw-tracking: var(--tracking-subheading-regular-letter-spacing);
    letter-spacing: var(--tracking-subheading-regular-letter-spacing);
  }

  .tracking-tiny-bold-letter-spacing {
    --tw-tracking: var(--tracking-tiny-bold-letter-spacing);
    letter-spacing: var(--tracking-tiny-bold-letter-spacing);
  }

  .tracking-tiny-medium-letter-spacing {
    --tw-tracking: var(--tracking-tiny-medium-letter-spacing);
    letter-spacing: var(--tracking-tiny-medium-letter-spacing);
  }

  .tracking-tiny-regular-letter-spacing {
    --tw-tracking: var(--tracking-tiny-regular-letter-spacing);
    letter-spacing: var(--tracking-tiny-regular-letter-spacing);
  }

  .tracking-wide {
    --tw-tracking: var(--tracking-wide);
    letter-spacing: var(--tracking-wide);
  }

  .tracking-widest {
    --tw-tracking: var(--tracking-widest);
    letter-spacing: var(--tracking-widest);
  }

  .break-words {
    overflow-wrap: break-word;
  }

  .wrap-anywhere {
    overflow-wrap: anywhere;
  }

  .break-all {
    word-break: break-all;
  }

  .text-ellipsis {
    text-overflow: ellipsis;
  }

  .whitespace-normal {
    white-space: normal;
  }

  .text-accordion-closed-default-foreground {
    color: var(--color-accordion-closed-default-foreground);
  }

  .text-accordion-open-default-foreground {
    color: var(--color-accordion-open-default-foreground);
  }

  .text-badge-error-default-foreground {
    color: var(--color-badge-error-default-foreground);
  }

  .text-badge-neutral-default-foreground {
    color: var(--color-badge-neutral-default-foreground);
  }

  .text-badge-primary-default-foreground {
    color: var(--color-badge-primary-default-foreground);
  }

  .text-badge-secondary-default-foreground {
    color: var(--color-badge-secondary-default-foreground);
  }

  .text-badge-success-default-foreground {
    color: var(--color-badge-success-default-foreground);
  }

  .text-badge-warning-default-foreground {
    color: var(--color-badge-warning-default-foreground);
  }

  .text-black {
    color: var(--color-black);
  }

  .text-blue-500 {
    color: var(--color-blue-500);
  }

  .text-blue-600 {
    color: var(--color-blue-600);
  }

  .text-body-background-background-contrast {
    color: var(--color-body-background-background-contrast);
  }

  .text-body-foreground-default {
    color: var(--color-body-foreground-default);
  }

  .text-body-foreground-default-inverse {
    color: var(--color-body-foreground-default-inverse);
  }

  .text-body-foreground-description-contrast {
    color: var(--color-body-foreground-description-contrast);
  }

  .text-body-foreground-description-default {
    color: var(--color-body-foreground-description-default);
  }

  .text-body-foreground-link {
    color: var(--color-body-foreground-link);
  }

  .text-body-foreground-primary-default {
    color: var(--color-body-foreground-primary-default);
  }

  .text-body-foreground-secondary {
    color: var(--color-body-foreground-secondary);
  }

  .text-body-foreground-title-default {
    color: var(--color-body-foreground-title-default);
  }

  .text-button-error-default-foreground {
    color: var(--color-button-error-default-foreground);
  }

  .text-button-primary-default-background {
    color: var(--color-button-primary-default-background);
  }

  .text-button-primary-default-foreground {
    color: var(--color-button-primary-default-foreground);
  }

  .text-button-secondary-default-foreground {
    color: var(--color-button-secondary-default-foreground);
  }

  .text-button-success-default-foreground {
    color: var(--color-button-success-default-foreground);
  }

  .text-button-tertiary-default-foreground {
    color: var(--color-button-tertiary-default-foreground);
  }

  .text-button-warning-default-foreground {
    color: var(--color-button-warning-default-foreground);
  }

  .text-dialog-footer-title {
    color: var(--color-dialog-footer-title);
  }

  .text-error-text {
    color: var(--color-error-text);
  }

  .text-field-active-foreground {
    color: var(--color-field-active-foreground);
  }

  .text-field-disabled-foreground {
    color: var(--color-field-disabled-foreground);
  }

  .text-field-label {
    color: var(--color-field-label);
  }

  .text-footer-foreground {
    color: var(--color-footer-foreground);
  }

  .text-gray-400 {
    color: var(--color-gray-400);
  }

  .text-gray-500 {
    color: var(--color-gray-500);
  }

  .text-gray-600 {
    color: var(--color-gray-600);
  }

  .text-gray-700 {
    color: var(--color-gray-700);
  }

  .text-gray-800 {
    color: var(--color-gray-800);
  }

  .text-gray-900 {
    color: var(--color-gray-900);
  }

  .text-icon-error {
    color: var(--color-icon-error);
  }

  .text-icon-success {
    color: var(--color-icon-success);
  }

  .text-list-foreground-primary {
    color: var(--color-list-foreground-primary);
  }

  .text-list-foreground-secondary {
    color: var(--color-list-foreground-secondary);
  }

  .text-progress-foreground {
    color: var(--color-progress-foreground);
  }

  .text-red-500 {
    color: var(--color-red-500);
  }

  .text-selection-default-foreground {
    color: var(--color-selection-default-foreground);
  }

  .text-selection-disabled-foreground {
    color: var(--color-selection-disabled-foreground);
  }

  .text-toast-primary-error-foreground {
    color: var(--color-toast-primary-error-foreground);
  }

  .text-toast-primary-info-foreground {
    color: var(--color-toast-primary-info-foreground);
  }

  .text-toast-primary-success-foreground {
    color: var(--color-toast-primary-success-foreground);
  }

  .text-toast-primary-warning-foreground {
    color: var(--color-toast-primary-warning-foreground);
  }

  .text-toast-secondary-error-foreground {
    color: var(--color-toast-secondary-error-foreground);
  }

  .text-toast-secondary-info-foreground {
    color: var(--color-toast-secondary-info-foreground);
  }

  .text-toast-secondary-success-foreground {
    color: var(--color-toast-secondary-success-foreground);
  }

  .text-toast-secondary-warning-foreground {
    color: var(--color-toast-secondary-warning-foreground);
  }

  .text-white {
    color: var(--color-white);
  }

  .capitalize {
    text-transform: capitalize;
  }

  .lowercase {
    text-transform: lowercase;
  }

  .no-underline {
    text-decoration-line: none;
  }

  .underline {
    text-decoration-line: underline;
  }

  .underline-offset-1 {
    text-underline-offset: 1px;
  }

  .accent-body-background-background-default {
    accent-color: var(--color-body-background-background-default);
  }

  .accent-selection-mark-active {
    accent-color: var(--color-selection-mark-active);
  }

  .opacity-0 {
    opacity: 0;
  }

  .opacity-100 {
    opacity: 1;
  }

  .shadow {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[0_2px_4px_0_rgba\(0\,0\,0\,0\.25\)\] {
    --tw-shadow: 0 2px 4px 0 var(--tw-shadow-color, #00000040);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[0_4px_4px_0_rgba\(0\,0\,0\,0\.20\)\] {
    --tw-shadow: 0 4px 4px 0 var(--tw-shadow-color, #0003);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[0px_-1px_4px_0px_rgba\(0\,_0\,_0\,_0\.10\)\] {
    --tw-shadow: 0px -1px 4px 0px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[0px_0px_4px_2px_rgba\(0\,_0\,_0\,_0\.50\)\] {
    --tw-shadow: 0px 0px 4px 2px var(--tw-shadow-color, #00000080);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[0px_2px_4px_0px_rgba\(0\,0\,0\,0\.25\)\] {
    --tw-shadow: 0px 2px 4px 0px var(--tw-shadow-color, #00000040);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-lg {
    --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-md {
    --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-sm {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .ring {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-stone-300 {
    --tw-shadow-color: oklch(86.9% .005 56.366);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .shadow-stone-300 {
      --tw-shadow-color: color-mix(in oklab, var(--color-stone-300) var(--tw-shadow-alpha), transparent);
    }
  }

  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .blur {
    --tw-blur: blur(8px);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .grayscale {
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .filter {
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .backdrop-brightness-20 {
    --tw-backdrop-brightness: brightness(20%);
    -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
    backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  }

  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, visibility, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-colors {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .duration-100 {
    --tw-duration: .1s;
    transition-duration: .1s;
  }

  .ease-linear {
    --tw-ease: linear;
    transition-timing-function: linear;
  }

  .placeholder\:text-field-default-foreground::placeholder {
    color: var(--color-field-default-foreground);
  }

  .after\:mr-2:after {
    content: var(--tw-content);
    margin-right: calc(var(--spacing) * 2);
  }

  .after\:ml-1:after {
    content: var(--tw-content);
    margin-left: calc(var(--spacing) * 1);
  }

  .after\:inline-block:after {
    content: var(--tw-content);
    display: inline-block;
  }

  .after\:size-1\.5:after {
    content: var(--tw-content);
    width: calc(var(--spacing) * 1.5);
    height: calc(var(--spacing) * 1.5);
  }

  .after\:rounded-full:after {
    content: var(--tw-content);
    content: var(--tw-content);
    border-radius: 3.40282e38px;
    border-radius: var(--radius-full);
  }

  .after\:bg-blue-300:after {
    content: var(--tw-content);
    background-color: var(--color-blue-300);
  }

  .after\:content-\[\"\"\]:after {
    content: var(--tw-content);
    --tw-content: "";
    content: var(--tw-content);
  }

  .last\:border-b-0:last-child {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 0;
  }

  .last-of-type\:pb-padding-4xl:last-of-type {
    padding-bottom: var(--spacing-padding-4xl);
  }

  .focus-within\:ring-2:focus-within {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus-within\:ring-selection-focus-foreground:focus-within {
    --tw-ring-color: var(--color-selection-focus-foreground);
  }

  .focus-within\:ring-offset-2:focus-within {
    --tw-ring-offset-width: 2px;
    --tw-ring-offset-shadow: var(--tw-ring-inset, ) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  }

  @media (hover: hover) {
    .hover\:border-button-error-hover-border:hover {
      border-color: var(--color-button-error-hover-border);
    }

    .hover\:border-button-primary-hover-border:hover {
      border-color: var(--color-button-primary-hover-border);
    }

    .hover\:border-button-secondary-hover-border:hover {
      border-color: var(--color-button-secondary-hover-border);
    }

    .hover\:border-button-success-hover-border:hover {
      border-color: var(--color-button-success-hover-border);
    }

    .hover\:border-button-tertiary-hover-border:hover {
      border-color: var(--color-button-tertiary-hover-border);
    }

    .hover\:border-button-warning-hover-border:hover {
      border-color: var(--color-button-warning-hover-border);
    }

    .hover\:bg-accordion-closed-default-background:hover {
      background-color: var(--color-accordion-closed-default-background);
    }

    .hover\:bg-accordion-open-default-background:hover {
      background-color: var(--color-accordion-open-default-background);
    }

    .hover\:bg-blue-50:hover {
      background-color: var(--color-blue-50);
    }

    .hover\:bg-body-background-background-contrast:hover {
      background-color: var(--color-body-background-background-contrast);
    }

    .hover\:bg-button-error-hover-background:hover {
      background-color: var(--color-button-error-hover-background);
    }

    .hover\:bg-button-primary-hover-background:hover {
      background-color: var(--color-button-primary-hover-background);
    }

    .hover\:bg-button-secondary-hover-background:hover {
      background-color: var(--color-button-secondary-hover-background);
    }

    .hover\:bg-button-success-hover-background:hover {
      background-color: var(--color-button-success-hover-background);
    }

    .hover\:bg-button-tertiary-hover-background:hover {
      background-color: var(--color-button-tertiary-hover-background);
    }

    .hover\:bg-button-warning-hover-background:hover {
      background-color: var(--color-button-warning-hover-background);
    }

    .hover\:bg-gray-50:hover {
      background-color: var(--color-gray-50);
    }

    .hover\:text-black:hover {
      color: var(--color-black);
    }

    .hover\:text-button-error-hover-foreground:hover {
      color: var(--color-button-error-hover-foreground);
    }

    .hover\:text-button-primary-hover-foreground:hover {
      color: var(--color-button-primary-hover-foreground);
    }

    .hover\:text-button-secondary-hover-foreground:hover {
      color: var(--color-button-secondary-hover-foreground);
    }

    .hover\:text-button-tertiary-hover-foreground:hover {
      color: var(--color-button-tertiary-hover-foreground);
    }

    .hover\:text-button-warning-hover-foreground:hover {
      color: var(--color-button-warning-hover-foreground);
    }

    .hover\:no-underline:hover {
      text-decoration-line: none;
    }

    .hover\:underline:hover {
      text-decoration-line: underline;
    }
  }

  .focus\:border-dashed:focus {
    --tw-border-style: dashed;
    border-style: dashed;
  }

  .focus\:border-none:focus {
    --tw-border-style: none;
    border-style: none;
  }

  .focus\:border-button-error-focus-border:focus {
    border-color: var(--color-button-error-focus-border);
  }

  .focus\:border-button-primary-focus-border:focus {
    border-color: var(--color-button-primary-focus-border);
  }

  .focus\:border-button-secondary-focus-border:focus {
    border-color: var(--color-button-secondary-focus-border);
  }

  .focus\:border-button-success-focus-border:focus {
    border-color: var(--color-button-success-focus-border);
  }

  .focus\:border-button-tertiary-focus-border:focus {
    border-color: var(--color-button-tertiary-focus-border);
  }

  .focus\:border-button-warning-focus-border:focus {
    border-color: var(--color-button-warning-focus-border);
  }

  .focus\:border-field-focus-background:focus {
    border-color: var(--color-field-focus-background);
  }

  .focus\:border-field-focus-border:focus {
    border-color: var(--color-field-focus-border);
  }

  .focus\:bg-button-error-focus-background:focus {
    background-color: var(--color-button-error-focus-background);
  }

  .focus\:bg-button-primary-focus-background:focus {
    background-color: var(--color-button-primary-focus-background);
  }

  .focus\:bg-button-secondary-focus-background:focus {
    background-color: var(--color-button-secondary-focus-background);
  }

  .focus\:bg-button-success-focus-background:focus {
    background-color: var(--color-button-success-focus-background);
  }

  .focus\:bg-button-tertiary-focus-background:focus {
    background-color: var(--color-button-tertiary-focus-background);
  }

  .focus\:bg-button-warning-focus-background:focus {
    background-color: var(--color-button-warning-focus-background);
  }

  .focus\:text-button-error-focus-foreground:focus {
    color: var(--color-button-error-focus-foreground);
  }

  .focus\:text-button-primary-focus-foreground:focus {
    color: var(--color-button-primary-focus-foreground);
  }

  .focus\:text-button-secondary-focus-foreground:focus {
    color: var(--color-button-secondary-focus-foreground);
  }

  .focus\:text-button-success-focus-foreground:focus {
    color: var(--color-button-success-focus-foreground);
  }

  .focus\:text-button-tertiary-focus-foreground:focus {
    color: var(--color-button-tertiary-focus-foreground);
  }

  .focus\:text-button-warning-focus-foreground:focus {
    color: var(--color-button-warning-focus-foreground);
  }

  .focus\:text-field-focus-foreground:focus {
    color: var(--color-field-focus-foreground);
  }

  .focus\:ring-0:focus {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus\:ring-2:focus {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus\:ring-button-error-ring:focus {
    --tw-ring-color: var(--color-button-error-ring);
  }

  .focus\:ring-button-primary-ring:focus {
    --tw-ring-color: var(--color-button-primary-ring);
  }

  .focus\:ring-button-secondary-ring:focus {
    --tw-ring-color: var(--color-button-secondary-ring);
  }

  .focus\:ring-button-success-ring:focus {
    --tw-ring-color: var(--color-button-success-ring);
  }

  .focus\:ring-button-warning-ring:focus {
    --tw-ring-color: var(--color-button-warning-ring);
  }

  .focus\:ring-offset-button-error-ring-offset:focus {
    --tw-ring-offset-color: var(--color-button-error-ring-offset);
  }

  .focus\:ring-offset-button-secondary-ring-offset:focus {
    --tw-ring-offset-color: var(--color-button-secondary-ring-offset);
  }

  .focus\:ring-offset-button-success-ring-offset:focus {
    --tw-ring-offset-color: var(--color-button-success-ring-offset);
  }

  .focus\:ring-offset-button-warning-ring-offset:focus {
    --tw-ring-offset-color: var(--color-button-warning-ring-offset);
  }

  .focus\:outline-2:focus {
    outline-style: var(--tw-outline-style);
    outline-width: 2px;
  }

  .focus\:outline-4:focus {
    outline-style: var(--tw-outline-style);
    outline-width: 4px;
  }

  .focus\:outline-offset-0:focus {
    outline-offset: 0px;
  }

  .focus\:outline-offset-3:focus {
    outline-offset: 3px;
  }

  .focus\:outline-offset-4:focus {
    outline-offset: 4px;
  }

  .focus\:outline-button-primary-ring-offset:focus {
    outline-color: var(--color-button-primary-ring-offset);
  }

  .focus\:outline-none:focus {
    --tw-outline-style: none;
    outline-style: none;
  }

  .focus-visible\:border-none:focus-visible {
    --tw-border-style: none;
    border-style: none;
  }

  .focus-visible\:outline-none:focus-visible {
    --tw-outline-style: none;
    outline-style: none;
  }

  .active\:border:active {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .active\:border-none:active {
    --tw-border-style: none;
    border-style: none;
  }

  .active\:border-button-error-active-border:active {
    border-color: var(--color-button-error-active-border);
  }

  .active\:border-button-primary-active-border:active {
    border-color: var(--color-button-primary-active-border);
  }

  .active\:border-button-secondary-active-border:active {
    border-color: var(--color-button-secondary-active-border);
  }

  .active\:border-button-success-active-border:active {
    border-color: var(--color-button-success-active-border);
  }

  .active\:border-button-tertiary-active-border:active {
    border-color: var(--color-button-tertiary-active-border);
  }

  .active\:border-button-warning-active-border:active {
    border-color: var(--color-button-warning-active-border);
  }

  .active\:border-field-active-border:active {
    border-color: var(--color-field-active-border);
  }

  .active\:border-selection-active-border:active {
    border-color: var(--color-selection-active-border);
  }

  .active\:bg-button-error-active-background:active {
    background-color: var(--color-button-error-active-background);
  }

  .active\:bg-button-primary-active-background:active {
    background-color: var(--color-button-primary-active-background);
  }

  .active\:bg-button-secondary-active-background:active {
    background-color: var(--color-button-secondary-active-background);
  }

  .active\:bg-button-success-active-background:active {
    background-color: var(--color-button-success-active-background);
  }

  .active\:bg-button-tertiary-active-background:active {
    background-color: var(--color-button-tertiary-active-background);
  }

  .active\:bg-button-warning-active-background:active {
    background-color: var(--color-button-warning-active-background);
  }

  .active\:bg-field-active-background:active {
    background-color: var(--color-field-active-background);
  }

  .active\:text-button-error-active-foreground:active {
    color: var(--color-button-error-active-foreground);
  }

  .active\:text-button-primary-active-foreground:active {
    color: var(--color-button-primary-active-foreground);
  }

  .active\:text-button-secondary-active-foreground:active {
    color: var(--color-button-secondary-active-foreground);
  }

  .active\:text-button-success-active-foreground:active {
    color: var(--color-button-success-active-foreground);
  }

  .active\:text-button-tertiary-active-foreground:active {
    color: var(--color-button-tertiary-active-foreground);
  }

  .active\:text-button-warning-active-foreground:active {
    color: var(--color-button-warning-active-foreground);
  }

  .active\:text-field-active-foreground:active {
    color: var(--color-field-active-foreground);
  }

  .disabled\:border-button-error-disabled-border:disabled {
    border-color: var(--color-button-error-disabled-border);
  }

  .disabled\:border-button-primary-disabled-border:disabled {
    border-color: var(--color-button-primary-disabled-border);
  }

  .disabled\:border-button-secondary-disabled-border:disabled {
    border-color: var(--color-button-secondary-disabled-border);
  }

  .disabled\:border-button-success-disabled-border:disabled {
    border-color: var(--color-button-success-disabled-border);
  }

  .disabled\:border-button-tertiary-disabled-border:disabled {
    border-color: var(--color-button-tertiary-disabled-border);
  }

  .disabled\:border-button-warning-disabled-border:disabled {
    border-color: var(--color-button-warning-disabled-border);
  }

  .disabled\:bg-button-error-disabled-background:disabled {
    background-color: var(--color-button-error-disabled-background);
  }

  .disabled\:bg-button-primary-disabled-background:disabled {
    background-color: var(--color-button-primary-disabled-background);
  }

  .disabled\:bg-button-secondary-disabled-background:disabled {
    background-color: var(--color-button-secondary-disabled-background);
  }

  .disabled\:bg-button-success-disabled-background:disabled {
    background-color: var(--color-button-success-disabled-background);
  }

  .disabled\:bg-button-tertiary-disabled-background:disabled {
    background-color: var(--color-button-tertiary-disabled-background);
  }

  .disabled\:bg-button-warning-disabled-background:disabled {
    background-color: var(--color-button-warning-disabled-background);
  }

  .disabled\:text-button-error-disabled-foreground:disabled {
    color: var(--color-button-error-disabled-foreground);
  }

  .disabled\:text-button-primary-disabled-foreground:disabled {
    color: var(--color-button-primary-disabled-foreground);
  }

  .disabled\:text-button-secondary-disabled-foreground:disabled {
    color: var(--color-button-secondary-disabled-foreground);
  }

  .disabled\:text-button-success-disabled-foreground:disabled {
    color: var(--color-button-success-disabled-foreground);
  }

  .disabled\:text-button-tertiary-disabled-foreground:disabled {
    color: var(--color-button-tertiary-disabled-foreground);
  }

  .disabled\:text-button-warning-disabled-foreground:disabled {
    color: var(--color-button-warning-disabled-foreground);
  }

  @media (min-width: 40rem) {
    .sm\:w-64 {
      width: calc(var(--spacing) * 64);
    }
  }

  @media (min-width: 48rem) {
    .md\:absolute {
      position: absolute;
    }

    .md\:-top-35 {
      top: calc(var(--spacing) * -35);
    }

    .md\:bottom-\[22px\] {
      bottom: 22px;
    }

    .md\:left-\[30\%\] {
      left: 30%;
    }

    .md\:block {
      display: block;
    }

    .md\:hidden {
      display: none;
    }

    .md\:w-\[45\%\] {
      width: 45%;
    }

    .md\:grid-cols-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .md\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-\[1fr_1fr\] {
      grid-template-columns: 1fr 1fr;
    }

    .md\:grid-cols-\[5fr_4fr_1fr\] {
      grid-template-columns: 5fr 4fr 1fr;
    }

    .md\:gap-4 {
      gap: calc(var(--spacing) * 4);
    }

    .md\:rounded-xs {
      border-radius: var(--radius-xs);
    }

    .md\:border-2 {
      border-style: var(--tw-border-style);
      border-width: 2px;
    }

    .md\:border-l-2 {
      border-left-style: var(--tw-border-style);
      border-left-width: 2px;
    }

    .md\:border-body-border-default {
      border-color: var(--color-body-border-default);
    }

    .md\:p-padding-sm {
      padding: var(--spacing-padding-sm);
    }

    .md\:px-padding-6xl {
      padding-inline: var(--spacing-padding-6xl);
    }

    .md\:after\:ml-2:after {
      content: var(--tw-content);
      margin-left: calc(var(--spacing) * 2);
    }
  }

  @media (min-width: 64rem) {
    .lg\:col-span-1 {
      grid-column: span 1 / span 1;
    }

    .lg\:col-span-2 {
      grid-column: span 2 / span 2;
    }

    .lg\:block {
      display: block;
    }

    .lg\:hidden {
      display: none;
    }

    .lg\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-\[6fr_4fr\] {
      grid-template-columns: 6fr 4fr;
    }

    .lg\:gap-4 {
      gap: calc(var(--spacing) * 4);
    }
  }

  .dark\:after\:bg-blue-900:where(.dark, .dark *):after {
    content: var(--tw-content);
    background-color: var(--color-blue-900);
  }
}

.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;
  top: 0;
  left: 0;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-tile, .leaflet-marker-icon, .leaflet-marker-shadow {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.leaflet-tile::selection {
  background: none;
}

.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

.leaflet-safari .leaflet-tile-container {
  -webkit-transform-origin: 0 0;
  width: 1600px;
  height: 1600px;
}

.leaflet-marker-icon, .leaflet-marker-shadow {
  display: block;
}

.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 {
  width: auto;
  padding: 0;
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container img.leaflet-tile {
  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;
  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: #33b5e566;
}

.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  box-sizing: border-box;
  z-index: 800;
  width: 0;
  height: 0;
}

.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;
}

.leaflet-control {
  z-index: 800;
  pointer-events: visiblePainted;
  pointer-events: auto;
  position: relative;
}

.leaflet-top, .leaflet-bottom {
  z-index: 1000;
  pointer-events: none;
  position: absolute;
}

.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;
}

.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  transition: opacity .2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-animated {
  transform-origin: 0 0;
}

svg.leaflet-zoom-animated {
  will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform .25s cubic-bezier(0, 0, .25, 1);
  -moz-transition: -moz-transform .25s cubic-bezier(0, 0, .25, 1);
  transition: transform .25s cubic-bezier(0, 0, .25, 1);
}

.leaflet-zoom-anim .leaflet-tile, .leaflet-pan-anim .leaflet-tile {
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

.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;
}

.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;
  pointer-events: auto;
}

.leaflet-container {
  outline-offset: 1px;
  background: #ddd;
}

.leaflet-container a {
  color: #0078a8;
}

.leaflet-zoom-box {
  background: #ffffff80;
  border: 2px dotted #38f;
}

.leaflet-container {
  font-family: Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: .75rem;
  line-height: 1.5;
}

.leaflet-bar {
  border-radius: 4px;
  box-shadow: 0 1px 5px #000000a6;
}

.leaflet-bar a {
  text-align: center;
  color: #000;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-decoration: none;
  display: block;
}

.leaflet-bar a, .leaflet-control-layers-toggle {
  background-position: 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: none;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  color: #bbb;
  background-color: #f4f4f4;
}

.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-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.leaflet-control-zoom-in, .leaflet-control-zoom-out {
  text-indent: 1px;
  font: bold 18px Lucida Console, Monaco, monospace;
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

.leaflet-control-layers {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 5px #0006;
}

.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 {
  color: #333;
  background: #fff;
  padding: 6px 10px 6px 6px;
}

.leaflet-control-layers-scrollbar {
  padding-right: 5px;
  overflow: hidden scroll;
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

.leaflet-control-layers label {
  font-size: 1.08333em;
  display: block;
}

.leaflet-control-layers-separator {
  border-top: 1px solid #ddd;
  height: 0;
  margin: 5px -10px 5px -6px;
}

.leaflet-default-icon-path {
  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=");
}

.leaflet-container .leaflet-control-attribution {
  background: #fffc;
  margin: 0;
}

.leaflet-control-attribution, .leaflet-control-scale-line {
  color: #333;
  padding: 0 5px;
  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 {
  width: 1em;
  height: .6669em;
  vertical-align: baseline !important;
  display: inline !important;
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

.leaflet-control-scale-line {
  white-space: nowrap;
  box-sizing: border-box;
  text-shadow: 1px 1px #fff;
  background: #fffc;
  border: 2px solid #777;
  border-top: none;
  padding: 2px 5px 1px;
  line-height: 1.1;
}

.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 {
  background-clip: padding-box;
  border: 2px solid #0003;
}

.leaflet-popup {
  text-align: center;
  margin-bottom: 20px;
  position: absolute;
}

.leaflet-popup-content-wrapper {
  text-align: left;
  border-radius: 12px;
  padding: 1px;
}

.leaflet-popup-content {
  min-height: 1px;
  margin: 13px 24px 13px 20px;
  font-size: 1.08333em;
  line-height: 1.3;
}

.leaflet-popup-content p {
  margin: 1.3em 0;
}

.leaflet-popup-tip-container {
  pointer-events: none;
  width: 40px;
  height: 20px;
  margin-top: -1px;
  margin-left: -20px;
  position: absolute;
  left: 50%;
  overflow: hidden;
}

.leaflet-popup-tip {
  pointer-events: auto;
  width: 17px;
  height: 17px;
  margin: -10px auto 0;
  padding: 1px;
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  color: #333;
  background: #fff;
  box-shadow: 0 3px 14px #0006;
}

.leaflet-container a.leaflet-popup-close-button {
  text-align: center;
  color: #757575;
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  font: 16px / 24px Tahoma, Verdana, sans-serif;
  text-decoration: none;
  position: absolute;
  top: 0;
  right: 0;
}

.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 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  width: 24px;
  filter: progid:DXImageTransform. Microsoft. Matrix(M11= .707107, M12= .707107, M21= -.707107, M22= .707107);
  margin: 0 auto;
}

.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;
}

.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

.leaflet-tooltip {
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 6px;
  position: absolute;
  box-shadow: 0 1px 3px #0006;
}

.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 {
  pointer-events: none;
  content: "";
  background: none;
  border: 6px solid #0000;
  position: absolute;
}

.leaflet-tooltip-bottom {
  margin-top: 6px;
}

.leaflet-tooltip-top {
  margin-top: -6px;
}

.leaflet-tooltip-bottom:before, .leaflet-tooltip-top:before {
  margin-left: -6px;
  left: 50%;
}

.leaflet-tooltip-top:before {
  border-top-color: #fff;
  margin-bottom: -12px;
  bottom: 0;
}

.leaflet-tooltip-bottom:before {
  border-bottom-color: #fff;
  margin-top: -12px;
  margin-left: -6px;
  top: 0;
}

.leaflet-tooltip-left {
  margin-left: -6px;
}

.leaflet-tooltip-right {
  margin-left: 6px;
}

.leaflet-tooltip-left:before, .leaflet-tooltip-right:before {
  margin-top: -6px;
  top: 50%;
}

.leaflet-tooltip-left:before {
  border-left-color: #fff;
  margin-right: -12px;
  right: 0;
}

.leaflet-tooltip-right:before {
  border-right-color: #fff;
  margin-left: -12px;
  left: 0;
}

@media print {
  .leaflet-control {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-Black-CpNxNWNu.ttf") format("truetype");
  font-weight: 900;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-BlackItalic-13YcYvtj.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-ExtraBold-CPCIhJso.ttf") format("truetype");
  font-weight: 800;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-ExtraBoldItalic-DJB2an0I.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-Bold-DYLkMrWl.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-BoldItalic-CUnfcws1.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-SemiBold-C6pNp-zP.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-SemiBoldItalic-BTd4uyaW.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-Medium-NCp-oSqh.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-MediumItalic-C5ToEa6r.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-Regular-CThaxF3g.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-Italic-BcrmLb1Z.ttf") format("truetype");
  font-style: italic;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-Light-C5qOzqni.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-LightItalic-MezfzBjg.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-ExtraLight-T2VpvhOJ.ttf") format("truetype");
  font-weight: 200;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-ExtraLightItalic-BOANLfSE.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: Montserrat;
  src: url("https://cdst.mm.sit.emerald-sneakers.com/assets/Montserrat-ThinItalic-Z2ogTIEG.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

#root, #enrollment {
  background-color: var(--color-body-background-background-default);
  color: var(--color-body-foreground-default);
}

.dark {
  --color-deloitte-green-dot: #86bc24;
  --color-error-text: #f2522a;
  --color-field-focus-background: #000;
  --color-field-focus-border: #c3c3c3;
  --color-field-focus-foreground: #393939;
  --color-field-focus-icon: #9cb7d8;
  --color-field-focus-ring-offset: #868686;
  --color-field-default-border: #393939;
  --color-field-default-foreground: #393939;
  --color-field-default-background: #000;
  --color-field-mandatory: #862d31;
  --color-field-hover-background: #000;
  --color-field-hover-foreground: #868686;
  --color-field-hover-border: #868686;
  --color-field-active-background: #000;
  --color-field-active-foreground: #c3c3c3;
  --color-field-active-border: #868686;
  --color-field-success-background: #000;
  --color-field-success-foreground: #fff;
  --color-field-success-border: #41d6a8;
  --color-field-success-ring: #a1ebd4;
  --color-field-error-background: #000;
  --color-field-error-foreground: #f0f0f0;
  --color-field-error-border: #ca6065;
  --color-field-error-ring: #e5b1b3;
  --color-field-label: #c3c3c3;
  --color-field-ring: #000;
  --color-field-disabled-background: #393939;
  --color-field-disabled-foreground: #4c4c4c;
  --color-field-disabled-border: #393939;
  --color-progress-background: #000;
  --color-progress-progression: #9cb7d8;
  --color-progress-foreground: #fff;
  --color-progress-border: #393939;
  --color-accordion-closed-default-background: #a3d5e1;
  --color-accordion-closed-default-foreground: #000;
  --color-accordion-closed-hover-background: #658f99;
  --color-accordion-closed-hover-foreground: #fff;
  --color-accordion-open-default-background: #000;
  --color-accordion-open-default-foreground: #a3d5e1;
  --color-accordion-open-hover-background: #393939;
  --color-accordion-open-hover-foreground: #658f99;
  --color-accordion-open-content-text: #fff;
  --color-body-background-background-default: #000;
  --color-body-background-black-static: #000;
  --color-body-background-white-static: #fff;
  --color-body-background-background-contrast: #393939;
  --color-body-background-shadow-sm: #ffffff1a;
  --color-body-foreground-description-default: #868686;
  --color-body-foreground-primary-default: #9cb7d8;
  --color-body-foreground-title-default: #868686;
  --color-body-foreground-link: #739ac8;
  --color-body-foreground-primary-contrast: #366eb0;
  --color-body-foreground-secondary: #658f99;
  --color-body-foreground-default: #fff;
  --color-body-foreground-description-contrast: #4c4c4c;
  --color-body-foreground-default-inverse: #000;
  --color-body-border-default: #4c4c4c;
  --color-icon-error: #e5b1b3;
  --color-icon-success: #a1ebd4;
  --color-icon-info: #bfe1ea;
  --color-icon-default: #c3c3c3;
  --color-button-primary-default-background: #9cb7d8;
  --color-button-primary-default-foreground: #000;
  --color-button-primary-default-border: #739ac8;
  --color-button-primary-hover-background: #739ac8;
  --color-button-primary-hover-foreground: #000;
  --color-button-primary-hover-border: #366eb0;
  --color-button-primary-active-background: #366eb0;
  --color-button-primary-active-foreground: #fff;
  --color-button-primary-active-border: #366eb0;
  --color-button-primary-focus-background: #366eb0;
  --color-button-primary-focus-foreground: #000;
  --color-button-primary-focus-border: #366eb0;
  --color-button-primary-ring-offset: #739ac8;
  --color-button-primary-ring: #000;
  --color-button-primary-disabled-background: #0d50a0;
  --color-button-primary-disabled-foreground: #366eb0;
  --color-button-primary-disabled-border: #0d50a0;
  --color-button-error-default-foreground: #fff;
  --color-button-error-default-border: #ca6065;
  --color-button-error-default-background: #862d31;
  --color-button-error-hover-foreground: #000;
  --color-button-error-hover-border: #ca6065;
  --color-button-error-hover-background: #ca6065;
  --color-button-error-active-foreground: #000;
  --color-button-error-active-border: #e5b1b3;
  --color-button-error-active-background: #e5b1b3;
  --color-button-error-ring-offset: #e5b1b3;
  --color-button-error-focus-foreground: #fff;
  --color-button-error-focus-border: #e5b1b3;
  --color-button-error-focus-background: #e5b1b3;
  --color-button-error-disabled-background: #862d31;
  --color-button-error-disabled-foreground: #ca6065;
  --color-button-error-disabled-border: #862d31;
  --color-button-error-ring: #000;
  --color-button-secondary-default-foreground: #9cb7d8;
  --color-button-secondary-default-border: #739ac8;
  --color-button-secondary-default-background: #000;
  --color-button-secondary-hover-foreground: #739ac8;
  --color-button-secondary-hover-border: #366eb0;
  --color-button-secondary-hover-background: #000;
  --color-button-secondary-active-foreground: #366eb0;
  --color-button-secondary-active-border: #366eb0;
  --color-button-secondary-active-background: #000;
  --color-button-secondary-focus-foreground: #366eb0;
  --color-button-secondary-focus-border: #366eb0;
  --color-button-secondary-focus-background: #000;
  --color-button-secondary-disabled-background: #000;
  --color-button-secondary-disabled-foreground: #393939;
  --color-button-secondary-disabled-border: #393939;
  --color-button-secondary-ring: #868686;
  --color-button-secondary-ring-offset: #739ac8;
  --color-button-tertiary-default-background: #fff0;
  --color-button-tertiary-default-foreground: #9cb7d8;
  --color-button-tertiary-default-border: #fff0;
  --color-button-tertiary-hover-background: #fff0;
  --color-button-tertiary-hover-foreground: #739ac8;
  --color-button-tertiary-hover-border: #fff0;
  --color-button-tertiary-active-background: #fff0;
  --color-button-tertiary-active-foreground: #739ac8;
  --color-button-tertiary-active-border: #fff0;
  --color-button-tertiary-focus-background: #fff0;
  --color-button-tertiary-focus-foreground: #739ac8;
  --color-button-tertiary-focus-border: #9cb7d8;
  --color-button-tertiary-disabled-background: #fff0;
  --color-button-tertiary-disabled-foreground: #393939;
  --color-button-tertiary-disabled-border: #fff0;
  --color-button-success-default-background: #129069;
  --color-button-success-default-foreground: #000;
  --color-button-success-default-border: #41d6a8;
  --color-button-success-hover-background: #41d6a8;
  --color-button-success-hover-foreground: #000;
  --color-button-success-hover-border: #41d6a8;
  --color-button-success-active-background: #a1ebd4;
  --color-button-success-active-foreground: #000;
  --color-button-success-active-border: #a1ebd4;
  --color-button-success-focus-background: #a1ebd4;
  --color-button-success-focus-foreground: #000;
  --color-button-success-focus-border: #a1ebd4;
  --color-button-success-disabled-background: #129069;
  --color-button-success-disabled-foreground: #41d6a8;
  --color-button-success-disabled-border: #129069;
  --color-button-success-ring: #000;
  --color-button-success-ring-offset: #a1ebd4;
  --color-button-warning-ring: #000;
  --color-button-warning-ring-offset: #f6e0a1;
  --color-button-warning-default-background: #a27d12;
  --color-button-warning-default-foreground: #000;
  --color-button-warning-default-border: #ecc040;
  --color-button-warning-hover-background: #ecc040;
  --color-button-warning-hover-foreground: #000;
  --color-button-warning-hover-border: #f6e0a1;
  --color-button-warning-active-background: #f6e0a1;
  --color-button-warning-active-foreground: #000;
  --color-button-warning-active-border: #ecc040;
  --color-button-warning-focus-background: #f6e0a1;
  --color-button-warning-focus-foreground: #000;
  --color-button-warning-focus-border: #f6e0a1;
  --color-button-warning-disabled-background: #a27d12;
  --color-button-warning-disabled-foreground: #ecc040;
  --color-button-warning-disabled-border: #a27d12;
  --color-toast-primary-info-background: #bfe1ea;
  --color-toast-primary-info-foreground: #000;
  --color-toast-primary-info-border: #658f99;
  --color-toast-primary-success-background: #a1ebd4;
  --color-toast-primary-success-foreground: #000;
  --color-toast-primary-success-border: #107e5c;
  --color-toast-primary-error-background: #e5b1b3;
  --color-toast-primary-error-foreground: #fff;
  --color-toast-primary-error-border: #75272b;
  --color-toast-primary-warning-background: #f6e0a1;
  --color-toast-primary-warning-foreground: #000;
  --color-toast-primary-warning-border: #8e6d0f;
  --color-toast-secondary-error-foreground: #fff;
  --color-toast-secondary-error-border: #862d31;
  --color-toast-secondary-warning-foreground: #fff;
  --color-toast-secondary-warning-border: #a27d12;
  --color-toast-secondary-success-foreground: #fff;
  --color-toast-secondary-success-border: #129069;
  --color-toast-secondary-info-foreground: #fff;
  --color-toast-secondary-info-border: #90ccdb;
  --color-selection-default-background: #000;
  --color-selection-default-border: #4c4c4c;
  --color-selection-default-foreground: #c3c3c3;
  --color-selection-mark-active: #739ac8;
  --color-selection-ring-offset: #739ac8;
  --color-selection-hover-background: #000;
  --color-selection-hover-foreground: #c3c3c3;
  --color-selection-hover-border: #868686;
  --color-selection-ring: #9cb7d8;
  --color-selection-focus-background: #000;
  --color-selection-focus-foreground: #c3c3c3;
  --color-selection-focus-border: #9cb7d8;
  --color-selection-disabled-background: #393939;
  --color-selection-disabled-foreground: #4c4c4c;
  --color-selection-disabled-border: #4c4c4c;
  --color-selection-mark-inactive: #393939;
  --color-selection-active-background: #000;
  --color-selection-active-foreground: #c3c3c3;
  --color-selection-active-border: #9cb7d8;
  --color-badge-neutral-default-background: #393939;
  --color-badge-neutral-default-foreground: #fff;
  --color-badge-neutral-hover-background: #6d6d6d;
  --color-badge-neutral-hover-foreground: #fff;
  --color-badge-neutral-active-background: #f0f0f0;
  --color-badge-neutral-active-foreground: #000;
  --color-badge-primary-default-background: #739ac8;
  --color-badge-primary-default-foreground: #000;
  --color-badge-primary-hover-background: #739ac8;
  --color-badge-primary-hover-foreground: #000;
  --color-badge-primary-active-background: #366eb0;
  --color-badge-primary-active-foreground: #fff;
  --color-badge-success-default-background: #a1ebd4;
  --color-badge-success-default-foreground: #000;
  --color-badge-success-hover-background: #41d6a8;
  --color-badge-success-hover-foreground: #fff;
  --color-badge-success-active-background: #a1ebd4;
  --color-badge-success-active-foreground: #000;
  --color-badge-error-default-background: #e5b1b3;
  --color-badge-error-default-foreground: #000;
  --color-badge-error-hover-background: #ca6065;
  --color-badge-error-hover-foreground: #000;
  --color-badge-error-active-background: #75272b;
  --color-badge-error-active-foreground: #000;
  --color-badge-warning-default-background: #f6e0a1;
  --color-badge-warning-default-foreground: #000;
  --color-badge-warning-hover-background: #ecc040;
  --color-badge-warning-hover-foreground: #000;
  --color-badge-warning-active-background: #8e6d0f;
  --color-badge-warning-active-foreground: #000;
  --color-badge-secondary-default-background: #d1eaf0;
  --color-badge-secondary-default-foreground: #000;
  --color-badge-secondary-hover-background: #bfe1ea;
  --color-badge-secondary-hover-foreground: #000;
  --color-badge-secondary-active-background: #a3d5e1;
  --color-badge-secondary-active-foreground: #000;
  --color-divider-default: #393939;
  --color-divider-primary: #739ac8;
  --color-divider-secondary: #658f99;
  --color-dialog-footer-background: #393939;
  --color-dialog-footer-title: #fff;
  --color-dialog-overlay: #fffc;
  --color-list-foreground-primary: #9cb7d8;
  --color-list-foreground-secondary: #c3c3c3;
  --color-list-foreground-tertiary: #4c4c4c;
  --color-list-background-default: #000;
  --color-list-background-hover: #000;
  --color-list-border: #393939;
  --color-illustration-dim-1: #9cb7d8;
  --color-illustration-dim-2: #739ac8;
  --color-illustration-dim-4: #a3d5e1;
  --color-illustration-dim-3: #366eb0;
  --color-footer-background: #c3c3c3;
  --color-footer-foreground: #393939;
  --color-footer-divider: #658f99;
  --color-mode: Dark;
}

:root {
  --spacing-padding-4xs: .062rem;
  --spacing-padding-3xs: .188rem;
  --spacing-padding-2xs: .375rem;
  --spacing-padding-xs: .5rem;
  --spacing-padding-sm: .625rem;
  --spacing-padding-md: .75rem;
  --spacing-padding-lg: .875rem;
  --spacing-padding-xl: 1rem;
  --spacing-padding-2xl: 1.125rem;
  --spacing-padding-3xl: 1.25rem;
  --spacing-padding-4xl: 1.5rem;
  --spacing-padding-5xl: 1.75rem;
  --spacing-padding-6xl: 2rem;
  --spacing-padding-7xl: 2.5rem;
  --spacing-padding-8xl: 3rem;
  --spacing-padding-9xl: 3.5rem;
  --radius-xs: .375rem;
  --radius-sm: .5rem;
  --radius-md: .625rem;
  --radius-lg: .75rem;
  --radius-xl: .875rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.125rem;
  --radius-full: 6.25rem;
  --radius-4xl: 1.25rem;
  --radius-5xl: 1.5rem;
  --radius-none: 0rem;
  --radius-6xl: 1.75rem;
  --radius-2xs: .188rem;
  --viewport-width: 20rem;
  --viewport-height: 35.5rem;
  --spacing-card-width-sm: 18.5rem;
  --spacing-card-width-md: 18.5rem;
  --spacing-card-width-lg: 18.5rem;
  --spacing-modal-width-sm: 18.5rem;
  --spacing-modal-width-md: 18.5rem;
  --spacing-modal-width-lg: 18.5rem;
  --spacing-modal-height-max: 28.75rem;
  --spacing-input-max-width: 17.5rem;
  --spacing-input-width: 7.5rem;
  --spacing-icon-xs: .5rem;
  --spacing-icon-sm: .625rem;
  --spacing-icon-md: .75rem;
  --spacing-icon-lg: .875rem;
  --spacing-icon-xl: 1rem;
  --spacing-icon-2xl: 1.125rem;
  --spacing-icon-3xl: 1.25rem;
  --spacing-icon-4xl: 1.5rem;
  --spacing-icon-5xl: 1.75rem;
  --grid-container: 18.5rem;
  --grid-margin: .75rem;
  --grid-gutter: .75rem;
  --grid-count: .25rem;
  --border-size-1: .062rem;
  --border-size-2: .125rem;
  --border-size-4: .25rem;
  --border-size-none: 0rem;
  --text-h1-bold-size: 3rem;
  --font-weight-h1-bold-weight: 700;
  --leading-h1-bold-line-height: 3.5rem;
  --tracking-h1-bold-letter-spacing: -.002rem;
  --text-h1-medium-size: 3rem;
  --font-weight-h1-medium-weight: 500;
  --leading-h1-medium-line-height: 3.5rem;
  --tracking-h1-medium-letter-spacing: -.05rem;
  --text-h1-regular-size: 3rem;
  --font-weight-h1-regular-weight: 400;
  --leading-h1-regular-line-height: 3.5rem;
  --tracking-h1-regular-letter-spacing: -.05rem;
  --text-h2-bold-size: 2.5rem;
  --font-weight-h2-bold-weight: 700;
  --leading-h2-bold-line-height: 3rem;
  --tracking-h2-bold-letter-spacing: -.002rem;
  --text-h2-medium-size: 2.5rem;
  --font-weight-h2-medium-weight: 500;
  --leading-h2-medium-line-height: 3rem;
  --tracking-h2-medium-letter-spacing: -.05rem;
  --text-h2-regular-size: 2.5rem;
  --font-weight-h2-regular-weight: 400;
  --leading-h2-regular-line-height: 3rem;
  --tracking-h2-regular-letter-spacing: -.05rem;
  --text-h3-bold-size: 2rem;
  --font-weight-h3-bold-weight: 700;
  --leading-h3-bold-line-height: 2.5rem;
  --tracking-h3-bold-letter-spacing: -.002rem;
  --text-h3-medium-size: 2rem;
  --font-weight-h3-medium-weight: 500;
  --leading-h3-medium-line-height: 2.5rem;
  --tracking-h3-medium-letter-spacing: -.05rem;
  --text-h3-regular-size: 2rem;
  --font-weight-h3-regular-weight: 400;
  --leading-h3-regular-line-height: 2.5rem;
  --tracking-h3-regular-letter-spacing: -.05rem;
  --text-h4-bold-size: 1.75rem;
  --font-weight-h4-bold-weight: 700;
  --leading-h4-bold-line-height: 2rem;
  --tracking-h4-bold-letter-spacing: -.002rem;
  --text-h4-medium-size: 1.75rem;
  --font-weight-h4-medium-weight: 500;
  --leading-h4-medium-line-height: 2rem;
  --tracking-h4-medium-letter-spacing: -.05rem;
  --text-h4-regular-size: 1.75rem;
  --font-weight-h4-regular-weight: 400;
  --leading-h4-regular-line-height: 2rem;
  --tracking-h4-regular-letter-spacing: -.05rem;
  --text-h5-bold-size: 1.5rem;
  --font-weight-h5-bold-weight: 700;
  --leading-h5-bold-line-height: 1.75rem;
  --tracking-h5-bold-letter-spacing: -.002rem;
  --text-h5-medium-size: 1.5rem;
  --font-weight-h5-medium-weight: 500;
  --leading-h5-medium-line-height: 1.75rem;
  --tracking-h5-medium-letter-spacing: -.002rem;
  --text-h5-regular-size: 1.5rem;
  --font-weight-h5-regular-weight: 400;
  --leading-h5-regular-line-height: 1.75rem;
  --tracking-h5-regular-letter-spacing: -.002rem;
  --text-h6-bold-size: 1.25rem;
  --font-weight-h6-bold-weight: 700;
  --leading-h6-bold-line-height: 1.5rem;
  --tracking-h6-bold-letter-spacing: 0rem;
  --text-h6-medium-size: 1.25rem;
  --font-weight-h6-medium-weight: 500;
  --leading-h6-medium-line-height: 1.5rem;
  --tracking-h6-medium-letter-spacing: 0rem;
  --text-h6-regular-size: 1.25rem;
  --font-weight-h6-regular-weight: 400;
  --leading-h6-regular-line-height: 1.5rem;
  --tracking-h6-regular-letter-spacing: 0rem;
  --text-p-bold-size: .875rem;
  --font-weight-p-bold-weight: 700;
  --leading-p-bold-line-height: 1rem;
  --tracking-p-bold-letter-spacing: 0rem;
  --text-p-medium-size: .875rem;
  --font-weight-p-medium-weight: 500;
  --leading-p-medium-line-height: 1rem;
  --tracking-p-medium-letter-spacing: 0rem;
  --text-p-regular-size: .875rem;
  --font-weight-p-regular-weight: 400;
  --leading-p-regular-line-height: 1rem;
  --tracking-p-regular-letter-spacing: 0rem;
  --text-subheading-bold-size: 1.125rem;
  --font-weight-subheading-bold-weight: 700;
  --leading-subheading-bold-line-height: 1.25rem;
  --tracking-subheading-bold-letter-spacing: .025rem;
  --text-subheading-medium-size: 1.125rem;
  --font-weight-subheading-medium-weight: 500;
  --leading-subheading-medium-line-height: 1.25rem;
  --tracking-subheading-medium-letter-spacing: .025rem;
  --text-subheading-regular-size: 1.125rem;
  --font-weight-subheading-regular-weight: 400;
  --leading-subheading-regular-line-height: 1.25rem;
  --tracking-subheading-regular-letter-spacing: .025rem;
  --text-caption-bold-size: .75rem;
  --font-weight-caption-bold-weight: 700;
  --leading-caption-bold-line-height: .875rem;
  --tracking-caption-bold-letter-spacing: 0rem;
  --text-caption-medium-size: .75rem;
  --font-weight-caption-medium-weight: 500;
  --leading-caption-medium-line-height: .875rem;
  --tracking-caption-medium-letter-spacing: 0rem;
  --text-caption-regular-size: .75rem;
  --font-weight-caption-regular-weight: 400;
  --leading-caption-regular-line-height: .875rem;
  --tracking-caption-regular-letter-spacing: 0rem;
  --text-note-bold-size: .625rem;
  --font-weight-note-bold-weight: 700;
  --leading-note-bold-line-height: .75rem;
  --tracking-note-bold-letter-spacing: 0rem;
  --text-note-medium-size: .625rem;
  --font-weight-note-medium-weight: 500;
  --leading-note-medium-line-height: .75rem;
  --tracking-note-medium-letter-spacing: 0rem;
  --text-note-regular-size: .625rem;
  --font-weight-note-regular-weight: 400;
  --leading-note-regular-line-height: .75rem;
  --tracking-note-regular-letter-spacing: 0rem;
  --text-tiny-bold-size: .5rem;
  --font-weight-tiny-bold-weight: 700;
  --leading-tiny-bold-line-height: .625rem;
  --tracking-tiny-bold-letter-spacing: 0rem;
  --text-tiny-medium-size: .5rem;
  --font-weight-tiny-medium-weight: 500;
  --leading-tiny-medium-line-height: .625rem;
  --tracking-tiny-medium-letter-spacing: 0rem;
  --text-tiny-regular-size: .5rem;
  --font-weight-tiny-regular-weight: 400;
  --leading-tiny-regular-line-height: .625rem;
  --tracking-tiny-regular-letter-spacing: 0rem;
  --text-button-xs-size: .875rem;
  --leading-button-xs-line-height: 1rem;
  --tracking-button-xs-letter-spacing: 0rem;
  --text-button-sm-size: 1.25rem;
  --leading-button-sm-line-height: 1.5rem;
  --tracking-button-sm-letter-spacing: 0rem;
  --text-button-md-size: 1.5rem;
  --leading-button-md-line-height: 1.75rem;
  --tracking-button-md-letter-spacing: -.002rem;
  --text-button-lg-size: 1.75rem;
  --leading-button-lg-line-height: 2rem;
  --tracking-button-lg-letter-spacing: -.002rem;
  --font-weight-button-weight: 700;
  --effects-outer-elevation-1-x: 0rem;
  --effects-outer-elevation-1-y: .062rem;
  --effects-outer-elevation-1-blur: .188rem;
  --effects-outer-elevation-1-spread: 0rem;
  --effects-outer-elevation-2-x: 0rem;
  --effects-outer-elevation-2-y: .188rem;
  --effects-outer-elevation-2-blur: .375rem;
  --effects-outer-elevation-2-spread: 0rem;
  --effects-outer-elevation-3-x: 0rem;
  --effects-outer-elevation-3-y: .375rem;
  --effects-outer-elevation-3-blur: .75rem;
  --effects-outer-elevation-3-spread: 0rem;
  --effects-outer-elevation-4-x: 0rem;
  --effects-outer-elevation-4-y: .5rem;
  --effects-outer-elevation-4-blur: 1rem;
  --effects-outer-elevation-4-spread: 0rem;
  --effects-outer-elevation-5-x: 0rem;
  --effects-outer-elevation-5-y: .75rem;
  --effects-outer-elevation-5-blur: 1.5rem;
  --effects-outer-elevation-5-spread: 0rem;
  --effects-inner-elevation-1-x: 0rem;
  --effects-inner-elevation-1-y: .062rem;
  --effects-inner-elevation-1-blur: .188rem;
  --effects-inner-elevation-1-spread: 0rem;
  --effects-inner-elevation-2-x: 0rem;
  --effects-inner-elevation-2-y: .188rem;
  --effects-inner-elevation-2-blur: .375rem;
  --effects-inner-elevation-2-spread: 0rem;
  --effects-inner-elevation-3-x: 0rem;
  --effects-inner-elevation-3-y: .375rem;
  --effects-inner-elevation-3-blur: .75rem;
  --effects-inner-elevation-3-spread: 0rem;
  --effects-inner-elevation-4-x: 0rem;
  --effects-inner-elevation-4-y: .5rem;
  --effects-inner-elevation-4-blur: 1rem;
  --effects-inner-elevation-4-spread: 0rem;
  --effects-inner-elevation-5-x: 0rem;
  --effects-inner-elevation-5-y: .75rem;
  --effects-inner-elevation-5-blur: 1.5rem;
  --effects-inner-elevation-5-spread: 0rem;
  --brand-font-primary: Montserrat;
  --brand-logo: Default;
  --brand-font-secondary: Merriweather;
  --brand-font-tertiary: Fira Mono;
}

@media (min-width: 48rem) {
  :root {
    --spacing-padding-4xs: .188rem;
    --spacing-padding-3xs: .375rem;
    --spacing-padding-2xs: .5rem;
    --spacing-padding-xs: .625rem;
    --spacing-padding-sm: .75rem;
    --spacing-padding-md: .875rem;
    --spacing-padding-lg: 1rem;
    --spacing-padding-xl: 1.125rem;
    --spacing-padding-2xl: 1.25rem;
    --spacing-padding-3xl: 1.5rem;
    --spacing-padding-4xl: 1.75rem;
    --spacing-padding-5xl: 2rem;
    --spacing-padding-6xl: 2.5rem;
    --spacing-padding-7xl: 3rem;
    --spacing-padding-8xl: 3.5rem;
    --spacing-padding-9xl: 4rem;
    --radius-xs: .5rem;
    --radius-sm: .625rem;
    --radius-md: .75rem;
    --radius-lg: .875rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.125rem;
    --radius-3xl: 1.25rem;
    --radius-full: 6.25rem;
    --radius-4xl: 1.5rem;
    --radius-5xl: 1.75rem;
    --radius-none: 0rem;
    --radius-6xl: 2rem;
    --radius-2xs: .375rem;
    --viewport-width: 46.5rem;
    --viewport-height: 70.812rem;
    --spacing-card-width-sm: 25rem;
    --spacing-card-width-md: 43.75rem;
    --spacing-card-width-lg: 87.5rem;
    --spacing-modal-width-sm: 18.5rem;
    --spacing-modal-width-md: 35rem;
    --spacing-modal-width-lg: 48rem;
    --spacing-modal-height-max: 53.75rem;
    --spacing-input-max-width: 25rem;
    --spacing-input-width: 25rem;
    --spacing-icon-xs: .625rem;
    --spacing-icon-sm: .75rem;
    --spacing-icon-md: .875rem;
    --spacing-icon-lg: 1rem;
    --spacing-icon-xl: 1.125rem;
    --spacing-icon-2xl: 1.25rem;
    --spacing-icon-3xl: 1.5rem;
    --spacing-icon-4xl: 1.75rem;
    --spacing-icon-5xl: 2rem;
    --grid-container: 42.5rem;
    --grid-margin: 2rem;
    --grid-gutter: 1rem;
    --grid-count: .5rem;
    --border-size-1: .062rem;
    --border-size-2: .125rem;
    --border-size-4: .25rem;
    --border-size-none: 0rem;
    --text-h1-bold-size: 3.5rem;
    --font-weight-h1-bold-weight: 700;
    --leading-h1-bold-line-height: 4rem;
    --tracking-h1-bold-letter-spacing: -.002rem;
    --text-h1-medium-size: 3.5rem;
    --font-weight-h1-medium-weight: 500;
    --leading-h1-medium-line-height: 4rem;
    --tracking-h1-medium-letter-spacing: -.05rem;
    --text-h1-regular-size: 3.5rem;
    --font-weight-h1-regular-weight: 400;
    --leading-h1-regular-line-height: 4rem;
    --tracking-h1-regular-letter-spacing: -.05rem;
    --text-h2-bold-size: 3rem;
    --font-weight-h2-bold-weight: 700;
    --leading-h2-bold-line-height: 3.5rem;
    --tracking-h2-bold-letter-spacing: -.002rem;
    --text-h2-medium-size: 3rem;
    --font-weight-h2-medium-weight: 500;
    --leading-h2-medium-line-height: 3.5rem;
    --tracking-h2-medium-letter-spacing: -.05rem;
    --text-h2-regular-size: 3rem;
    --font-weight-h2-regular-weight: 400;
    --leading-h2-regular-line-height: 3.5rem;
    --tracking-h2-regular-letter-spacing: -.05rem;
    --text-h3-bold-size: 2.5rem;
    --font-weight-h3-bold-weight: 700;
    --leading-h3-bold-line-height: 3rem;
    --tracking-h3-bold-letter-spacing: -.002rem;
    --text-h3-medium-size: 2.5rem;
    --font-weight-h3-medium-weight: 500;
    --leading-h3-medium-line-height: 3rem;
    --tracking-h3-medium-letter-spacing: -.05rem;
    --text-h3-regular-size: 2.5rem;
    --font-weight-h3-regular-weight: 400;
    --leading-h3-regular-line-height: 3rem;
    --tracking-h3-regular-letter-spacing: -.05rem;
    --text-h4-bold-size: 2rem;
    --font-weight-h4-bold-weight: 700;
    --leading-h4-bold-line-height: 2.5rem;
    --tracking-h4-bold-letter-spacing: -.002rem;
    --text-h4-medium-size: 2rem;
    --font-weight-h4-medium-weight: 500;
    --leading-h4-medium-line-height: 2.5rem;
    --tracking-h4-medium-letter-spacing: -.05rem;
    --text-h4-regular-size: 2rem;
    --font-weight-h4-regular-weight: 400;
    --leading-h4-regular-line-height: 2.5rem;
    --tracking-h4-regular-letter-spacing: -.05rem;
    --text-h5-bold-size: 1.75rem;
    --font-weight-h5-bold-weight: 700;
    --leading-h5-bold-line-height: 2rem;
    --tracking-h5-bold-letter-spacing: -.002rem;
    --text-h5-medium-size: 1.75rem;
    --font-weight-h5-medium-weight: 500;
    --leading-h5-medium-line-height: 2rem;
    --tracking-h5-medium-letter-spacing: -.002rem;
    --text-h5-regular-size: 1.75rem;
    --font-weight-h5-regular-weight: 400;
    --leading-h5-regular-line-height: 2rem;
    --tracking-h5-regular-letter-spacing: -.002rem;
    --text-h6-bold-size: 1.5rem;
    --font-weight-h6-bold-weight: 700;
    --leading-h6-bold-line-height: 1.75rem;
    --tracking-h6-bold-letter-spacing: 0rem;
    --text-h6-medium-size: 1.5rem;
    --font-weight-h6-medium-weight: 500;
    --leading-h6-medium-line-height: 1.75rem;
    --tracking-h6-medium-letter-spacing: 0rem;
    --text-h6-regular-size: 1.5rem;
    --font-weight-h6-regular-weight: 400;
    --leading-h6-regular-line-height: 1.75rem;
    --tracking-h6-regular-letter-spacing: 0rem;
    --text-p-bold-size: 1rem;
    --font-weight-p-bold-weight: 700;
    --leading-p-bold-line-height: 1.125rem;
    --tracking-p-bold-letter-spacing: 0rem;
    --text-p-medium-size: 1rem;
    --font-weight-p-medium-weight: 500;
    --leading-p-medium-line-height: 1.125rem;
    --tracking-p-medium-letter-spacing: 0rem;
    --text-p-regular-size: 1rem;
    --font-weight-p-regular-weight: 400;
    --leading-p-regular-line-height: 1.125rem;
    --tracking-p-regular-letter-spacing: 0rem;
    --text-subheading-bold-size: 1.25rem;
    --font-weight-subheading-bold-weight: 700;
    --leading-subheading-bold-line-height: 1.5rem;
    --tracking-subheading-bold-letter-spacing: .025rem;
    --text-subheading-medium-size: 1.25rem;
    --font-weight-subheading-medium-weight: 500;
    --leading-subheading-medium-line-height: 1.5rem;
    --tracking-subheading-medium-letter-spacing: .025rem;
    --text-subheading-regular-size: 1.25rem;
    --font-weight-subheading-regular-weight: 400;
    --leading-subheading-regular-line-height: 1.5rem;
    --tracking-subheading-regular-letter-spacing: .025rem;
    --text-caption-bold-size: .875rem;
    --font-weight-caption-bold-weight: 700;
    --leading-caption-bold-line-height: 1rem;
    --tracking-caption-bold-letter-spacing: 0rem;
    --text-caption-medium-size: .875rem;
    --font-weight-caption-medium-weight: 500;
    --leading-caption-medium-line-height: 1rem;
    --tracking-caption-medium-letter-spacing: 0rem;
    --text-caption-regular-size: .875rem;
    --font-weight-caption-regular-weight: 400;
    --leading-caption-regular-line-height: 1rem;
    --tracking-caption-regular-letter-spacing: 0rem;
    --text-note-bold-size: .75rem;
    --font-weight-note-bold-weight: 700;
    --leading-note-bold-line-height: .875rem;
    --tracking-note-bold-letter-spacing: 0rem;
    --text-note-medium-size: .75rem;
    --font-weight-note-medium-weight: 500;
    --leading-note-medium-line-height: .875rem;
    --tracking-note-medium-letter-spacing: 0rem;
    --text-note-regular-size: .75rem;
    --font-weight-note-regular-weight: 400;
    --leading-note-regular-line-height: .875rem;
    --tracking-note-regular-letter-spacing: 0rem;
    --text-tiny-bold-size: .625rem;
    --font-weight-tiny-bold-weight: 700;
    --leading-tiny-bold-line-height: .75rem;
    --tracking-tiny-bold-letter-spacing: 0rem;
    --text-tiny-medium-size: .625rem;
    --font-weight-tiny-medium-weight: 500;
    --leading-tiny-medium-line-height: .75rem;
    --tracking-tiny-medium-letter-spacing: 0rem;
    --text-tiny-regular-size: .625rem;
    --font-weight-tiny-regular-weight: 400;
    --leading-tiny-regular-line-height: .75rem;
    --tracking-tiny-regular-letter-spacing: 0rem;
    --text-button-xs-size: 1rem;
    --leading-button-xs-line-height: 1.125rem;
    --tracking-button-xs-letter-spacing: 0rem;
    --text-button-sm-size: 1.5rem;
    --leading-button-sm-line-height: 1.75rem;
    --tracking-button-sm-letter-spacing: 0rem;
    --text-button-md-size: 1.75rem;
    --leading-button-md-line-height: 2rem;
    --tracking-button-md-letter-spacing: -.002rem;
    --text-button-lg-size: 2rem;
    --leading-button-lg-line-height: 2.5rem;
    --tracking-button-lg-letter-spacing: -.002rem;
    --font-weight-button-weight: 700;
  }
}

@media (min-width: 90rem) {
  :root {
    --spacing-padding-4xs: .375rem;
    --spacing-padding-3xs: .5rem;
    --spacing-padding-2xs: .625rem;
    --spacing-padding-xs: .75rem;
    --spacing-padding-sm: .875rem;
    --spacing-padding-md: 1rem;
    --spacing-padding-lg: 1.125rem;
    --spacing-padding-xl: 1.25rem;
    --spacing-padding-2xl: 1.5rem;
    --spacing-padding-3xl: 1.75rem;
    --spacing-padding-4xl: 2rem;
    --spacing-padding-5xl: 2.5rem;
    --spacing-padding-6xl: 3rem;
    --spacing-padding-7xl: 3.5rem;
    --spacing-padding-8xl: 4rem;
    --spacing-padding-9xl: 4.625rem;
    --radius-xs: .625rem;
    --radius-sm: .75rem;
    --radius-md: .875rem;
    --radius-lg: 1rem;
    --radius-xl: 1.125rem;
    --radius-2xl: 1.25rem;
    --radius-3xl: 1.5rem;
    --radius-full: 6.25rem;
    --radius-4xl: 1.75rem;
    --radius-5xl: 2rem;
    --radius-none: 0rem;
    --radius-6xl: 2.5rem;
    --radius-2xs: .5rem;
    --viewport-width: 90rem;
    --viewport-height: 64rem;
    --spacing-card-width-sm: 25rem;
    --spacing-card-width-md: 43.75rem;
    --spacing-card-width-lg: 87.5rem;
    --spacing-modal-width-sm: 35rem;
    --spacing-modal-width-md: 48rem;
    --spacing-modal-width-lg: 53.75rem;
    --spacing-modal-height-max: 53.75rem;
    --spacing-input-max-width: 25rem;
    --spacing-input-width: 25rem;
    --spacing-icon-xs: .75rem;
    --spacing-icon-sm: .875rem;
    --spacing-icon-md: 1rem;
    --spacing-icon-lg: 1.125rem;
    --spacing-icon-xl: 1.25rem;
    --spacing-icon-2xl: 1.5rem;
    --spacing-icon-3xl: 1.75rem;
    --spacing-icon-4xl: 2rem;
    --spacing-icon-5xl: 2.5rem;
    --grid-container: 85rem;
    --grid-margin: 2.5rem;
    --grid-gutter: 1rem;
    --grid-count: .75rem;
    --border-size-1: .062rem;
    --border-size-2: .125rem;
    --border-size-4: .25rem;
    --border-size-none: 0rem;
    --text-h1-bold-size: 4rem;
    --font-weight-h1-bold-weight: 700;
    --leading-h1-bold-line-height: 4.625rem;
    --tracking-h1-bold-letter-spacing: -.002rem;
    --text-h1-medium-size: 4rem;
    --font-weight-h1-medium-weight: 500;
    --leading-h1-medium-line-height: 4.625rem;
    --tracking-h1-medium-letter-spacing: -.05rem;
    --text-h1-regular-size: 4rem;
    --font-weight-h1-regular-weight: 400;
    --leading-h1-regular-line-height: 4.625rem;
    --tracking-h1-regular-letter-spacing: -.05rem;
    --text-h2-bold-size: 3.5rem;
    --font-weight-h2-bold-weight: 700;
    --leading-h2-bold-line-height: 4rem;
    --tracking-h2-bold-letter-spacing: -.002rem;
    --text-h2-medium-size: 3.5rem;
    --font-weight-h2-medium-weight: 500;
    --leading-h2-medium-line-height: 4rem;
    --tracking-h2-medium-letter-spacing: -.05rem;
    --text-h2-regular-size: 3.5rem;
    --font-weight-h2-regular-weight: 400;
    --leading-h2-regular-line-height: 4rem;
    --tracking-h2-regular-letter-spacing: -.05rem;
    --text-h3-bold-size: 3rem;
    --font-weight-h3-bold-weight: 700;
    --leading-h3-bold-line-height: 3.5rem;
    --tracking-h3-bold-letter-spacing: -.002rem;
    --text-h3-medium-size: 3rem;
    --font-weight-h3-medium-weight: 500;
    --leading-h3-medium-line-height: 3.5rem;
    --tracking-h3-medium-letter-spacing: -.05rem;
    --text-h3-regular-size: 3rem;
    --font-weight-h3-regular-weight: 400;
    --leading-h3-regular-line-height: 3.5rem;
    --tracking-h3-regular-letter-spacing: -.05rem;
    --text-h4-bold-size: 2.5rem;
    --font-weight-h4-bold-weight: 700;
    --leading-h4-bold-line-height: 3rem;
    --tracking-h4-bold-letter-spacing: -.002rem;
    --text-h4-medium-size: 2.5rem;
    --font-weight-h4-medium-weight: 500;
    --leading-h4-medium-line-height: 3rem;
    --tracking-h4-medium-letter-spacing: -.05rem;
    --text-h4-regular-size: 2.5rem;
    --font-weight-h4-regular-weight: 400;
    --leading-h4-regular-line-height: 3rem;
    --tracking-h4-regular-letter-spacing: -.05rem;
    --text-h5-bold-size: 2rem;
    --font-weight-h5-bold-weight: 700;
    --leading-h5-bold-line-height: 2.5rem;
    --tracking-h5-bold-letter-spacing: -.002rem;
    --text-h5-medium-size: 2rem;
    --font-weight-h5-medium-weight: 500;
    --leading-h5-medium-line-height: 2.5rem;
    --tracking-h5-medium-letter-spacing: -.002rem;
    --text-h5-regular-size: 2rem;
    --font-weight-h5-regular-weight: 400;
    --leading-h5-regular-line-height: 2.5rem;
    --tracking-h5-regular-letter-spacing: -.002rem;
    --text-h6-bold-size: 1.75rem;
    --font-weight-h6-bold-weight: 700;
    --leading-h6-bold-line-height: 2rem;
    --tracking-h6-bold-letter-spacing: 0rem;
    --text-h6-medium-size: 1.75rem;
    --font-weight-h6-medium-weight: 500;
    --leading-h6-medium-line-height: 2rem;
    --tracking-h6-medium-letter-spacing: 0rem;
    --text-h6-regular-size: 1.75rem;
    --font-weight-h6-regular-weight: 400;
    --leading-h6-regular-line-height: 2rem;
    --tracking-h6-regular-letter-spacing: 0rem;
    --text-p-bold-size: 1.125rem;
    --font-weight-p-bold-weight: 700;
    --leading-p-bold-line-height: 1.25rem;
    --tracking-p-bold-letter-spacing: 0rem;
    --text-p-medium-size: 1.125rem;
    --font-weight-p-medium-weight: 500;
    --leading-p-medium-line-height: 1.25rem;
    --tracking-p-medium-letter-spacing: 0rem;
    --text-p-regular-size: 1.125rem;
    --font-weight-p-regular-weight: 400;
    --leading-p-regular-line-height: 1.25rem;
    --tracking-p-regular-letter-spacing: 0rem;
    --text-subheading-bold-size: 1.5rem;
    --font-weight-subheading-bold-weight: 700;
    --leading-subheading-bold-line-height: 1.75rem;
    --tracking-subheading-bold-letter-spacing: .025rem;
    --text-subheading-medium-size: 1.5rem;
    --font-weight-subheading-medium-weight: 500;
    --leading-subheading-medium-line-height: 1.75rem;
    --tracking-subheading-medium-letter-spacing: .025rem;
    --text-subheading-regular-size: 1.5rem;
    --font-weight-subheading-regular-weight: 400;
    --leading-subheading-regular-line-height: 1.75rem;
    --tracking-subheading-regular-letter-spacing: .025rem;
    --text-caption-bold-size: 1rem;
    --font-weight-caption-bold-weight: 700;
    --leading-caption-bold-line-height: 1.125rem;
    --tracking-caption-bold-letter-spacing: 0rem;
    --text-caption-medium-size: 1rem;
    --font-weight-caption-medium-weight: 500;
    --leading-caption-medium-line-height: 1.125rem;
    --tracking-caption-medium-letter-spacing: 0rem;
    --text-caption-regular-size: 1rem;
    --font-weight-caption-regular-weight: 400;
    --leading-caption-regular-line-height: 1.125rem;
    --tracking-caption-regular-letter-spacing: 0rem;
    --text-note-bold-size: .875rem;
    --font-weight-note-bold-weight: 700;
    --leading-note-bold-line-height: 1rem;
    --tracking-note-bold-letter-spacing: 0rem;
    --text-note-medium-size: .875rem;
    --font-weight-note-medium-weight: 500;
    --leading-note-medium-line-height: 1rem;
    --tracking-note-medium-letter-spacing: 0rem;
    --text-note-regular-size: .875rem;
    --font-weight-note-regular-weight: 400;
    --leading-note-regular-line-height: 1rem;
    --tracking-note-regular-letter-spacing: 0rem;
    --text-tiny-bold-size: .75rem;
    --font-weight-tiny-bold-weight: 700;
    --leading-tiny-bold-line-height: .875rem;
    --tracking-tiny-bold-letter-spacing: 0rem;
    --text-tiny-medium-size: .75rem;
    --font-weight-tiny-medium-weight: 500;
    --leading-tiny-medium-line-height: .875rem;
    --tracking-tiny-medium-letter-spacing: 0rem;
    --text-tiny-regular-size: .75rem;
    --font-weight-tiny-regular-weight: 400;
    --leading-tiny-regular-line-height: .875rem;
    --tracking-tiny-regular-letter-spacing: 0rem;
    --text-button-xs-size: 1.125rem;
    --leading-button-xs-line-height: 1.25rem;
    --tracking-button-xs-letter-spacing: 0rem;
    --text-button-sm-size: 1.75rem;
    --leading-button-sm-line-height: 2rem;
    --tracking-button-sm-letter-spacing: 0rem;
    --text-button-md-size: 2rem;
    --leading-button-md-line-height: 2.5rem;
    --tracking-button-md-letter-spacing: -.002rem;
    --text-button-lg-size: 2.5rem;
    --leading-button-lg-line-height: 3rem;
    --tracking-button-lg-letter-spacing: -.002rem;
    --font-weight-button-weight: 700;
  }
}

@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-scale-x {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-scale-y {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-scale-z {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}

@property --tw-skew-x {
  syntax: "*";
  inherits: false
}

@property --tw-skew-y {
  syntax: "*";
  inherits: false
}

@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-space-x-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-leading {
  syntax: "*";
  inherits: false
}

@property --tw-font-weight {
  syntax: "*";
  inherits: false
}

@property --tw-tracking {
  syntax: "*";
  inherits: false
}

@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-ring-inset {
  syntax: "*";
  inherits: false
}

@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}

@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}

@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-blur {
  syntax: "*";
  inherits: false
}

@property --tw-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-invert {
  syntax: "*";
  inherits: false
}

@property --tw-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-duration {
  syntax: "*";
  inherits: false
}

@property --tw-ease {
  syntax: "*";
  inherits: false
}

@property --tw-content {
  syntax: "*";
  inherits: false;
  initial-value: "";
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}
